@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════════════ */
 .site-content {
    display: unset !important;
}
#page.grid-container,
#page.container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
  :root {
    --navy: #1a2744;
    --navy-light: #243358;
    --gold: #c8922a;
    --gold-light: #e8b04a;
    --cream: #faf7f2;
    --text: #2c3142;
    --text-muted: #6b7285;
    --border: #e2ddd6;
    --white: #ffffff;
    --green: #2e7d5a;
    --section-pad: 80px 0;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    font-size: 16px;
    line-height: 1.7;
  }

  h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.3;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ─── TOPBAR ─── */
  .topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.3px;
  }
  .topbar a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
  }

  /* ─── NAVBAR ─── */
  .navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(26,39,68,0.07);
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
  }
  .logo-main {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
  }
  .logo-main span { color: var(--gold); }
  .logo-sub {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 1px;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    transition: background 0.2s !important;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a5f 100%);
    color: white;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(200,146,42,0.08);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,146,42,0.18);
    border: 1px solid rgba(200,146,42,0.35);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
  }
  .hero-badge::before { content: '✦'; font-size: 10px; }
  .hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    line-height: 1.25;
  }
  .hero h1 span { color: var(--gold-light); }
  .hero-sub {
    font-size: 16.5px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 14px;
    font-weight: 400;
    line-height: 1.6;
  }
  .hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.58);
    margin-bottom: 32px;
    line-height: 1.75;
  }
  .hero-disclaimer {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    padding: 12px 16px;
    border-left: 2px solid rgba(200,146,42,0.4);
    margin-bottom: 32px;
    background: rgba(255,255,255,0.04);
    border-radius: 0 4px 4px 0;
    font-style: italic;
  }
  .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold);
    color: white;
    padding: 13px 26px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: white;
    padding: 13px 26px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }

  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 340px;
    backdrop-filter: blur(8px);
  }
  .hero-card-title {
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
  }
  .hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-icon {
    width: 40px; height: 40px;
    background: rgba(200,146,42,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .hero-stat-text { font-size: 14px; color: rgba(255,255,255,0.75); }
  .hero-stat-num { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: white; }

  /* ─── SECTION HEADER ─── */
  .section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .section-title {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--navy);
    margin-bottom: 14px;
  }
  .section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
  }
  .section-header { margin-bottom: 48px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-desc { margin: 0 auto; }

  /* ─── COUNSELLOR SECTION ─── */
  .counsellor-section {
    padding: var(--section-pad);
    background: white;
  }
  .counsellor-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: center;
  }
  .counsellor-img-wrap {
    position: relative;
  }
  .counsellor-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e8e0d5 0%, #d4ccc0 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    gap: 12px;
    border: 2px dashed var(--border);
  }
  .counsellor-img-placeholder span { font-size: 56px; }
  .exp-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: var(--navy);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(26,39,68,0.25);
  }
  .exp-badge-num {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }
  .exp-badge-text { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
  .counsellor-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 15.5px; }
  .btn-navy {
    background: var(--navy);
    color: white;
    padding: 12px 24px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 8px;
  }
  .btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

  /* ─── CATEGORIES ─── */
  .categories-section {
    padding: var(--section-pad);
    background: var(--cream);
  }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .cat-card {
    background: white;
    border-radius: 14px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }
  .cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
  }
  .cat-card:hover {
    box-shadow: 0 12px 40px rgba(26,39,68,0.10);
    transform: translateY(-4px);
  }
  .cat-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .cat-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
  }
  .cat-tag {
    background: #f0f3fa;
    color: var(--navy);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
  }
  .btn-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .btn-link:hover { gap: 10px; }

  /* ─── PROCESS ─── */
  .process-section {
    padding: var(--section-pad);
    background: white;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
  }
  .steps-grid::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(100%/6);
    right: calc(100%/6);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
    z-index: 0;
    pointer-events: none;
  }
  .step {
    text-align: center;
    padding: 0 20px 32px;
    position: relative;
    z-index: 1;
  }
  .step-num {
    width: 64px; height: 64px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
  }
  .step h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
  .step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
  .steps-row2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 8px;
  }
  .process-cta {
    text-align: center;
    margin-top: 48px;
  }

  /* ─── RESOURCES ─── */
  .resources-section {
    padding: var(--section-pad);
    background: var(--cream);
  }
  .resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .resource-card {
    background: white;
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid var(--border);
    transition: all 0.2s;
  }
  .resource-card:hover {
    box-shadow: 0 8px 28px rgba(26,39,68,0.09);
    transform: translateY(-3px);
  }
  .resource-num {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 12px;
  }
  .resource-card h4 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
  }
  .resource-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
  }

  /* ─── UPDATES ─── */
  .updates-section {
    padding: var(--section-pad);
    background: var(--navy);
    color: white;
  }
  .updates-section .section-title { color: white; }
  .updates-section .section-desc { color: rgba(255,255,255,0.65); }
  .updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
  }
  .update-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 36px 32px;
  }
  .update-block h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .update-block p { color: rgba(255,255,255,0.62); font-size: 14.5px; margin-bottom: 24px; line-height: 1.7; }
  .topics-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  .topics-list li {
    background: rgba(200,146,42,0.15);
    border: 1px solid rgba(200,146,42,0.25);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12.5px;
  }
  .wa-channels { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
  .wa-btn {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
  }
  .wa-btn:hover { background: #22c55e; }
  .wa-btn.medical { background: #2563eb; }
  .wa-btn.medical:hover { background: #1d4ed8; }
  .wa-btn.ayush { background: #059669; }
  .wa-btn.ayush:hover { background: #047857; }
  .btn-gold {
    background: var(--gold);
    color: white;
    padding: 12px 22px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }
  .btn-gold:hover { background: var(--gold-light); }

  /* ─── TRUST ─── */
  .trust-section {
    padding: var(--section-pad);
    background: white;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .trust-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    transition: all 0.2s;
  }
  .trust-card:hover { box-shadow: 0 8px 24px rgba(26,39,68,0.08); }
  .trust-icon { font-size: 32px; margin-bottom: 14px; }
  .trust-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
  .trust-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

  /* ─── WHO SHOULD ─── */
  .who-section {
    padding: var(--section-pad);
    background: var(--cream);
  }
  .who-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .who-card {
    background: white;
    border-radius: 12px;
    padding: 24px 18px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s;
  }
  .who-card:hover { box-shadow: 0 6px 20px rgba(26,39,68,0.08); transform: translateY(-3px); }
  .who-icon { font-size: 36px; margin-bottom: 12px; }
  .who-card h4 { font-size: 13.5px; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
  .who-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

  /* ─── FAQ ─── */
  .faq-section {
    padding: var(--section-pad);
    background: white;
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }
  .faq-q {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
    background: white;
  }
  .faq-q:hover { background: #f9f8f6; }
  .faq-toggle {
    font-size: 18px;
    color: var(--gold);
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    padding: 0 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
  }
  .faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 16px;
  }

  /* ─── CTA BANNER ─── */
  .cta-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #1a2744, #1e3a5f);
    text-align: center;
    color: white;
  }
  .cta-section h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 14px; color: white; }
  .cta-section p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
  .wa-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  }
  .wa-main-btn:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.35); }

  /* ─── FOOTER ─── */
  footer {
    background: #111827;
    color: rgba(255,255,255,0.65);
    padding: 56px 0 24px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
  }
  .footer-brand .logo-main { color: white; margin-bottom: 12px; }
  .footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
  .footer-disclaimer {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    border-left: 2px solid rgba(200,146,42,0.4);
  }
  .footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; margin: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  /* ─── DIVIDER ─── */
  .section-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left { animation: fadeUp 0.7s ease both; }
  .hero-visual { animation: fadeUp 0.7s ease 0.2s both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .resources-grid { grid-template-columns: repeat(2, 1fr); }
    .who-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    :root { --section-pad: 56px 0; }
    .hero-grid, .counsellor-grid, .updates-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cat-grid, .trust-grid { grid-template-columns: 1fr; }
    .steps-grid, .steps-row2 { grid-template-columns: 1fr; }
    .steps-grid::after { display: none; }
    .resources-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .exp-badge { bottom: -12px; right: 12px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.trust-card {text-align: center;}
  }