/* =========================================================
   CROSSROADS WELLNESS CENTRE — GLASS THEME
   Single shared stylesheet for all frontend pages
   ========================================================= */

/* ============ 1. ROOT VARIABLES ============ */
:root{
  --primary:#1a6b8a;
  --primary-dark:#0f3f38;
  --accent:#2a9d8f;
  --accent-dark:#1f7a6f;
  --text-dark:#12212a;
  --text-muted:#5b6b74;
  --border:#e2e8ec;
  --blue-light:#eaf5f9;

  --radius:14px;
  --radius-lg:24px;

  --shadow:0 8px 30px rgba(15,63,56,.08);
  --shadow-lg:0 20px 60px rgba(15,63,56,.16);

  --glass-bg:rgba(255,255,255,.55);
  --glass-bg-strong:rgba(255,255,255,.75);
  --glass-bg-dark:rgba(15,63,56,.38);
  --glass-border:rgba(255,255,255,.4);
  --glass-blur:blur(18px);
}

/* ============ 2. BASE / RESET ============ */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  color:var(--text-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
a{transition:color .2s ease;}
img{max-width:100%;}

/* ============ 3. TYPOGRAPHY / SECTION HELPERS ============ */
.section-badge{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--blue-light); color:var(--primary);
  font-size:12.5px; font-weight:700; letter-spacing:.4px;
  text-transform:uppercase; padding:7px 16px; border-radius:50px;
}
.section-title{
  font-size:clamp(1.5rem,3vw,2.1rem);
  font-weight:800; color:var(--text-dark); margin:0; line-height:1.25;
}
.section-subtitle{
  color:var(--text-muted); font-size:15px; max-width:560px; margin:8px auto 0; line-height:1.6;
}
.divider-accent{
  width:56px; height:4px; border-radius:4px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  margin:16px auto 0;
}
.text-lg-start .divider-accent,
.col-lg-6 .divider-accent,
.col-lg-5 .divider-accent{ margin-left:0; }

.sect-pad{ padding:88px 0; }
.sect-pad-sm{ padding:56px 0; }
@media (max-width:767px){
  .sect-pad{ padding:52px 0; }
  .sect-pad-sm{ padding:36px 0; }
  .section-title{ font-size:1.35rem !important; }
}

