/* =============================================
   THEOTOKOS ABA THERAPY — Premium Visual Layer
   Loaded after style.css — overrides & enhances
   ============================================= */

/* ── Custom text selection ── */
::selection { background: rgba(201,166,82,.28); color: var(--navy); }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 99px;
}

/* ── Warm body background ── */
body { background: #FDFCFA; }

/* ── Gold gradient text on section labels ── */
.section-label {
  background: linear-gradient(90deg, var(--gold) 0%, #E8C97A 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Exception: dark-bg labels stay white/light */
.theotokos-text .section-label,
.testimonials-inner .section-label { -webkit-text-fill-color: var(--gold); background: none; }

/* ── Grain texture on dark sections ── */
.hero::after,
.stats-section::after,
.theotokos-section::after,
.insurance-cta::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ── Hero upgrade ── */
.hero-content h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  letter-spacing: -.025em;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
  line-height: 1.05;
}
.hero-content h1 em {
  color: transparent;
  background: linear-gradient(135deg, #93C5FD, #60A5FA, #C9A652);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-overlay {
  background: linear-gradient(
    112deg,
    rgba(6,13,31,.94) 0%,
    rgba(10,22,40,.80) 45%,
    rgba(20,50,120,.35) 100%
  );
}
/* Subtle vignette around edges */
.hero-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(6,13,31,.6) 100%);
}

/* ── Header gold accent line on scroll ── */
#header.scrolled {
  border-bottom: 1px solid rgba(201,166,82,.15);
  box-shadow: 0 1px 0 rgba(201,166,82,.1), 0 6px 32px rgba(10,22,40,.09);
}
/* Thin gold top stripe always */
#header::before {
  content: '';
  display: block; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--blue), var(--gold-dark));
  background-size: 200% 100%;
  animation: headerStripe 6s linear infinite;
}
@keyframes headerStripe {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── Button shimmer effect ── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 160%; }

/* ── Gold button border glow ── */
.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #C9A652, #A8893D);
  box-shadow: 0 4px 20px rgba(212,175,55,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(212,175,55,.65), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-nav-cta {
  background: linear-gradient(135deg, #D4AF37, #C9A652, #A8893D);
  box-shadow: 0 3px 14px rgba(212,175,55,.45), inset 0 1px 0 rgba(255,255,255,.2);
}

/* ── Premium section heading sizes ── */
h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); letter-spacing: -.015em; }

/* ── Stats section upgrade ── */
.stats-section { padding: 80px 0; }
.stats-grid {
  background: none;
  border: none;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  position: relative;
}
.stats-grid::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060D1F 0%, #0F1E35 50%, #0A1628 100%);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(6,13,31,.6);
}
.stat-card {
  position: relative; z-index: 1;
  padding: 52px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  background: none;
  transition: background var(--trans);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(201,166,82,.06); }
