/* ==========================================================================
   BLOOMING MINDS — MASTER DESIGN SYSTEM v5
   Dr. Ritika Pugalia | Jaipur | bloomingmindsjaipur.com
   ========================================================================== */

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

:root {
  --navy:        #0F1E36;
  --navy-mid:    #1A2E4C;
  --navy-light:  #2D3748;
  --gold:        #C5A880;
  --gold-dark:   #B3966E;
  --gold-pale:   #F5EFE6;
  --sage:        #4a7c6b;
  --sage-light:  #5B7065;
  --cream:       #FAFAF8;
  --white:       #FFFFFF;
  --border:      #E2E8F0;
  --muted:       #718096;
  --text:        #2D3748;
  --green-wa:    #25D366;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Montserrat', system-ui, sans-serif;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
  --radius:      6px;
  --transition:  0.22s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-sans); background: var(--cream); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
p  { font-size: 1rem; color: var(--muted); line-height: 1.85; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 5rem 0; }
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--sage-light); }
.gold-bar { width: 52px; height: 3px; background: var(--gold); margin: 1rem 0 1.75rem; }
.gold-bar.center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-family: var(--ff-sans);
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(197,168,128,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-wa { background: var(--green-wa); color: var(--white); border-color: var(--green-wa); }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  background: var(--navy); color: #CBD5E0; text-align: center;
  padding: 9px 16px; font-size: 0.82rem; font-weight: 500;
  border-bottom: 1px solid var(--gold);
}
.announce-bar a { color: white; font-weight: 700; }
.announce-bar a:hover { color: var(--gold); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  background: white; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07); width: 100%;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 76px; }
.nav-brand  { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 48px; width: auto; object-fit: contain; }
.nav-brand-fallback { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 600; color: var(--navy); }

