* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
}

/* ─── Banner ─────────────────────────────────────────────── */
.banner {
  position: relative;
  width: 100%;
  height: 516px; /* FIX #1: was 516px — matches Figma proportions */
  background-image: url('/Assets/services-banner.jpg');
  background-size: cover;
  background-position: center 90%;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0.70) 70%,
    rgba(0, 0, 0, 0.10) 100%
  );
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  height: 100%;
  padding:  120px 250px 120px 200px; 
  margin-top: 60px;
}

.banner-content h1 {
  color: #ffffff;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.banner-content h1 .highlight {
  font-weight: 700;
  color: #ffffff;
}

.breadcrumb {
  color: #cccccc;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.5;
  margin-left: 10px;
}

.breadcrumb a {
  color: #116E4A;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.5;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ─── Services Overview Layout ──────────────────────────── */
.services-overview {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 50px;
  width: 100%;
  padding: 120px 260px;
  align-items: start;
}

/* ─── Sidebar ────────────────────────────────────────────── */
.services-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
}

/* .service-heading{
    font-size:35px;
    font-weight: 50;
    color: black;
    line-height: 1.2;
} */

/* Service Category Box */
.service-category-box {
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
}

.service-category-label {
  background: #116E4A;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 24px;
  letter-spacing: 0.3px;
}

.service-list {
  list-style: none;
  padding: 20px 24px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 4px 0;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: #81848A;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.service-item.active a {
  color: #116E4A;
  font-weight: 600;
  font-size: 16px; /* FIX #12: was 20px — active item should match other items in size */
}

.service-item:hover a {
  color: #116E4A;
}

.arrow img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Need Help Box */
.need-help-box {
  position: relative;
  padding: 32px 24px 36px;
  background-image: url('/Assets/services-help.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.need-help-overlay {
  position: absolute;
  inset: 0;
  background: rgba(182, 198, 189, 0.88);
}

.need-help-logo,
.need-help-box h3,
.need-help-box > p,
.contact-info {
  position: relative;
  z-index: 1;
}

.need-help-logo {
  margin-bottom: 18px;
}

.need-help-logo img {
  height: 90px;
  width: 100%;
  object-fit: contain;
  align-items: center;
}

.need-help-box h3 {
  font-size: 28px; /* FIX #10: was 40px — too large for 320px sidebar, Figma shows ~28px */
  font-weight: 300;
  color: black;
  line-height: 1.2;
  margin-bottom: 10px;
  padding: 0 5px;
}

.need-help-box h3 .highlight {
  font-weight: 700;
  color: black;
}

.need-help-box > p {
  font-weight: 400;
  font-size: 16px;
  color: black;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 18px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.5);
}

.contact-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-item a {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px; /* FIX #11: was 20px — too large for sidebar, Figma shows ~14-15px */
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #116E4A;
}

/* ─── Main Content ───────────────────────────────────────── */
.services-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.services-hero-image img {
  width: 100%; /* FIX #6: was hardcoded 851px — breaks fluid layout */
  height: 520px;
  object-fit: cover;
  border-radius: 40px;
  display: block;
}

.services-description {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.services-description p {
  font-weight: 400;
  font-size: 16px;
  color: #81848A;
  line-height: 1.85;
}

/* ─── Why Choose ─────────────────────────────────────────── */
.why-choose {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; /* FIX #8: was 12px — Figma shows ~24px gap between heading, text, and cards */
}

.why-choose h2 {
  font-size: clamp(24px, 3vw, 50px);
  font-weight: 300;
  color: black;
  line-height: 1.2;
}

.why-choose h2 .highlight,
.planning-strategy h2 .highlight {
  font-weight: 700;
  color: black;
}

.why-choose > p {
  font-size: 16px;
  font-weight: 400;
  color: #81848A;
  line-height: 1.8;
}

/* ─── Services Cards Grid ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.services-card {
  border-top: 1px solid #e8e8e8; /* FIX #7: was border-bottom — Figma shows top divider per row */
  border-bottom: none;
  padding: 28px 0; /* FIX #7: removed horizontal padding to align with Figma card layout */
  transition: box-shadow 0.2s, border-color 0.2s;
}