/* ============ 4. GLASSMORPHISM CORE ============ */
.glass{
  background:var(--glass-bg);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.glass-strong{ background:var(--glass-bg-strong); }
.glass-dark{
  background:var(--glass-bg-dark);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

.glass-card{
  padding:28px 24px;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.glass-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  background:var(--glass-bg-strong);
}
/* ---- stronger hero overlay for legible text ---- */
.hero-glass::before{
  content:''; position:absolute; inset:0; z-index:0;
  background:linear-gradient(135deg, rgba(15,63,56,.92) 0%, rgba(26,107,138,.82) 55%, rgba(42,157,143,.68) 100%);
}
.hero-title{
  color:#fff; font-weight:800; line-height:1.18;
  font-size:clamp(1.9rem,4.6vw,3rem);
  text-shadow:0 2px 14px rgba(0,0,0,.35);
}
.hero-sub{
  color:rgba(255,255,255,.95); font-size:16px; line-height:1.8; max-width:560px;
  text-shadow:0 1px 8px rgba(0,0,0,.25);
}
.hero-confidential{ color:rgba(255,255,255,.9); }
.hero-eyebrow{ background:rgba(255,255,255,.18); border-color:rgba(255,255,255,.4); }

/* ---- fixed-contrast dark gradient sections (test + final CTA) ---- */
.gradient-dark-section{
  background:linear-gradient(160deg,var(--primary-dark) 0%,var(--primary) 100%);
  position:relative; overflow:hidden;
}
.gradient-dark-section p{ color:rgba(255,255,255,.92) !important; }
.gradient-dark-section .fine-print{ color:rgba(255,255,255,.75) !important; }
.hover-lift{ transition:transform .3s ease, box-shadow .3s ease; }
.hover-lift:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }

/* ============ 5. TOP UTILITY STRIP ============ */
.top-strip{
  background:#0f3f38; padding:9px 0; font-size:12.5px; color:rgba(255,255,255,.85);
}
.top-strip a{ color:#fff; text-decoration:none; }
.top-strip a:hover{ color:#a8e6d9; }
.top-strip select{
  background:transparent; border:none; color:#fff; font-size:12px; outline:none;
}

/* ============ 6. HERO — full-width bg image + overlay ============ */
.hero-glass{
  position:relative;
  min-height:78vh;
  display:flex; align-items:center;
  background-size:cover; background-position:center; background-repeat:no-repeat;
  overflow:hidden;
}

.hero-glass .container{ position:relative; z-index:2; }
.hero-glass.hero-sm{ min-height:52vh; }
@media (max-width:575px){ .hero-glass{ min-height:70vh; } .hero-glass.hero-sm{ min-height:44vh; } }

.hero-blob{
  position:absolute; border-radius:50%; filter:blur(70px); opacity:.35; z-index:1;
  animation:floatBlob 9s ease-in-out infinite; pointer-events:none;
}
.hero-blob-1{ width:280px; height:280px; background:#a8e6d9; top:-60px; right:8%; }
.hero-blob-2{ width:220px; height:220px; background:#4f9dd1; bottom:-40px; left:6%; animation-delay:2s; }
@keyframes floatBlob{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(18px,-26px) scale(1.06); }
}

.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.3);
  color:#fff; font-size:12.5px; font-weight:600; letter-spacing:.4px;
  padding:8px 18px; border-radius:50px; backdrop-filter:blur(8px);
}
 
.hero-confidential{
  display:inline-flex; align-items:center; gap:8px;
  color:rgba(255,255,255,.75); font-size:12.5px; margin-top:18px;
}

.hero-stat-glass{
  background:rgba(255,255,255,.14); backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.25); border-radius:16px;
  padding:16px; text-align:center; transition:transform .3s ease, background .3s ease;
}
.hero-stat-glass:hover{ transform:translateY(-4px); background:rgba(255,255,255,.22); }
.hero-stat-glass .num{ font-size:1.4rem; font-weight:800; color:#fff; line-height:1; }
.hero-stat-glass .label{ font-size:11.5px; color:rgba(255,255,255,.75); margin-top:4px; }

/* ============ 7. BUTTONS ============ */
.btn-glass, .btn-solid, .btn-accent-solid, .btn-outline-glass{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 30px; border-radius:50px; font-weight:700; font-size:14.5px;
  text-decoration:none; border:none; cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  line-height:1.2;
}
.btn-glass{
  background:rgba(255,255,255,.16); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  color:#fff; border:1px solid rgba(255,255,255,.4);
}
.btn-glass:hover{ background:rgba(255,255,255,.3); transform:translateY(-3px); color:#fff; }

.btn-outline-glass{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.55); }
.btn-outline-glass:hover{ background:rgba(255,255,255,.12); transform:translateY(-3px); color:#fff; }

.btn-solid{ background:var(--primary); color:#fff; }
.btn-solid:hover{ background:var(--primary-dark); transform:translateY(-3px); box-shadow:0 14px 30px rgba(26,107,138,.35); color:#fff; }

.btn-accent-solid{ background:var(--accent); color:#fff; }
.btn-accent-solid:hover{ background:var(--accent-dark); transform:translateY(-3px); box-shadow:0 14px 30px rgba(42,157,143,.35); color:#fff; }

.btn-sm{ padding:9px 18px; font-size:12.5px; }

/* ============ 8. ICON BOXES / AVATARS ============ */
.icon-box{
  width:54px; height:54px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px; flex-shrink:0;
}
.glass-avatar{
  width:64px; height:64px; border-radius:50%; object-fit:cover;
  border:3px solid #fff; box-shadow:0 6px 18px rgba(0,0,0,.15);
}

/* ============ 9. STORY / TESTIMONIAL CARDS ============ */
.story-quote{ font-size:52px; line-height:1; font-family:Georgia,serif; margin-bottom:-8px; opacity:.25; color:var(--primary); }
.fallback-initial{
  display:none; position:absolute; inset:0; align-items:center; justify-content:center;
  color:#fff; font-weight:800;
}

/* ============ 10. PRICING CARDS ============ */
.pricing-card{
  border-radius:16px; padding:22px 18px; text-align:center; height:100%;
  display:flex; flex-direction:column; position:relative;
  background:#fff; border:1px solid var(--border);
}
.pricing-card.featured{
  background:linear-gradient(160deg,var(--primary),var(--accent-dark));
  color:#fff; border:1px solid rgba(255,255,255,.25);
  box-shadow:0 12px 40px rgba(26,107,138,.3);
}
.pricing-card.featured h4,
.pricing-card.featured .price{ color:#fff; }
.pricing-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--accent); color:#fff; font-size:11px; font-weight:700;
  padding:4px 16px; border-radius:50px;
}

/* ============ 11. TIMELINE ============ */
.timeline-rail{ position:relative; padding-left:36px; }
.timeline-rail::before{
  content:''; position:absolute; left:11px; top:6px; bottom:6px; width:2px;
  background:linear-gradient(to bottom,var(--primary),var(--accent));
}
.timeline-dot{
  position:absolute; left:-36px; top:6px; width:14px; height:14px; border-radius:50%;
  background:var(--primary); border:3px solid #fff;
  box-shadow:0 0 0 3px rgba(26,107,138,.25);
}

/* ============ 12. LIVE / STATUS DOTS ============ */
.pulse-dot{
  width:9px; height:9px; border-radius:50%; background:#4ade80;
  display:inline-block; position:relative;
}
.pulse-dot::after{
  content:''; position:absolute; inset:0; border-radius:50%;
  background:#4ade80; animation:pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot{
  0%{ transform:scale(1); opacity:.7; }
  100%{ transform:scale(2.6); opacity:0; }
}
.status-dot{
  width:12px; height:12px; border-radius:50%; background:#4ade80; display:inline-block;
  border:2px solid #fff; box-shadow:0 0 0 2px rgba(74,222,128,.3);
}
.status-dot.busy{ background:#f59e0b; box-shadow:0 0 0 2px rgba(245,158,11,.3); }

/* ============ 13. WELLNESS TEST WIDGET ============ */
.wc-scale-btn{
  flex:1; padding:10px 4px; border-radius:10px; border:2px solid var(--border);
  background:#fff; font-size:11.5px; font-weight:600; color:var(--text-muted);
  cursor:pointer; text-align:center; transition:.15s;
}
.wc-scale-btn.active, .wc-scale-btn:hover{
  border-color:var(--primary); background:var(--blue-light); color:var(--primary);
}
.wc-progress-bar{
  height:6px; background:var(--border); border-radius:10px; overflow:hidden; margin-bottom:22px;
}
.wc-progress-fill{ height:100%; background:var(--primary); transition:width .3s; width:0%; }

/* ============ 14. FORM ELEMENTS (glass style) ============ */
.glass-input, .glass select, .glass textarea{
  background:rgba(255,255,255,.6);
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 16px;
  font-size:14px;
  color:var(--text-dark);
  width:100%;
  transition:border-color .2s ease, background .2s ease;
}
.glass-input:focus, .glass select:focus, .glass textarea:focus{
  outline:none; border-color:var(--primary); background:rgba(255,255,255,.9);
}

/* ============ 15. BLOG / CARD MEDIA ============ */
.media-card{ overflow:hidden; padding:0 !important; }
.media-card img{ width:100%; height:180px; object-fit:cover; display:block; }
.media-card .media-card-body{ padding:20px; }

/* ============ 16. SCROLL-TRIGGERED ANIMATIONS ============ */
.aos{ opacity:0; will-change:transform,opacity; }
.aos-up{ transform:translateY(34px); }
.aos-fade{ transform:none; }
.aos-zoom{ transform:scale(.92); }
.aos-left{ transform:translateX(-34px); }
.aos-right{ transform:translateX(34px); }

.aos.aos-animate{
  opacity:1; transform:translate(0,0) scale(1);
  transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}

.aos-d1{ transition-delay:.05s; }
.aos-d2{ transition-delay:.15s; }
.aos-d3{ transition-delay:.25s; }
.aos-d4{ transition-delay:.35s; }
.aos-d5{ transition-delay:.45s; }
.aos-d6{ transition-delay:.55s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion:reduce){
  .aos, .aos.aos-animate{ opacity:1 !important; transform:none !important; transition:none !important; }
  .hero-blob{ animation:none; }
  .pulse-dot::after{ animation:none; display:none; }
}

/* ============ 17. HORIZONTAL SCROLL (mobile team strip) ============ */
.cc-scroll-x{
  display:flex; gap:14px; overflow-x:auto; padding-bottom:8px;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
}
.cc-scroll-x::-webkit-scrollbar{ height:6px; }
.cc-scroll-x::-webkit-scrollbar-thumb{ background:var(--border); border-radius:10px; }
.cc-scroll-x > *{ scroll-snap-align:start; flex:0 0 auto; }

@media (max-width:767px){
  .team-grid-desktop{ display:none !important; }
  .team-scroll-mobile{ display:flex !important; }
}
@media (min-width:768px){
  .team-scroll-mobile{ display:none !important; }
}

/* ============ 18. RESPONSIVE GRID HELPER (5-col) ============ */
@media (min-width:992px){
  .col-lg-2-4{ flex:0 0 20%; max-width:20%; }
}
/* ============ 19. BREADCRUMB ============ */
.cc-breadcrumb{
  background:var(--blue-light);
  padding:14px 0;
  border-bottom:1px solid var(--border);
}
.cc-breadcrumb .breadcrumb{
  margin:0; padding:0; list-style:none; display:flex; align-items:center; gap:8px;
}
.cc-breadcrumb .breadcrumb-item{
  font-size:13px; color:var(--text-muted); display:flex; align-items:center; gap:8px;
}
.cc-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
  content:'/'; color:var(--border); font-weight:600;
}
.cc-breadcrumb .breadcrumb-item a{ color:var(--primary); text-decoration:none; }
.cc-breadcrumb .breadcrumb-item a:hover{ color:var(--primary-dark); }
.cc-breadcrumb .breadcrumb-item.active{ color:var(--text-dark); font-weight:600; }

/* ============ 20. QUICK-STRIP CHIPS ============ */
.quick-strip{
  background:var(--primary-dark);
  padding:22px 0;
}
.quick-strip-item{
  color:rgba(255,255,255,.9); font-size:12.5px; font-weight:600; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  min-width:88px;
}
.quick-strip-item i{ font-size:20px; color:#a8e6d9; }

/* ============ 21. STAT / FEE ROW (glass) ============ */
.fee-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 0; font-size:14px; color:var(--text-muted);
  border-bottom:1px solid var(--border);
}
.fee-row:last-child{ border-bottom:none; }
.fee-row strong{ font-size:15px; }

/* ============ 22. STEP NUMBER CIRCLE ============ */
.step-num{
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:18px; font-weight:800; flex-shrink:0;
}
/* ============ 1. ROOT VARIABLES (updated) ============ */
:root{
  /* ...existing vars unchanged... */

  /* OLD: --glass-bg-dark:rgba(15,63,56,.38); */
  --glass-bg-dark:rgba(15,45,42,.62);          /* deeper, richer, less "muddy" */
  --glass-dark-grad:linear-gradient(135deg, rgba(15,63,56,.88) 0%, rgba(26,107,138,.78) 100%);
}

/* ============ 4b. GLASS-DARK — modernized with gradient + subtle border glow ============ */
.glass-dark{
  background:var(--glass-dark-grad);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  box-shadow:0 20px 50px rgba(15,63,56,.28), inset 0 1px 0 rgba(255,255,255,.08);
}
.glass-dark p, .glass-dark li{ color:rgba(255,255,255,.88); }

/* ============ 23. FAQ ACCORDION ============ */
.faq-item{
  background:var(--glass-bg-strong);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  margin-bottom:10px;
  overflow:hidden;
  transition:background .25s ease, box-shadow .25s ease;
}
.faq-item.open{ background:#fff; box-shadow:var(--shadow); }
.faq-item-btn{
  width:100%; text-align:left; padding:18px 20px; background:none; border:none;
  font-size:15px; font-weight:600; color:var(--text-dark); cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.faq-item-icon{ font-size:13px; flex-shrink:0; transition:transform .25s ease; }
.faq-item-icon.rotated{ transform:rotate(180deg); }
.faq-answer{
  display:none; padding:0 20px 18px; font-size:14px; color:var(--text-muted); line-height:1.8;
}

/* ============ 24. FAQ CATEGORY PILLS ============ */
.faq-cat-btn{
  display:inline-flex; align-items:center; gap:6px; padding:8px 18px;
  border-radius:50px; font-size:13px; font-weight:600; color:var(--text-muted);
  background:var(--blue-light); border:1px solid var(--border); text-decoration:none;
  transition:all .2s ease;
}
.faq-cat-btn:hover, .faq-cat-btn.active{
  background:var(--primary); color:#fff; border-color:var(--primary);
  transform:translateY(-2px);
}

/* ============ 25. SIDEBAR CARD ============ */
.sidebar-card{
  background:var(--glass-bg-strong);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--glass-border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:24px;
}
.sidebar-link{
  display:flex; align-items:center; gap:10px; padding:10px 0;
  font-size:13px; color:var(--text-dark); text-decoration:none;
  border-bottom:1px solid var(--border); transition:color .2s ease;
}
.sidebar-link:last-child{ border-bottom:none; }
.sidebar-link:hover{ color:var(--primary); }

/* ============ 26. FAQ SEARCH INPUT ============ */
.faq-search-input{
  width:100%; padding:14px 50px 14px 20px;
  background:var(--glass-bg-strong);
  backdrop-filter:var(--glass-blur); -webkit-backdrop-filter:var(--glass-blur);
  border:2px solid var(--glass-border); border-radius:50px;
  font-size:15px; outline:none; transition:border-color .2s ease, background .2s ease;
}
.faq-search-input:focus{ border-color:var(--primary); background:#fff; }

/* ============ 27. CRISIS ALERT BANNER (glass, not flat red) ============ */
.crisis-banner{
  background:linear-gradient(135deg, rgba(254,242,242,.9), rgba(255,255,255,.7));
  backdrop-filter:var(--glass-blur); -webkit-backdrop-filter:var(--glass-blur);
  border:1.5px solid #fca5a5; border-radius:var(--radius-lg); padding:24px;
}
.crisis-chip{
  background:rgba(255,255,255,.75); border:1px solid #fca5a5; border-radius:8px;
  padding:8px 16px; font-size:13px; font-weight:600; color:#dc2626;
}
/* ============ 28. FAQ HERO STAT MINI (glass, for hero-glass sections) ============ */
.faq-hero-search{
  max-width:520px; margin:24px auto 0; position:relative;
}
.faq-hero-search input{
  width:100%; padding:15px 54px 15px 22px;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.4);
  border-radius:50px; font-size:15px; color:#fff; outline:none;
  transition:background .2s ease, border-color .2s ease;
}
.faq-hero-search input::placeholder{ color:rgba(255,255,255,.7); }
.faq-hero-search input:focus{ background:rgba(255,255,255,.26); border-color:rgba(255,255,255,.6); }
.faq-hero-search i{
  position:absolute; right:20px; top:50%; transform:translateY(-50%);
  color:rgba(255,255,255,.85); font-size:16px;
}
/* ============ 29. GLASS NAVBAR ============ */
.glass-navbar{
  background:var(--glass-bg-strong);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border-bottom:1px solid var(--glass-border);
  box-shadow:var(--shadow);
  position:sticky;
  top:0;
  z-index:1030;
  padding:10px 0;
}

.glass-navbar .navbar-brand{
  display:flex; align-items:center; gap:10px;
}
.glass-navbar .navbar-brand img{ height:44px; }
.glass-navbar .brand-name{
  font-weight:800; font-size:16px; color:var(--primary); line-height:1.2;
}
.glass-navbar .brand-tagline{ font-size:11px; color:var(--text-muted); }

/* Nav links */
.glass-navbar .navbar-nav{
  align-items:center;
  gap:2px;
}
.glass-navbar .nav-link{
  color:var(--text-dark) !important;
  font-weight:600;
  font-size:14.5px;
  padding:9px 14px !important;
  border-radius:10px;
  transition:background .2s ease, color .2s ease;
}
.glass-navbar .nav-link:hover,
.glass-navbar .nav-link.active{
  background:var(--blue-light);
  color:var(--primary) !important;
}

/* Dropdown menus — glass card style, consistent with .sidebar-card */
.glass-navbar .dropdown-menu{
  background:var(--glass-bg-strong);
  backdrop-filter:var(--glass-blur);
  -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  padding:8px;
  margin-top:8px;
}
.glass-navbar .dropdown-item{
  border-radius:8px;
  padding:10px 12px;
  font-size:13.5px;
  color:var(--text-dark);
}
.glass-navbar .dropdown-item:hover{
  background:var(--blue-light);
  color:var(--primary);
}
.glass-navbar .dropdown-item.active-lang{
  background:var(--blue-light); color:var(--primary); font-weight:700;
}

/* Toggler — custom glass hamburger, no reliance on BS default icon svg */
.glass-navbar .navbar-toggler{
  border:none; outline:none; box-shadow:none;
  width:40px; height:40px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--blue-light);
  padding:0;
}
.glass-navbar .navbar-toggler-icon{
  display:block; width:20px; height:2px; background:var(--primary);
  position:relative;
}
.glass-navbar .navbar-toggler-icon::before,
.glass-navbar .navbar-toggler-icon::after{
  content:''; position:absolute; left:0; width:20px; height:2px; background:var(--primary);
}
.glass-navbar .navbar-toggler-icon::before{ top:-6px; }
.glass-navbar .navbar-toggler-icon::after{ top:6px; }

/* Wallet pill */
.glass-wallet-pill{
  display:flex; align-items:center; gap:6px;
  font-size:13px; font-weight:700; color:var(--primary);
  background:var(--blue-light); padding:7px 14px; border-radius:50px;
}

/* Notification bell + badge */
.glass-navbar .icon-btn{
  color:var(--text-dark); font-size:19px; position:relative;
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border-radius:10px; transition:background .2s ease;
}
.glass-navbar .icon-btn:hover{ background:var(--blue-light); }

/* User avatar trigger */
.glass-navbar .user-avatar-btn img,
.glass-navbar .user-avatar-btn .avatar-fallback{
  width:38px; height:38px; border-radius:50%;
  border:2px solid var(--accent); object-fit:cover;
}
.glass-navbar .user-avatar-btn .avatar-fallback{
  display:flex; align-items:center; justify-content:center;
  background:var(--blue-light); color:var(--primary); font-size:17px;
}
.user-menu-header{
  background:var(--blue-light); border-radius:10px 10px 0 0;
  padding:14px 16px; margin:-8px -8px 8px;
}
.user-menu-header .u-name{ font-weight:700; font-size:14px; color:var(--primary); }
.user-menu-header .u-contact{ font-size:12px; color:var(--text-muted); }

/* Responsive collapse — no forced display override at ANY width.
   Bootstrap's .collapse / .show classes (from app.min.css) fully
   control visibility; the hamburger toggle works correctly. */
@media (max-width:991.98px){
  .glass-navbar .navbar-collapse{
    background:var(--glass-bg-strong);
    backdrop-filter:var(--glass-blur);
    -webkit-backdrop-filter:var(--glass-blur);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:14px;
    margin-top:10px;
  }
  .glass-navbar .navbar-nav{
    flex-direction:column; align-items:stretch; gap:2px;
  }
  .glass-navbar .nav-link{ padding:12px 14px !important; font-size:15px; }
  .glass-navbar .navbar-actions{
    flex-direction:column; align-items:stretch !important;
    gap:10px; margin-top:12px; padding-top:12px;
    border-top:1px solid var(--border);
  }
  .glass-navbar .navbar-actions > *{ width:100%; justify-content:center; }
}
@media (min-width:992px){
  .glass-navbar .navbar-actions{
    display:flex; align-items:center; gap:10px;
  }
}

/* ============ 30. AUTH MODAL (glass) ============ */
.auth-modal .modal-content{
  border:none; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.auth-modal .modal-header-glass{
  background:linear-gradient(90deg,var(--primary),var(--accent));
  color:#fff; padding:24px;
}
.auth-modal .modal-header-glass .close{
  color:#fff; opacity:.85; background:none; border:none; font-size:24px;
}
.auth-tabs{
  display:flex; background:var(--blue-light); border-radius:10px; padding:4px; margin-bottom:20px;
}
.auth-tab-btn{
  flex:1; border:none; border-radius:8px; padding:10px; font-size:14px; font-weight:700;
  background:transparent; color:var(--text-muted); cursor:pointer; transition:.2s;
}
.auth-tab-btn.active{ background:var(--primary); color:#fff; }
.auth-field-toggle{
  text-align:center; padding:9px; border-radius:8px; border:2px solid var(--border);
  background:#fff; font-size:13px; font-weight:600; color:var(--text-muted); cursor:pointer;
}
.auth-field-toggle.active{ border-color:var(--primary); background:var(--blue-light); color:var(--primary); }
.auth-alert{
  display:none; border-radius:8px; padding:10px 14px; font-size:13px; margin-bottom:16px;
}
.auth-alert.success{ background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; }
.auth-alert.error{ background:#fef2f2; color:#dc2626; border:1px solid #fecaca; }

/* ============ 31. GLASS FOOTER ============ */
.glass-footer{
  background:var(--glass-dark-grad);
  color:rgba(255,255,255,.85);
  position:relative;
  overflow:hidden;
}
.glass-footer::before{
  content:''; position:absolute; inset:0; z-index:0;
  background:radial-gradient(circle at 15% 15%, rgba(168,230,217,.08), transparent 55%),
             radial-gradient(circle at 85% 85%, rgba(79,157,209,.08), transparent 55%);
}
.glass-footer .container{ position:relative; z-index:1; }

.footer-cta-strip{
  background:rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-cta-strip .cta-eyebrow{
  color:#a8e6d9; font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
}
.footer-cta-strip .cta-title{ color:#fff; font-size:22px; font-weight:800; margin:6px 0 0; }

.footer-col h5{
  color:#fff; font-size:13px; font-weight:700; text-transform:uppercase;
  letter-spacing:.05em; margin-bottom:18px;
}
.footer-col a{
  display:block; color:rgba(255,255,255,.65); font-size:14px;
  text-decoration:none; margin-bottom:12px; transition:color .2s ease;
}
.footer-col a:hover{ color:#a8e6d9; }

.footer-brand-desc{
  color:rgba(255,255,255,.6); font-size:13.5px; line-height:1.75; max-width:320px; margin-bottom:20px;
}
.footer-social{ display:flex; gap:14px; flex-wrap:wrap; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.8); transition:background .2s ease, transform .2s ease;
}
.footer-social a:hover{ background:var(--accent); transform:translateY(-2px); color:#fff; }
.footer-social svg{ width:18px; height:18px; }

.footer-contact-link{
  display:flex; align-items:flex-start; gap:10px;
  color:rgba(255,255,255,.75); text-decoration:none; margin-bottom:14px; font-size:13.5px;
}
.footer-contact-link svg{ width:17px; height:17px; color:#a8e6d9; margin-top:2px; flex-shrink:0; }
.footer-contact-link:hover{ color:#fff; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0; font-size:12.5px; color:rgba(255,255,255,.5);
}
.footer-confidential{
  display:flex; align-items:center; gap:6px; color:rgba(255,255,255,.7);
}
.footer-confidential svg{ width:13px; height:13px; color:#a8e6d9; }

/* WhatsApp float — glass ring, consistent accent usage */
.wa-float-glass{
  position:fixed; right:24px; bottom:24px; z-index:1040;
  width:56px; height:56px; border-radius:50%;
  background:var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lg); text-decoration:none;
  transition:transform .25s ease;
}
.wa-float-glass:hover{ transform:scale(1.08); color:#fff; }
.wa-float-glass svg{ width:26px; height:26px; }
.wa-pulse-ring{
  position:absolute; inset:0; border-radius:50%;
  border:3px solid var(--accent); animation:pulseDot 2s ease-out infinite;
}

@media (max-width:575px){
  .footer-cta-strip .cta-inner{ flex-direction:column; align-items:flex-start; gap:16px; }
  .footer-col{ margin-bottom:6px; }
}