/* Services Dropdown */
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a, .nav-dropdown > .nav-drop-toggle {
  font-size: 0.88rem; font-weight: 600; color: var(--navy-light); padding: 8px 12px;
  border-radius: 4px; transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-links > a:hover, .nav-links > a.active,
.nav-dropdown:hover > .nav-drop-toggle { color: var(--gold); }
.nav-links > a.active { border-bottom: 2px solid var(--gold); }

.nav-dropdown { position: relative; }
.nav-drop-toggle { background: none; border: none; cursor: pointer; font-family: var(--ff-sans); }
.nav-drop-toggle::after { content: '▾'; font-size: 0.7rem; margin-left: 2px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; min-width: 220px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 8px 0; opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 9px 18px; font-size: 0.85rem; font-weight: 500;
  color: var(--navy-light); border-left: 3px solid transparent;
}
.nav-dropdown-menu a:hover { background: var(--gold-pale); border-left-color: var(--gold); color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.nav-phone:hover { color: var(--gold); }

/* Mobile Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none; position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100%;
  background: white; z-index: 9998; box-shadow: var(--shadow-lg);
  padding: 2rem 1.5rem; flex-direction: column; gap: 0; transition: right 0.3s ease; overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--navy); margin-bottom: 1.5rem; }
.mobile-nav a, .mobile-nav-section-title {
  display: block; padding: 11px 0; font-size: 0.95rem; font-weight: 600;
  color: var(--navy); border-bottom: 1px solid var(--border);
}
.mobile-nav-section-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); padding-top: 20px; font-family: var(--ff-sans); background: none; border: none; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 9997; }
.mobile-overlay.open { display: block; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 5.5rem 0 5rem; color: white; }
.hero-inner { display: flex; flex-wrap: wrap; gap: 3.5rem; align-items: center; }
.hero-content { flex: 1; min-width: 300px; }
.hero-badge { display: inline-block; background: rgba(197,168,128,0.18); color: var(--gold); padding: 5px 14px; border-radius: 4px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.hero-title { color: white; margin-bottom: 1.25rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc { color: #CBD5E0; font-size: 1.05rem; max-width: 580px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat-item .num { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); }
.hero-stat-item .lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); }
.hero-visual { flex: 0 0 380px; max-width: 380px; }
.hero-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-card img { width: 100%; height: 360px; object-fit: cover; object-position: top; display: block; }
.hero-card-badge { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: white; }
.hero-card-badge .hcb-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.hero-card-badge .hcb-title { font-size: 0.78rem; color: var(--muted); }

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1rem; text-align: center; }
.trust-item h4 { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 2px; }
.trust-item p { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }

/* ── Citation Badges ────────────────────────────────────────── */
.citations-section { background: #F4F6F8; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.citations-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.citation-badge {
  background: white; border: 1px solid var(--border); padding: 9px 18px;
  border-radius: 4px; font-size: 0.82rem; font-weight: 700; color: var(--navy-mid);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.citation-badge:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ── Section Headers ────────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .gold-bar { margin-left: auto; margin-right: auto; }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover { box-shadow: var(--shadow-md); border-top-color: var(--gold); transform: translateY(-3px); }
.service-card .svc-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-link { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.service-link:hover { color: var(--gold); }

/* ── Why Section ────────────────────────────────────────────── */
.why-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; }
.why-section h2, .why-section h4 { color: white; }
.why-section p { color: rgba(255,255,255,0.75); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-feature { display: flex; align-items: flex-start; gap: 1rem; }
.wf-icon { width: 44px; height: 44px; background: rgba(197,168,128,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.wf-content h4 { font-size: 1rem; margin-bottom: 4px; }
.why-img-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 2rem; text-align: center; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { background: var(--gold-pale); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.tc-stars { color: #F4C430; font-size: 1rem; margin-bottom: 0.5rem; }
.tc-quote { font-family: var(--ff-serif); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: -0.5rem; }
.tc-text { font-size: 0.92rem; color: var(--text); line-height: 1.75; margin-bottom: 1.25rem; }
.tc-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 1rem; }
.tc-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.tc-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.tc-role { font-size: 0.78rem; color: var(--muted); }

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.process-step { text-align: center; }
.step-num { width: 52px; height: 52px; background: var(--gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 600; margin: 0 auto 1rem; }
.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; }

/* ── Online Consult Section ─────────────────────────────────── */
.online-section { background: linear-gradient(135deg, #2d5c4e, var(--sage)); color: white; }
.online-section h2 { color: white; }
.online-section p { color: rgba(255,255,255,0.85); }
.online-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; align-items: center; }
.online-features { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.online-feature { display: flex; align-items: center; gap: 14px; }
.of-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.online-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 2rem; text-align: center; }
.online-box h3 { color: white; font-size: 1.3rem; margin: 1rem 0 0.75rem; }
.online-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 1rem; }
.online-tag { background: rgba(255,255,255,0.15); color: white; padding: 5px 12px; border-radius: 60px; font-size: 0.78rem; font-weight: 500; }

/* ── Areas Served ───────────────────────────────────────────── */
.areas-section { background: var(--gold-pale); }
.areas-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 2rem; }
.area-tag { background: white; border: 1px solid var(--border); border-radius: 60px; padding: 8px 16px; font-size: 0.84rem; font-weight: 600; color: var(--text); }
.area-tag.highlight { background: var(--sage); color: white; border-color: var(--sage); }

/* ── Clinic Info Grid ───────────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.info-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { font-size: 1.6rem; flex-shrink: 0; }
.info-content h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-content p, .info-content a { font-size: 0.88rem; color: var(--muted); }
.info-content a:hover { color: var(--gold); }

/* ── Review CTA ─────────────────────────────────────────────── */
.review-bar { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem; text-align: center; }
.review-bar p { font-size: 0.88rem; margin-bottom: 0.75rem; }

/* ── GBP Map ────────────────────────────────────────────────── */
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; border: 0; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; padding: 5rem 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); color: white; padding: 4rem 0 0; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: #A0AEC0; line-height: 1.75; margin: 1rem 0 1.5rem; }
.footer-col h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; font-family: var(--ff-sans); font-weight: 700; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #CBD5E0; font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 0.85rem; color: #A0AEC0; }
.footer-contact-item a { color: #A0AEC0; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-locality { font-size: 0.78rem; color: #718096; line-height: 1.6; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid #2D3748; padding: 1.25rem 0; font-size: 0.78rem; color: #718096; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Sticky Action Tray (Mobile) ────────────────────────────── */
.sticky-tray {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%;
  grid-template-columns: 1fr 1fr 1fr; z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15); background: white;
}
.tray-btn {
  padding: 14px 8px; text-align: center; font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  color: white; text-decoration: none; transition: var(--transition);
}
.tray-call { background: var(--navy); }
.tray-wa   { background: var(--green-wa); }
.tray-appt { background: var(--gold); }
.tray-call:hover { background: var(--navy-mid); }
.tray-wa:hover   { background: #1ebe5a; }
.tray-appt:hover { background: var(--gold-dark); }

/* ── SEO Content Layout (inner pages) ──────────────────────── */
.seo-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 3.5rem; padding: 5rem 0; }
.seo-content h2 { font-size: 2rem; color: var(--navy); margin-bottom: 0.75rem; }
.seo-content h3 { font-size: 1.45rem; color: var(--navy-mid); margin: 2.5rem 0 0.75rem; }
.seo-content p  { margin-bottom: 1.5rem; }
.seo-content ul { padding-left: 20px; list-style: disc; margin-bottom: 2rem; }
.seo-content li { margin-bottom: 8px; font-size: 0.95rem; color: var(--muted); }
.seo-content li::marker { color: var(--gold); }
.seo-content blockquote { border-left: 4px solid var(--gold); padding: 1.5rem 1.75rem; background: var(--gold-pale); margin: 2rem 0; font-family: var(--ff-serif); font-size: 1.15rem; font-style: italic; color: var(--navy); border-radius: 0 var(--radius) var(--radius) 0; }
.seo-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.sidebar-card.dark { background: var(--navy); border-color: var(--navy); }
.sidebar-card.dark h4 { color: var(--gold); }
.sidebar-card.dark p { color: #CBD5E0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; cursor: pointer; }
.faq-item p  { font-size: 0.9rem; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 4rem 0; text-align: center; color: white; border-bottom: 4px solid var(--gold); }
.page-hero .eyebrow { color: var(--gold); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 2px; font-weight: 700; margin-bottom: 0.5rem; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p  { color: #CBD5E0; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { padding: 12px 0; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--sage); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ── Contact Form ───────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--ff-sans); font-size: 0.92rem; color: var(--text); background: white;
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,107,0.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .online-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-visual { display: none; }
  .seo-layout { grid-template-columns: 1fr; padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .sticky-tray { display: grid; }
  body { padding-bottom: 58px; }
  .hero { padding: 3.5rem 0 4rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .gold-bar.center { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .announce-bar { font-size: 0.72rem; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); display: grid; }
}

/* ── Additional Mobile Fixes ── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
  .container { padding: 0 16px; }
}