.stat-qual-icon { font-size: 2.2rem; margin-bottom: 14px; }
.stat-qual-title {
  font-size: 1.35rem;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.8));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-qual-sub { font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ── Insurance CTA upgrade ── */
.insurance-cta {
  background: linear-gradient(125deg, #060D1F 0%, #0F2460 45%, #1D4ED8 100%);
  position: relative;
}
.insurance-cta::before {
  background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(201,166,82,.18) 0%, transparent 65%),
              radial-gradient(ellipse 30% 60% at 10% 50%, rgba(96,165,250,.1) 0%, transparent 60%);
}
.insurance-cta h2 { text-shadow: 0 2px 24px rgba(0,0,0,.3); }

/* ── Service cards — glassmorphism upgrade ── */
.svc-card {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  box-shadow:
    0 2px 4px rgba(10,22,40,.04),
    0 8px 24px rgba(10,22,40,.08),
    0 0 0 1px rgba(201,166,82,0) inset;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.svc-card:hover {
  border-color: rgba(201,166,82,.35);
  box-shadow:
    0 8px 16px rgba(10,22,40,.06),
    0 24px 64px rgba(10,22,40,.14),
    0 0 0 1.5px rgba(201,166,82,.25) inset;
  transform: translateY(-8px);
}
.svc-featured {
  border-color: rgba(201,166,82,.5);
  box-shadow:
    0 8px 32px rgba(201,166,82,.18),
    0 0 0 1px rgba(201,166,82,.3) inset;
}
.svc-featured:hover {
  box-shadow:
    0 16px 56px rgba(201,166,82,.3),
    0 0 0 1.5px rgba(201,166,82,.5) inset;
}
.svc-featured-ribbon {
  background: linear-gradient(135deg, #D4AF37, #A8893D);
  box-shadow: 0 3px 12px rgba(201,166,82,.4);
  letter-spacing: .06em;
}
.svc-body h3 { font-size: 1.25rem; }
.svc-tag { font-size: .65rem; letter-spacing: .1em; }

/* ── Gallery upgrade ── */
.gal-item { box-shadow: 0 8px 32px rgba(10,22,40,.18); }
.gal-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  pointer-events: none;
  transition: border-color var(--trans);
}
.gal-item:hover::before { border-color: rgba(201,166,82,.4); }
.gal-overlay {
  background: linear-gradient(to top, rgba(6,13,31,.85) 0%, rgba(6,13,31,.2) 50%, transparent 100%);
  z-index: 2;
}
.gal-overlay span {
  font-size: 1.15rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  letter-spacing: .02em;
}

/* ── About section image framing ── */
.about-img-main {
  box-shadow:
    0 4px 6px rgba(10,22,40,.04),
    0 12px 40px rgba(10,22,40,.14),
    0 40px 96px rgba(10,22,40,.2);
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, rgba(201,166,82,.4), transparent 50%, rgba(29,78,216,.2));
  z-index: -1;
}
.about-img-main { position: relative; }
.about-exp-badge {
  background: linear-gradient(135deg, #D4AF37 0%, #C9A652 50%, #A8893D 100%);
  box-shadow: 0 8px 32px rgba(201,166,82,.45), inset 0 1px 0 rgba(255,255,255,.25);
}

/* ── Theotokos section upgrade ── */
.theotokos-section {
  background: linear-gradient(150deg, #060D1F 0%, #0F1E40 55%, #1a2a50 100%);
}
.theotokos-icon-ring {
  box-shadow:
    0 0 0 6px rgba(201,166,82,.2),
    0 0 0 14px rgba(201,166,82,.08),
    0 0 0 24px rgba(201,166,82,.04),
    0 32px 80px rgba(0,0,0,.6);
  border: 2px solid rgba(201,166,82,.7);
}
.theotokos-quote {
  background: rgba(201,166,82,.07);
  border-left: 3px solid var(--gold);
  position: relative;
}
.theotokos-quote::before {
  content: '\201C';
  position: absolute; top: -12px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 1;
  color: rgba(201,166,82,.25);
  pointer-events: none;
}

/* ── Process section upgrade ── */
.proc-icon {
  background: linear-gradient(135deg, #fff 0%, #FAFAF8 100%);
  border: none;
  box-shadow:
    0 2px 0 rgba(201,166,82,.15),
    0 8px 32px rgba(10,22,40,.1),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.proc-step:hover .proc-icon {
  background: linear-gradient(135deg, #FDF9F0, #F5EDD8);
  box-shadow:
    0 2px 0 rgba(201,166,82,.3),
    0 12px 40px rgba(201,166,82,.2),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.proc-num {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .9rem; letter-spacing: .15em;
}
.process-line {
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), var(--blue-mid), transparent);
  opacity: .25; height: 1px;
}

/* ── Why Us upgrade ── */
.why-check {
  background: linear-gradient(135deg, #D4AF37, #A8893D);
  box-shadow: 0 3px 10px rgba(201,166,82,.4);
}
.why-img-caption {
  background: rgba(255,255,255,.98);
  box-shadow: 0 12px 48px rgba(10,22,40,.2), 0 2px 0 rgba(201,166,82,.2);
  border: 1px solid rgba(201,166,82,.15);
}

/* ── FAQ upgrade ── */
.faq { background: linear-gradient(160deg, #FDFCFA 0%, #F8F5EF 100%); }
.faq-item {
  box-shadow: 0 2px 8px rgba(10,22,40,.04);
  border-color: rgba(229,231,235,.8);
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(201,166,82,.12), 0 2px 0 var(--gold);
}
.faq-q strong { font-size: 1.0125rem; }
.faq-toggle {
  background: var(--bg-warm);
  box-shadow: 0 1px 4px rgba(10,22,40,.08);
}

/* ── Areas We Serve upgrade ── */
.serve-area {
  background: linear-gradient(160deg, #FAFAF8 0%, #F5EDD8 30%, #FAFAF8 70%);
  position: relative; overflow: hidden;
}
.serve-area::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,166,82,.07) 0%, transparent 70%);
}
.serve-area .container { position: relative; z-index: 1; }
.city-chip {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(10,22,40,.06), 0 0 0 1px rgba(201,166,82,.2);
  transition: all var(--trans);
  cursor: default;
}
.city-chip:hover {
  background: linear-gradient(135deg, #D4AF37, #A8893D);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,166,82,.35);
}

/* ── Contact section upgrade ── */
.contact { background: linear-gradient(160deg, #FFFFFF 0%, #F8F5EF 100%); }
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(201,166,82,.15);
  box-shadow:
    0 4px 6px rgba(10,22,40,.03),
    0 12px 40px rgba(10,22,40,.09),
    0 40px 80px rgba(10,22,40,.06);
  position: relative;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), #E8C97A, var(--gold-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,166,82,.12);
}
.contact-form-card h3 {
  font-size: 1.75rem;
  background: linear-gradient(135deg, var(--navy), #1D4ED8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Logo icon premium ring ── */
.logo-icon-img {
  box-shadow:
    0 0 0 2px rgba(201,166,82,.5),
    0 0 0 4px rgba(201,166,82,.15),
    0 4px 14px rgba(0,0,0,.2);
  border: 1.5px solid rgba(201,166,82,.8);
}
.logo:hover .logo-icon-img {
  box-shadow:
    0 0 0 2px rgba(212,175,55,.8),
    0 0 0 5px rgba(212,175,55,.2),
    0 6px 20px rgba(0,0,0,.25);
}

/* ── Footer upgrade ── */
.footer { background: linear-gradient(160deg, #060D1F 0%, #0A1628 60%, #0F1E35 100%); }
.footer-top { border-bottom: 1px solid rgba(201,166,82,.12); }
.footer-bottom { background: rgba(0,0,0,.3); }
.ft-links a:hover { color: var(--gold); }
.footer-phone:hover, .footer-email:hover { color: var(--gold); }

/* ── Gold rule upgrade ── */
.gold-rule {
  width: 56px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), #E8C97A, var(--gold-dark), transparent);
}

/* ── Scroll-to-top upgrade ── */
#scroll-top {
  background: linear-gradient(135deg, #D4AF37, #A8893D);
  box-shadow: 0 6px 24px rgba(201,166,82,.5), inset 0 1px 0 rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 1rem; font-weight: 700;
}

/* ── Pillar hover ── */
.pillar:hover {
  background: linear-gradient(135deg, rgba(201,166,82,.08), rgba(201,166,82,.04));
  border-color: rgba(201,166,82,.4);
}

/* ── Section spacing increase ── */
.about, .services, .gallery, .faq, .contact { padding: 120px 0; }
.process { padding: 112px 0; }
.serve-area { padding: 100px 0; }

/* ── Smooth image colour pop ── */
.svc-img img, .gal-item img, .about-img-main img {
  filter: saturate(1.05) contrast(1.02);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.svc-card:hover .svc-img img,
.gal-item:hover img { filter: saturate(1.12) contrast(1.04); }

/* ── Fancy focus outline ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Divider between sections using box-shadow ── */
.stats-section   { padding-bottom: 96px; }
.insurance-cta   { border-top: 1px solid rgba(255,255,255,.04); }

/* ── Hero proof bar ── */
.hero-proof {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,166,82,.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.proof-item strong { font-size: 1rem; letter-spacing: .01em; }

/* ── Animated gradient blob behind hero content ── */
.hero-inner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,.2) 0%, transparent 70%);
  border-radius: 50%;
  left: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: heroBlob 8s ease-in-out infinite;
}
@keyframes heroBlob {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .8; }
  50%       { transform: translateY(-55%) scale(1.15); opacity: 1; }
}

/* =============================================
   PAGE LOADER
   ============================================= */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #060D1F 0%, #0A1628 60%, #0F1E35 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-icon {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(201,166,82,.6);
  box-shadow: 0 0 0 6px rgba(201,166,82,.1), 0 0 40px rgba(201,166,82,.2);
  margin: 0 auto 20px;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{box-shadow:0 0 0 6px rgba(201,166,82,.1),0 0 40px rgba(201,166,82,.2)} 50%{box-shadow:0 0 0 10px rgba(201,166,82,.18),0 0 60px rgba(201,166,82,.35)} }
.loader-name {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: .02em;
}
.loader-sub {
  display: block; font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(201,166,82,.7); margin-top: 4px; margin-bottom: 28px;
}
.loader-bar {
  width: 180px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: 2px; margin: 0 auto; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), #E8C97A, var(--gold-dark));
  border-radius: 2px;
  animation: loaderProgress 1.8s ease forwards;
}
@keyframes loaderProgress { 0%{width:0%} 60%{width:75%} 100%{width:100%} }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-fab {
  position: fixed; bottom: 96px; right: 32px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
}
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff;
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  padding: 6px 12px; border-radius: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
  box-shadow: var(--shadow);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy);
  border-right: none;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: rgba(6,13,31,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,166,82,.2);
  padding: 20px 28px;
  transform: translateY(0); transition: transform .4s var(--ease);
  box-shadow: 0 -8px 40px rgba(0,0,0,.3);
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.cookie-text strong { color: #fff; display: block; margin-bottom: 4px; }
.cookie-text a { color: var(--gold); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.cookie-decline-btn {
  background: none; border: none; cursor: pointer;
  font-size: .875rem; color: rgba(255,255,255,.45);
  font-family: 'Inter', sans-serif; padding: 8px;
  transition: color var(--trans);
}
.cookie-decline-btn:hover { color: rgba(255,255,255,.75); }

/* =============================================
   FOOTER BADGES (HIPAA + BACB)
   ============================================= */
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4);
}
.hipaa-badge { border-color: rgba(16,185,129,.25); color: rgba(16,185,129,.7); }
.bacb-badge  { border-color: rgba(201,166,82,.25); color: rgba(201,166,82,.6); }

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c96a, var(--gold));
  z-index: 10000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── SMS FAB ── */
.fab-sms {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.fab-sms:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(201,166,82,.4);
}
@media (min-width: 1024px) {
  .fab-sms { display: none; }
}

/* ── Wavy section dividers ── */
.wave-divider {
  position: relative; height: 60px; overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  position: absolute; bottom: 0; width: 100%; height: 100%;
}
.wave-divider.wave-up { transform: rotate(180deg); }

/* ── Cursor spotlight ── */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,82,.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .4s ease;
  opacity: 0;
}
@media (hover: hover) {
  #cursor-glow { opacity: 1; }
}
@media (max-width: 768px) {
  #cursor-glow { display: none; }
}

/* ── Floating particles ── */
.particles-wrap {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,166,82,.5);
  animation: floatUp var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  bottom: -10px;
  opacity: 0;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: .7; }
  85%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(.4); }
}

