
/* Fonts */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

  :root {
    --navy: #1a2e4a;
    --deep-blue: #1e3a6e;
    --mid-blue: #2c5282;
    --accent-green: #2d7a4f;
    --light-green: #e6f4ed;
    --light-blue: #eef3fa;
    --off-white: #f8f9fc;
    --warm-white: #ffffff;
    --text-dark: #1a2130;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --gold: #c9a84c;
  }
 
  * { margin: 0; padding: 0; box-sizing: border-box; }
 
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    font-weight: 300;
    line-height: 1.7;
  }
 
  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
 
  .nav-logo span {
    color: var(--gold);
  }
 
  .nav-cta {
    background: var(--deep-blue);
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
  }
 
  .nav-cta:hover { background: var(--navy); }
 
  /* HERO — SECTION 1 */
  .hero {
    background: linear-gradient(135deg, #f0f5ff 0%, #f8f9fc 60%, #e8f5ee 100%);
    padding: 100px 40px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
 
  /*.hero::before {*/
  /*  content: '';*/
  /*  position: absolute;*/
  /*  top: -60px; right: -80px;*/
  /*  width: 400px; height: 400px;*/
  /*  background: radial-gradient(circle, rgba(30,58,110,0.06) 0%, transparent 70%);*/
  /*  border-radius: 50%;*/
  /*}*/
 
  /*.hero::after {*/
  /*  content: '';*/
  /*  position: absolute;*/
  /*  bottom: -60px; left: -60px;*/
  /*  width: 350px; height: 350px;*/
  /*  background: radial-gradient(circle, rgba(45,122,79,0.06) 0%, transparent 70%);*/
  /*  border-radius: 50%;*/
  /*}*/
 
  .hero-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--mid-blue);
    border: 1px solid #c3d7f7;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
  }
 
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    /* color: var(--navy); */
    color:white;
    line-height: 1.2;
    max-width: 780px;
    margin: 0 auto 22px;
    letter-spacing: -0.02em;
  }
 
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
 
  .hero p {
    font-size: 1.1rem;
    /* color: var(--text-mid); */
    color:white;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.75;
  }
 
  .btn-primary {
    display: inline-block;
    background: var(--deep-blue);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(30,58,110,0.25);
  }
 
  .btn-primary:hover {
    background: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(30,58,110,0.3);
  }
 
  .btn-primary-lg {
    font-size: 1.1rem;
    padding: 18px 44px;
  }
 
  .btn-green {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(45,122,79,0.25);
  }
 
  .btn-green:hover {
    background: #236040;
    transform: translateY(-1px);
  }
 
  .btn-outline {
    display: inline-block;
    border: 2px solid var(--deep-blue);
    color: var(--deep-blue);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
 
  .btn-outline:hover {
    background: var(--light-blue);
  }
 
  /* SECTIONS */
  section {
    padding: 80px 40px;
  }
 
  .container {
    max-width: 960px;
    margin: 0 auto;
  }
 
  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid-blue);
    margin-bottom: 12px;
  }
 
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
 
  /* SECTION 2 — PAIN POINTS */
  .pain {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
 
  .pain .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
 
  .pain-list {
    list-style: none;
    margin: 24px 0 32px;
  }
 
  .pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 0.98rem;
  }
 
  .pain-list li:last-child { border-bottom: none; }
 
  .pain-list li::before {
    content: '✗';
    color: #c53030;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 3px;
  }
 
  .pain-cta-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }
 
  .pain-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
  }
 
  .pain-cta-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
 
  .bridge-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    font-style: italic;
    margin-top: 20px;
    line-height: 1.6;
  }
 
  .faq {
  background: var(--navy);
  color: white;
}

.faq h2 {
  color: white;
  max-width: 680px;
}

.faq .section-label {
  color: var(--gold);
}

.faq-list {
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

/* Plus / minus icon drawn with CSS — no extra assets needed */
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* horizontal bar */
.faq-icon::before { width: 10px; height: 1.5px; }
/* vertical bar */
.faq-icon::after  { width: 1.5px; height: 10px; }

/* When open: rotate vertical bar to 0 (collapses into horizontal = minus) */
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.15);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background: var(--gold);
}

/* Answer panel */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-answer.is-open {
  max-height: 300px; /* tall enough for any answer */
}

