/* -------- RESET AND BASE -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Montserrat", Arial, sans-serif;
  background: rgba(17, 17, 17, 0.8);
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
  transition: transform 0.35s ease;
}

.navbar.hide {
  transform: translateY(-100%);
}

/* Added overflow fix for navbar on mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 0 15px;
    height: auto;
    flex-wrap: wrap;
  }
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 2px;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #CDDB00;
  border-bottom: 2px solid #CDDB00;
}

/* BRAND */
.brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-badge img {
  height: 30px;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}

.brand-text .highlight {
  font-weight: 700;
  color: #fff;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.location {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.location option {
  background: #111;
  color: #fff;
}

.signin-btn {
  color: #fff;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 20px;
  transition: 0.3s;
}

.signin-btn:hover {
  color: #CDDB00;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Mobile view navbar improvements */
@media (max-width: 900px) {
  .nav-links.left,
  .nav-links.right {
    /* Removed .location from display: none so it remains visible on mobile */
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.left.active {
    display: flex;
    flex-direction: column;
    background: #181818;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    gap: 12px;
    z-index: 99;
  }

  .nav-links.left.active li {
    padding: 0 15px;
  }
}

/* -------- HERO SECTION -------- */
/* Fixed hero section to start below navbar with padding-top */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: url('assets/images/hero.png.jpg') center center/cover no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 60px;
  color: #fff;
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #d4d4d4;
  font-weight: 400;
  max-width: 600px;
}

.cta-btn {
  display: inline-block;
  background: #CDDB00;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 36px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #b8c800;
  transform: translateY(-3px);
}

/* Responsive hero section */
@media (max-width: 900px) {
  .hero-content {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media (max-width: 700px) {
  .hero-section {
    padding-top: 70px;
  }

  .hero-content {
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* -------- ABOUT SECTION -------- */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: url('assets/images/about.png.png') center center/cover no-repeat;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.90);
  z-index: 0;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 840px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
}

.highlight {
  color: #CDDB00;
  font-weight: 700;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: #dedede;
  margin-bottom: 34px;
  font-weight: 400;
  line-height: 1.6;
}

.about-cta-btn {
  display: inline-block;
  background: #CDDB00;
  color: #1a1a1a;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 38px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
  background: #b8c800;
  transform: translateY(-3px);
}

/* Responsive about section */
@media (max-width: 768px) {
  .about-hero {
    padding: 40px 15px;
    min-height: auto;
  }

  .about-hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .about-hero-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .about-cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

/* -------- WHAT WE DO SECTION -------- */
.what-we-do {
  position: relative;
  width: 100%;
  min-height: auto;
  background: #000000;
  padding: 60px 20px;
  color: #fff;
}

.what-title {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.what-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.what-title p {
  font-size: 1rem;
  color: #ccc;
  font-weight: 400;
}

/* Fixed service grid layout and responsive behavior */
.service-grid {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
}

.service-card {
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  overflow: hidden;
  border: 2.5px solid #fff;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card.large {
  grid-row: 1 / span 2;
}

.service-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card:hover {
  border-color: #CDDB00;
  transform: scale(1.02);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.49);
  z-index: 1;
  transition: background 0.3s;
}

.service-card:hover .service-overlay {
  background: rgba(20, 20, 20, 0.65);
}

.service-content {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 8px;
}

.service-content p {
  font-size: 0.95rem;
  color: #e3e3e3;
  font-weight: 400;
  margin: 0;
}

.desc-full {
  display: none;
}

.service-card:hover .desc-short {
  display: none;
}

.service-card:hover .desc-full {
  display: block;
}

.service-hover {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.service-card:hover .service-hover {
  display: flex;
}

.hover-img {
  width: 80px;
  display: block;
}

/* Responsive service grid for tablets and mobile */
@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card.large {
    grid-row: auto;
  }

  .service-cards-vertical {
    flex-direction: row;
    gap: 20px;
  }

  .service-card {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .what-title {
    margin-bottom: 30px;
  }

  .what-title h2 {
    font-size: 1.6rem;
  }

  .service-grid,
  .service-cards-vertical {
    gap: 16px;
  }

  .service-card {
    min-height: 200px;
  }

  .service-content {
    padding: 16px 12px;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  .service-content p {
    font-size: 0.85rem;
  }

  .hover-img {
    width: 60px;
  }
}

@media (max-width: 600px) {
  .service-cards-vertical {
    flex-direction: column;
  }

  .service-card {
    min-height: 160px;
  }

  .service-content {
    padding: 12px 10px;
  }

  .service-content h3 {
    font-size: 1rem;
  }
}

/* -------- WHY CHOOSE US SECTION -------- */
.why-choose {
  background: #fff;
  width: 100%;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.why-choose__container {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}

.why-choose__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-choose__left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.2;
}

.why-choose__subtitle {
  font-size: 1.1rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 30px;
}

.why-choose__btn {
  padding: 14px 28px;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content;
}

.why-choose__btn:hover {
  background: #CDDB00;
  color: #111;
  transform: translateY(-3px);
}

.why-choose__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fbe2;
  border-radius: 50%;
  border: 2px solid #CDDB00;
}

.feature__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.feature h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #232323;
}

.feature p {
  font-size: 0.95rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.corner-accent {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.accent-top-left {
  top: 0;
  left: 0;
  width: 120px;
}

.accent-bottom-right {
  bottom: 0;
  right: 0;
  width: 120px;
}

/* Responsive why choose section */
@media (max-width: 1000px) {
  .why-choose__container {
    flex-direction: column;
    gap: 40px;
  }

  .why-choose__left h2 {
    font-size: 2rem;
  }

  .accent-top-left,
  .accent-bottom-right {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 50px 20px;
  }

  .why-choose__left h2 {
    font-size: 1.6rem;
  }

  .why-choose__subtitle {
    font-size: 0.95rem;
  }

  .why-choose__right {
    gap: 20px;
  }

  .feature {
    gap: 15px;
  }

  .feature__icon {
    width: 48px;
    height: 48px;
  }

  .feature__icon img {
    width: 28px;
    height: 28px;
  }

  .feature h3 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }
}

/* -------- SOLUTION SECTION -------- */
/* Fixed solution section layout and spacing */
.solution-section {
  position: relative;
  padding: 60px 20px 80px 20px;
  width: 100%;
  background: url('assets/images/bg.png') center center/cover no-repeat fixed;
  overflow: hidden;
  z-index: 1;
}

.solution-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  pointer-events: none;
}

.solution-section > * {
  position: relative;
  z-index: 1;
}

.solution-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.solution-card {
  flex: 1;
  min-height: 340px;
  max-width: 480px;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  position: relative;
  filter: grayscale(100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  filter: grayscale(0%);
}

.solution-card-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 28px;
  position: relative;
  z-index: 2;
  gap: 16px;
}

.solution-card-details h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #222;
}

.solution-card-details p {
  font-size: 0.95rem;
  color: #6A6A6A;
  margin: 0;
}

.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.solution-arrow img {
  width: 28px;
  height: 28px;
}

/* Responsive solution cards */
@media (max-width: 1000px) {
  .solution-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    max-width: 480px;
  }

  .solution-card {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .solution-section {
    padding: 40px 15px 60px 15px;
  }

  .solution-card {
    min-height: 220px;
  }

  .solution-card-strip {
    padding: 18px 16px;
    flex-wrap: wrap;
  }

  .solution-card-details h3 {
    font-size: 1rem;
  }

  .solution-card-details p {
    font-size: 0.85rem;
  }

  .solution-arrow {
    width: 40px;
    height: 40px;
  }

  .solution-arrow img {
    width: 24px;
    height: 24px;
  }
}

/* -------- TESTIMONIALS SECTION -------- */
.testimonials-section {
  background: #fafaf2;
  padding: 60px 20px;
}

.testimonials-inner {
  max-width: 1150px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.testimonials-subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Fixed testimonials slider layout */
.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.slide-arrow {
  background: #ededed;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slide-arrow:hover {
  background: #CDDB00;
  transform: scale(1.1);
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}

.testimonial-card {
  background: transparent;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  min-width: 300px;
  text-align: center;
  border-right: 1px solid #efefef;
  padding: 0 20px;
}

.testimonial-card:last-child {
  border-right: none;
}

.avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(170, 170, 130, 0.15);
  border: 3px solid #e5e8cd;
  margin-bottom: 8px;
}

.testimonial-role {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 20px;
  background: #181818;
  color: #fff;
  display: inline-block;
}

.testimonial-content {
  text-align: center;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: #151515;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.client-name,
.contractor-name {
  color: #CDDB00;
}

.testimonial-position {
  display: block;
  font-size: 0.85rem;
  color: #999;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 32px;
  border-radius: 10px;
  background-color: #CDDB00;
}

/* Responsive testimonials */
@media (max-width: 900px) {
  .testimonials-slider {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-cards {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .testimonial-card {
    max-width: 100%;
    min-width: auto;
    border: none;
    padding: 0;
  }

  .slide-arrow {
    margin: 0 8px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 15px;
  }

  .testimonials-title {
    font-size: 1.6rem;
  }

  .testimonials-subtitle {
    font-size: 0.9rem;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

/* -------- CONSULTANCY SECTION -------- */
.consultancy-section {
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.consultancy-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/pattern.png') center center/cover no-repeat;
  z-index: 1;
}

.consultancy-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0B0B0BE5;
  z-index: 2;
}

/* Fixed consultancy content layout */
.consultancy-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

.consultancy-left {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultancy-icon {
  width: 64px;
  height: 64px;
  background: #1d1d1d60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.consultancy-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.consultancy-left h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.consultancy-left p {
  font-size: 1rem;
  font-weight: 400;
  color: #ddd;
  line-height: 1.6;
}

.consultancy-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

/* Fixed form styling and spacing */
.consultancy-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
}

.consultancy-form label {
  font-size: 0.95rem;
  color: #333;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 500;
}

.consultancy-form input,
.consultancy-form select {
  margin-bottom: 12px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 0 12px;
  font-size: 0.95rem;
  color: #222;
  background: #fafafa;
  font-family: inherit;
}

.consultancy-form input:focus,
.consultancy-form select:focus {
  outline: none;
  border-color: #CDDB00;
  box-shadow: 0 0 8px rgba(205, 219, 0, 0.3);
}

.consultancy-form button {
  margin-top: 16px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.consultancy-form button:hover {
  background: #CDDB00;
  color: #111;
}

.consultancy-disclaimer {
  font-size: 0.85rem;
  color: #777;
  margin-top: 12px;
  line-height: 1.5;
}

.consultancy-disclaimer a {
  color: #111;
  text-decoration: underline;
}

/* Responsive consultancy section */
@media (max-width: 1000px) {
  .consultancy-content {
    flex-direction: column;
    gap: 40px;
  }

  .consultancy-left h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .consultancy-left p {
    text-align: center;
  }

  .consultancy-right {
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .consultancy-section {
    padding: 40px 15px;
  }

  .consultancy-content {
    gap: 30px;
  }

  .consultancy-left h1 {
    font-size: 1.4rem;
  }

  .consultancy-form {
    padding: 20px 18px;
    max-width: 100%;
  }

  .consultancy-form label {
    margin-top: 12px;
  }

  .consultancy-form input,
  .consultancy-form select {
    height: 38px;
    font-size: 0.9rem;
  }
}

/* -------- FAQ SECTION -------- */
.faq-section {
  background: #fff;
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  color: #232323;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-subtitle {
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Fixed FAQ box layout and styling */
.faq-box {
  max-width: 850px;
  margin: 0 auto;
  border: 2px dotted #d0d0d0;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  background: #fcfcfc;
  border-bottom: 1px solid #efefef;
  padding: 18px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: #f7f7f7;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: #232323;
  font-weight: 500;
  cursor: pointer;
}

.faq-arrow {
  font-size: 1.2rem;
  color: #aaa;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  margin-top: 12px;
  padding-left: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-support {
  text-align: center;
  padding: 20px 24px;
  background: #fafafa;
  color: #aaa;
  font-size: 0.95rem;
  border-top: 1px solid #efefef;
}

.faq-support-link {
  color: #CDDB00;
  text-decoration: none;
  font-weight: 600;
}

.faq-support-link:hover {
  text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-item {
    padding: 14px 16px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.85rem;
    margin-top: 10px;
  }
}

/* -------- FOOTER SECTION -------- */
.footer-section {
  background: #111;
  color: #fff;
  width: 100%;
  padding: 60px 20px 0 20px;
  font-family: 'Poppins', Arial, sans-serif;
  box-sizing: border-box;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #CDDB00;
  color: #000;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  width: fit-content;
}

.footer-logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.logo-text {
  display: inline-flex;
  gap: 0.1em;
}

.logo-text .build {
  color: #000;
  font-weight: 300;
}

.logo-text .nexus {
  color: #000;
  font-weight: 700;
}

.footer-desc {
  margin: 12px 0 18px 0;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-social a.linkedin {
  background-image: url("assets/icons/Vector.svg");
}

.footer-social a.facebook {
  background-image: url("assets/icons/Vector (1).svg");
}

.footer-social a.instagram {
  background-image: url("assets/icons/Vector (2).svg");
}

.footer-social a.twitter {
  background-image: url("assets/icons/Vector (3).svg");
}

/* FOOTER LINKS */
.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: #bbb;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-col a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #CDDB00;
}

/* COPYRIGHT */
.footer-copyright {
  text-align: center;
  background: #fafafa;
  color: #999;
  font-size: 0.9rem;
  padding: 16px 0;
  margin-top: 30px;
  border-top: 1px solid #efefef;
}

/* Responsive footer */
@media (max-width: 1000px) {
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 15px 0 15px;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-links {
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
  }

  .footer-col {
    min-width: 120px;
  }

  .footer-social {
    gap: 16px;
  }
}

/* -------- ANIMATIONS -------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