/* =============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================= */

/* ── Tablet and below: FAB stacking ── */
@media (max-width: 1023px) {
  #scroll-top   { bottom: 1.25rem; right: 1.25rem; width: 44px; height: 44px; font-size: .9rem; }
  .whatsapp-fab { bottom: 4.5rem;  right: 1.25rem; width: 50px; height: 50px; }
  .fab-sms      { bottom: 8rem;    right: 1.25rem; width: 46px; height: 46px; }
}

/* ── Mobile: section padding, spacing ── */
@media (max-width: 768px) {
  .about, .services, .gallery, .faq, .contact { padding: 72px 0; }
  .process      { padding: 64px 0; }
  .serve-area   { padding: 60px 0; }
  .stats-section { padding: 52px 0 56px; }
  .booking-section, .team-section { padding: 64px 0; }
  .theotokos-section { padding: 72px 0; }
  .insurance-cta { padding: 48px 0; }
  .section-header { margin-bottom: 40px; }
  .stat-card { padding: 32px 16px; }
  .stat-qual-title { font-size: 1.1rem; }
  .stat-qual-sub { font-size: .75rem; }
  .hero-inner::before { display: none; }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero-content h1 { font-size: 2.1rem !important; line-height: 1.18; }
  .hero-content p  { font-size: 1rem; margin-bottom: 28px; }
  .hero-inner      { padding: 80px 0 60px; }
  .hero-ctas       { gap: 12px; }
  .hero-proof      { padding: 12px 14px; gap: 10px; width: 100%; justify-content: space-around; }
  .proof-item strong { font-size: .875rem; }

  /* Headings */
  h2 { font-size: clamp(1.75rem, 8vw, 2.4rem) !important; letter-spacing: -.01em; }

  /* About */
  .about-grid { gap: 36px !important; }
  .about-img-secondary { display: none; }
  .about-exp-badge { left: 8px; top: 16px; padding: 12px 16px; }
  .exp-inner strong { font-size: 1.2rem; }
  .exp-inner span   { font-size: .72rem; }

  /* Team */
  .team-name-badge { left: 8px; bottom: -12px; padding: 12px 16px; }
  .team-name-badge strong { font-size: .875rem; }

  /* Forms */
  .contact-form-card { padding: 24px 16px; }
  .booking-card      { padding: 24px 16px !important; }

  /* FAQ */
  .faq-q       { padding: 14px 14px; gap: 10px; }
  .faq-q strong { font-size: .9rem; }
  .faq-a       { padding: 0 14px; }

  /* Why us */
  .why-text-side { padding: 44px 20px !important; }

  /* Process */
  .proc-step  { padding: 10px 6px; }
  .proc-icon  { width: 64px; height: 64px; font-size: 1.8rem; }

  /* Stats */
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-card    { padding: 28px 12px; }
  .stat-qual-title { font-size: 1rem; }

  /* Theotokos icon */
  .theotokos-icon-ring { width: 180px; height: 220px; }
  .theotokos-icon-glow { width: 200px; height: 200px; }

  /* Insurance bar */
  .insurance-bar  { padding: 16px 0; }
  .ins-logos      { gap: 6px; }
  .ins-label      { display: none; }
  .ins-logo-badge { padding: 5px 9px; font-size: .7rem; }

  /* Footer */
  .footer-top { padding: 52px 0 36px; }
}