.services-card:hover {
  border-color: #116E4A;
  box-shadow: 0 4px 20px rgba(17, 110, 74, 0.08);
}

.services-icon {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.services-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.services-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.services-card p {
  font-weight: 400;
  font-size: 16px;
  color: #81848A;
  line-height: 1.75;
  margin-bottom: 0; /* FIX: removed 20px bottom margin — card padding handles spacing */
}

/* ─── Planning & Strategy ────────────────────────────────── */
.planning-strategy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px; /* FIX #9: was 18px — Figma shows more breathing room between elements */
  margin-top: 50px;
}

.planning-strategy h2 {
  font-size: clamp(24px, 3vw, 50px);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.2;
}

.planning-strategy > p {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #81848A;
  line-height: 1.8;
}

.strategy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px; /* FIX #13: row gap was 16px — Figma shows ~20px row gap */
  margin-top: 8px;
}

.step-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
}

.step-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.step-item p {
  font-size: 16px;
  font-weight: 400;
  color: #222222;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.image-grid img {
  width: 100%;
  height: 394px;
  object-fit: cover;
  border-radius: 20px; /* FIX #13: was 40px — Figma bottom images have smaller radius than hero */
  display: block;
}

/* ─── FAQ's Section ───────────────────────────────────────────── */
/* FAQSection */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
    overflow-x: hidden;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #116e4A;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-badge-icon {
    width: 20px;
    height: 20px;
    background-color: rgba(17, 110, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.faq-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2em;
}

.faq-title-light {
    font-size: 32px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.5px;
}

.faq-title-bold {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-top: -5px;
}


/* ===== MAIN CONTENT ===== */
.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}


/* ===== LEFT IMAGE ===== */
.faq-image-container {
    position: relative;
}

.faq-image {
    width: 100%;
    height: 520px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* ===== RIGHT ACCORDION ===== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item.active {
    background-color: #116e4A;
    border-color: #116e4A;
    box-shadow: 0 10px 30px rgba(17, 110, 74, 0.15);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    min-height: 70px;
}

.faq-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #ffffff;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #116e4A;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    transition: all 0.9s ease-in-out;
    max-height: 300px;
    opacity: 1;
    padding: 0 28px 22px 28px;
}

.faq-answer-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1600px) {
  .services-overview {
    padding-left: 160px;
    padding-right: 160px;
  }
}

@media (max-width: 1440px) {
  .banner-content {
    padding-left: 130px;
    padding-right: 130px;
  }
  .services-overview {
    padding-left: 130px;
    padding-right: 130px;
  }
  .services-hero-image img {
    width: 100%;
    height: 520px;
  }
}

@media (max-width: 1280px) {
  .banner-content {
    padding-left: 80px;
    padding-right: 80px;
  }
  .services-overview {
    padding-left: 80px;
    padding-right: 80px;
  }
  .services-hero-image img {
    width: 100%;
    height: 460px;
  }
  .image-grid img {
    height: 320px;
  }
}

@media (max-width: 1024px) {
  .banner-content {
    padding-left: 60px;
    padding-right: 60px;
  }
  .services-overview {
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .services-hero-image img {
    width: 100%;
    height: 400px;
  }
  .image-grid img {
    height: 280px;
    border-radius: 16px;
  }
}

/* Tablet portrait — stack to single column */
@media (max-width: 900px) {
  .services-overview {
    grid-template-columns: 1fr;
    padding: 50px 48px;
    gap: 40px;
  }
  .services-sidebar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services-hero-image img {
    width: 100%;
    height: 360px;
  }
  .image-grid img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 320px;
  }
  .banner-content {
    padding-left: 36px;
    padding-right: 36px;
  }
  .services-overview {
    padding: 40px 36px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strategy-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid img {
    height: 220px;
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .services-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 260px;
  }
  .banner-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .services-overview {
    padding: 32px 20px;
    gap: 24px;
  }
  .services-hero-image img {
    width: 100%;
    height: 220px;
    border-radius: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .strategy-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .image-grid img {
    height: 200px;
    border-radius: 16px;
  }
}