.faq-answer p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.8;
  padding-bottom: 22px;
}


  /* SECTION 4 — ABOUT */
  .about {
    background: white;
  }
 
  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
  }
 
  .about-text p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }
 
  .certs {
    margin-top: 8px;
  }
 
  .certs h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
  }
 
  .cert-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-mid);
  }
 
  .cert-item:last-child { border-bottom: none; }
 
  .cert-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
  }
 
  .about-card {
    background: var(--light-blue);
    border-radius: 14px;
    padding: 40px 36px;
    border: 1px solid #c3d7f7;
  }
 
  .about-card .stat {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(30,58,110,0.12);
  }
 
  .about-card .stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
 
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--deep-blue);
    line-height: 1;
    margin-bottom: 4px;
  }
 
  .stat-label {
    font-size: 0.88rem;
    color: var(--text-mid);
  }
 
  /* SECTION 5 — WHO */
  .who {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
 
  .who .container { text-align: center; }
 
  .who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px;
    text-align: left;
  }
 
  .who-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.2s;
  }
 
  .who-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
 
  .who-icon {
    width: 40px;
    height: 40px;
    background: var(--light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
 
  .who-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.55;
  }
 
  /* SECTION 6 — HOW IT WORKS */
  .how {
    background: white;
  }
 
  .steps {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }
 
  .steps::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 52px;
    bottom: 52px;
    width: 2px;
    background: linear-gradient(to bottom, var(--deep-blue), var(--accent-green));
  }
 
  .step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
 
  .step:last-of-type { border-bottom: none; }
 
  .step-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--deep-blue);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px white;
  }
 
  .step:last-of-type .step-number { background: var(--accent-green); }
 
  .step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 10px;
  }
 
  .step-content p {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.75;
  }
 
  .step-note {
    background: #fffbeb;
    border: 1px solid #f6d860;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 36px;
    font-size: 0.88rem;
    color: #744210;
  }
 
  /* SECTION 7 — TESTIMONIALS */
  .testimonials {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
 
  .testimonials .container { text-align: center; }
 
  /* Swiper wrapper — gives space for prev/next buttons */
  .testi-swiper-wrap {
    position: relative;
    margin-top: 44px;
    padding: 0 48px;
  }
 
  /* Prev / Next buttons */
  .testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.2s;
  }
 
  .testi-btn:hover {
    background: var(--deep-blue);
    color: white;
    border-color: var(--deep-blue);
    box-shadow: 0 4px 16px rgba(30,58,110,0.2);
  }
 
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
 
  /* Cards */
  .testi-card {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 
  .testi-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
  }
 
  /* Review image */
  .testi-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
  }
 
  .testi-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
  }
 
  /* Swiper pagination dots */
  .testi-pagination {
    margin-top: 28px !important;
    position: relative !important;
    bottom: auto !important;
  }
 
  .testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
    transition: all 0.2s;
  }
 
  .testi-pagination .swiper-pagination-bullet-active {
    background: var(--deep-blue);
    width: 22px;
    border-radius: 4px;
  }
 
  /* SECTION 8 — BOOKING */
  .booking {
    background: linear-gradient(135deg, #1a2e4a 0%, #1e3a6e 100%);
    text-align: center;
    color: white;
  }
 
  .booking h2 { color: white; margin-bottom: 14px; }
 
  .booking p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 44px;
  }
 
  .booking-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
 
  .btn-booking-primary {
    display: inline-block;
    background: white;
    color: var(--deep-blue);
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  }
 
  .btn-booking-primary:hover {
    background: #eef3fa;
    transform: translateY(-1px);
  }
 
  .btn-booking-secondary {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(45,122,79,0.35);
  }
 
  .btn-booking-secondary:hover {
    background: #236040;
    transform: translateY(-1px);
  }
 
  /* SECTION 9 — FINAL CTA */
  .final-cta {
    background: var(--light-green);
    border-top: 1px solid #b7e0c9;
    text-align: center;
    padding: 80px 40px;
  }
 
  .final-cta h2 { margin-bottom: 12px; }
 
  .final-cta p {
    color: var(--text-mid);
    font-size: 1rem;
    margin-bottom: 36px;
  }
 
  /* FOOTER */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 40px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.9;
  }
 
  footer .logo-footer {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
 
  footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
  }
 
  footer a:hover { color: white; }
 
  /* Footer social buttons */
  .footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top:10px;
  }
 
  .footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    color: white !important;
  }
 
  .footer-wa {
    background: #25d366;
    box-shadow: 0 3px 12px rgba(37,211,102,0.3);
  }
 
  .footer-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: white !important;
  }
 
  .footer-tt {
    background: #000000;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
  }
 
  .footer-tt:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    color: white !important;
  }
  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 14px 20px;
    
        justify-content: center;
    }
    .nav-buttons{
      display: none;
    }
    section { padding: 60px 20px; }
 
    .pain .container,
    .about .container {
      grid-template-columns: 1fr;
      gap: 36px;
    }

      .faq-question { font-size: 0.95rem; padding: 18px 0; }

    .nav-logo{
      font-size:clamp(2.5rem, 5vw, 2.5rem);
    }
 
    .approach-pillars { grid-template-columns: 1fr; }
 
    .who-grid { grid-template-columns: 1fr; }
 
    .booking-buttons { flex-direction: column; align-items: center; }
 
    .steps::before { display: none; }
  }