/* =============================================
   MOBILE BOTTOM CTA BAR
   ============================================= */
.mobile-cta-bar {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9990;
    background: var(--navy);
    border-top: 2px solid rgba(201,166,82,.25);
    box-shadow: 0 -6px 24px rgba(0,0,0,.35);
    padding-bottom: env(safe-area-inset-bottom, 0); /* iPhone home bar */
  }

  .mcta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 11px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,.07);
    transition: background .15s, color .15s;
    -webkit-tap-highlight-color: transparent;
  }
  .mcta-btn:last-child { border-right: none; }
  .mcta-btn:active { opacity: .75; }
  .mcta-btn svg { flex-shrink: 0; }

  /* Call — green */
  .mcta-call {
    background: linear-gradient(160deg, #166534, #15803d);
    color: #fff;
  }
  .mcta-call:active { background: #14532d; }

  /* Text — navy with gold accent */
  .mcta-sms { color: rgba(255,255,255,.8); }
  .mcta-sms:active { background: rgba(255,255,255,.06); }

  /* WhatsApp — subtle green tint */
  .mcta-whatsapp { color: #4ade80; }
  .mcta-whatsapp:active { background: rgba(255,255,255,.06); }

  /* Book — gold */
  .mcta-book {
    background: linear-gradient(160deg, #A8893D, #C9A652);
    color: var(--navy);
    font-weight: 800;
  }
  .mcta-book:active { background: #A8893D; }

  /* Push body content up so nothing hides behind the bar */
  body { padding-bottom: 62px; }

  /* Hide individual floating FABs — the bar replaces them */
  .whatsapp-fab, .fab-sms { display: none !important; }

  /* Move scroll-to-top above the bar */
  #scroll-top { bottom: 70px; right: 1.25rem; }
}

/* =============================================
   DARK MODE
   ============================================= */
.dark-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(10,22,40,.07);
  border: 1.5px solid rgba(10,22,40,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
  margin-left: 8px;
}
.dark-toggle:hover { background: rgba(10,22,40,.12); transform: rotate(20deg); }

body.dark-mode {
  --bg: #0f1117;
  --bg-warm: #161b27;
  --text: #d1d5db;
  --text-lt: #9ca3af;
  --border: #2a3142;
  --navy: #C9A652;
  --navy2: #A8893D;
  background: #0f1117;
  color: #d1d5db;
}
body.dark-mode #header {
  background: rgba(15,17,23,.97);
  border-bottom-color: rgba(201,166,82,.15);
}
body.dark-mode .logo-name { color: #fff; }
body.dark-mode .logo-sub  { color: rgba(255,255,255,.4); }
body.dark-mode #main-nav a { color: rgba(255,255,255,.75); }
body.dark-mode #main-nav a:hover,
body.dark-mode #main-nav a.active { color: #C9A652; background: rgba(201,166,82,.1); }
body.dark-mode .svc-card,
body.dark-mode .faq-item,
body.dark-mode .contact-form-card,
body.dark-mode .pillar,
body.dark-mode .cred-item,
body.dark-mode .booking-card { background: #1a2035; border-color: #2a3142; }
body.dark-mode .svc-body h3,
body.dark-mode .svc-body p,
body.dark-mode h3, body.dark-mode h4 { color: #e5e7eb; }
body.dark-mode .faq-q strong { color: #e5e7eb; }
body.dark-mode .fg input,
body.dark-mode .fg select,
body.dark-mode .fg textarea { background: #1a2035; border-color: #2a3142; color: #d1d5db; }
body.dark-mode .about,
body.dark-mode .gallery,
body.dark-mode .faq,
body.dark-mode .contact { background: #0f1117; }
body.dark-mode .services,
body.dark-mode .process,
body.dark-mode .serve-area,
body.dark-mode .team-section { background: #161b27; }
body.dark-mode .city-chip { background: #1a2035; color: #d1d5db; border-color: rgba(201,166,82,.3); }
body.dark-mode .insurance-bar { background: #161b27; border-bottom-color: #2a3142; }
body.dark-mode .dark-toggle { background: rgba(201,166,82,.12); border-color: rgba(201,166,82,.3); }
body.dark-mode #main-nav.open { background: rgba(15,17,23,.98); }
body.dark-mode .wave-divider svg path { fill: #161b27; }
body.dark-mode .pillar:hover { background: rgba(201,166,82,.1); }
body.dark-mode .cred-item:hover { background: rgba(201,166,82,.1); border-color: rgba(201,166,82,.3); }

/* ── Logo entrance animation ── */
.logo { animation: logoEntrance .8s var(--ease) both; }
@keyframes logoEntrance {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Hero eyebrow line animation ── */
.eyebrow-line {
  animation: eyebrowGrow 1s var(--ease) .3s both;
  transform-origin: left;
}
@keyframes eyebrowGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ── Hero content stagger entrance ── */
.hero-eyebrow  { animation: fadeInUp .7s var(--ease) .1s both; }
.hero-content h1 { animation: fadeInUp .8s var(--ease) .25s both; }
.hero-content > p { animation: fadeInUp .7s var(--ease) .4s both; }
.hero-phone    { animation: fadeInUp .7s var(--ease) .5s both; }
.hero-ctas     { animation: fadeInUp .7s var(--ease) .55s both; }
.hero-proof    { animation: fadeInUp .7s var(--ease) .7s both; }

/* ── Nav links entrance ── */
#main-nav li {
  animation: fadeInDown .5s var(--ease) both;
}
#main-nav li:nth-child(1)  { animation-delay: .05s; }
#main-nav li:nth-child(2)  { animation-delay: .10s; }
#main-nav li:nth-child(3)  { animation-delay: .15s; }
#main-nav li:nth-child(4)  { animation-delay: .20s; }
#main-nav li:nth-child(5)  { animation-delay: .25s; }
#main-nav li:nth-child(6)  { animation-delay: .30s; }
#main-nav li:nth-child(7)  { animation-delay: .35s; }
#main-nav li:nth-child(8)  { animation-delay: .40s; }
#main-nav li:nth-child(9)  { animation-delay: .45s; }
#main-nav li:nth-child(10) { animation-delay: .50s; }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Logo icon pulse on hover ── */
.logo:hover .logo-icon-img {
  animation: iconPulse .6s var(--ease);
}
@keyframes iconPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* =============================================
   FLOATING CONSULTATION BANNER
   ============================================= */
.consult-banner {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 9500;
  background: #fff;
  border: 1.5px solid rgba(201,166,82,.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(10,22,40,.18), 0 2px 0 rgba(201,166,82,.2);
  padding: 18px 20px;
  max-width: 340px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  pointer-events: none;
}
.consult-banner:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.consult-banner-inner {
  display: flex; align-items: center; gap: 14px;
}
.consult-icon { font-size: 1.8rem; flex-shrink: 0; }
.consult-text { flex: 1; }
.consult-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem; font-weight: 700;
  color: var(--navy); margin-bottom: 2px;
}
.consult-text span { font-size: .8125rem; color: var(--text-lt); line-height: 1.4; display: block; }
.consult-cta { padding: 10px 16px; font-size: .8375rem; flex-shrink: 0; white-space: nowrap; }
.consult-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-lt); line-height: 1;
  padding: 2px 6px;
  transition: color .2s;
}
.consult-close:hover { color: var(--navy); }
@media (max-width: 768px) {
  .consult-banner {
    left: .75rem; right: .75rem; max-width: none;
    bottom: 72px; /* above mobile bottom bar */
  }
  .consult-banner-inner { flex-wrap: wrap; }
  .consult-cta { width: 100%; text-align: center; margin-top: 4px; }
}
body.dark-mode .consult-banner {
  background: #1a2035;
  border-color: rgba(201,166,82,.3);
}
body.dark-mode .consult-text strong { color: #e5e7eb; }
