/*
Theme Name: DRC Health
Theme URI: https://drbassi.health
Author: Dr. Bassi Team
Author URI: https://drbassi.health
Description: A premium, modern WordPress theme for Advance Liver & Skin Care by Dr. Bassi — a leading Gastro Surgeon & Liver Specialist in Chandigarh, Punjab. Features a luxury healthcare design with glassmorphism, scroll animations, dark mode, Swiper.js carousel, and a fully responsive mobile-first layout. No page-builder dependency required.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drc-health
Tags: health, medical, one-column, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ========================================================================
   DRC HEALTH — PREMIUM MEDICAL THEME
   White · Blue · Emerald Green
   ======================================================================== */

/* ---------------------------------------------------------------------------
   0. CSS CUSTOM PROPERTIES (Design Tokens)
   --------------------------------------------------------------------------- */
:root {
  /* Brand (Blue) */
  --brand-50:  #eef6ff;
  --brand-100: #d9ecff;
  --brand-200: #bcdcff;
  --brand-300: #8ec5ff;
  --brand-400: #59a3ff;
  --brand-500: #3380fc;
  --brand-600: #1d60f2;
  --brand-700: #1649de;
  --brand-800: #183db3;
  --brand-900: #19388d;
  --brand-950: #142356;

  /* Accent (Emerald Green) */
  --accent-50:  #ecfdf5;
  --accent-100: #d1fae5;
  --accent-200: #a7f3d0;
  --accent-300: #6ee7b7;
  --accent-400: #34d399;
  --accent-500: #10b981;
  --accent-600: #059669;
  --accent-700: #047857;
  --accent-800: #065f46;
  --accent-900: #064e3b;

  /* Slate (neutral) */
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Semantic */
  --text:      #475569;
  --text-dark: #0f172a;
  --bg:        #ffffff;
  --bg-alt:    #f8fafc;
  --border:    #e2e8f0;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Radius */
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 30px rgba(0,0,0,.10);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.12);
  --shadow-glow: 0 4px 20px rgba(29,96,242,.20);
}

/* Dark-mode overrides */
.dark {
  --text:      #94a3b8;
  --text-dark: #f1f5f9;
  --bg:        #020617;
  --bg-alt:    #0f172a;
  --border:    rgba(255,255,255,.10);
}

/* ---------------------------------------------------------------------------
   1. GLOBAL RESET & BASE
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dark body {
  background-color: var(--bg);
  color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

a {
  color: var(--brand-600);
  text-decoration: none;
  transition: color .25s;
}
a:hover { color: var(--brand-700); }

::selection {
  background: rgba(29,96,242,.18);
  color: var(--brand-900);
}
.dark ::selection {
  background: rgba(52,211,153,.20);
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  border: 3px solid transparent;
  background-clip: padding-box;
  background: var(--slate-300);
}
.dark ::-webkit-scrollbar-thumb { background: var(--slate-700); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-400); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--brand-600);
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  transition: top .3s;
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------------------
   2. LAYOUT HELPERS
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 640px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.section { padding: 5rem 0; }
@media (min-width: 640px) { .section { padding: 7rem 0; } }

.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.text-left  { text-align: left; }

/* Grid system */
.grid   { display: grid; gap: 1.5rem; }
.g-4    { gap: 1rem; }
.g-6    { gap: 1.5rem; }
.g-7    { gap: 1.75rem; }
.g-8    { gap: 2rem; }
.g-10   { gap: 2.5rem; }
.g-12   { gap: 3rem; }

/* Flex helpers */
.flex       { display: flex; }
.flex-col   { flex-direction: column; }
.flex-wrap  { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Responsive grids */
@media (min-width: 640px) {
  .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lg-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1280px) {
  .xl-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------------------- */
.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
}

.text-sm   { font-size: .875rem; }
.text-xs   { font-size: .75rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold   { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .1em; }
.tracking-wider { letter-spacing: .18em; }
.leading-relaxed { line-height: 1.7; }

.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-700 { color: var(--slate-700); }
.text-slate-900 { color: var(--slate-900); }
.text-white { color: #fff; }
.text-accent { color: var(--accent-500); }
.text-brand  { color: var(--brand-600); }

/* ---------------------------------------------------------------------------
   4. UTILITY CLASSES
   --------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto; height: auto;
  padding: inherit; margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--brand-100);
  background: rgba(29,96,242,.06);
  padding: .375rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--brand-700);
}
.dark .eyebrow {
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--brand-200);
}
.eyebrow i {
  font-size: .7rem;
}

/* Section heading */
.section-heading { max-width: 50rem; }
.section-heading.text-center { margin-left: auto; margin-right: auto; }

.section-heading h2 {
  margin-top: 1rem;
  color: var(--text-dark);
}
.section-heading .section-desc {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40rem;
}
.text-center .section-desc { margin-left: auto; margin-right: auto; }

.heading-line {
  display: block;
  margin-top: .75rem;
  height: 5px;
  width: 5rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
}
.text-center .heading-line { margin-left: auto; margin-right: auto; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.dark .glass-card {
  background: rgba(15,23,42,.60);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  padding: .75rem 1.5rem;
  line-height: 1.4;
}
.btn:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #fff;
  box-shadow: 0 4px 16px rgba(29,96,242,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,96,242,.35);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-700);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  color: var(--brand-700);
}

.btn-secondary {
  border: 1px solid var(--brand-200);
  background: rgba(255,255,255,.80);
  color: var(--brand-700);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: #fff;
  border-color: var(--brand-300);
  color: var(--brand-700);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  padding: .625rem 1rem;
}
.btn-ghost:hover {
  background: var(--slate-100);
  color: var(--slate-700);
}

.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.125rem; font-size: .8rem; }

.btn i,
.btn svg {
  transition: transform .3s;
}
.btn:hover i,
.btn:hover svg {
  transform: translateX(4px);
}

.dark .btn-secondary {
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.dark .btn-secondary:hover {
  background: rgba(255,255,255,.10);
}

.dark .btn-white {
  background: var(--slate-900);
  color: #fff;
  border: 1px solid var(--border);
}

/* Card component */
.card {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  overflow: hidden;
}
.dark .card {
  background: var(--slate-900);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.card-body { padding: 1.75rem; }
.card-body-lg { padding: 2rem; }

/* Icon box */
.icon-box {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-lg);
  width: 3.75rem;
  height: 3.75rem;
  transition: all .3s;
}

.icon-box-md { width: 3rem; height: 3rem; border-radius: var(--radius-md); }
.icon-box-sm { width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm); font-size: .9rem; }

.icon-box-gradient {
  background: linear-gradient(135deg, var(--brand-600), var(--accent-500));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.icon-box-brand {
  background: var(--brand-50);
  color: var(--brand-600);
  padding: 10px!important;
	min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dark .icon-box-brand {
  background: rgba(255,255,255,.08);
  color: var(--brand-300);
}

/* Pill / tag */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: #fff;
  padding: .375rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate-700);
}
.dark .pill {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  color: var(--slate-200);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
}

/* Overflow hidden */
.overflow-hidden { overflow: hidden; }
.relative       { position: relative; }

/* ---------------------------------------------------------------------------
   5. NAVBAR
   --------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all .3s;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.scrolled {
  padding: .625rem 0;
  background: rgb(191 191 191);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(226,232,240,.70);
  box-shadow: var(--shadow-sm);
}
.dark .site-header.scrolled {
  background: rgba(2,6,23,.82);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.site-brand:hover { text-decoration: none; }

.logo-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-600), var(--accent-500));
  box-shadow: 0 4px 16px rgba(29,96,242,.30);
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.site-brand:hover .logo-icon { transform: scale(1.05); }
.logo-icon svg {
  width: 50%;
  height: 50%;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .title {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.scrolled.logo-text .title {
  color: #000;
}
.dark .logo-text .title { color: #fff; }
.logo-text .title .amp { color: var(--brand-600); }
.logo-text .subtitle {
  margin-top: .25rem;
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent-600);
}
.dark .logo-text .subtitle { color: var(--accent-400); }

@media (min-width: 1024px) {
  .logo-text .title { font-size: .95rem; }
  .logo-text .subtitle { font-size: .7rem; }
}

/* Primary nav */
.primary-nav {
  display: none;
  align-items: center;
  gap: .125rem;
}
@media (min-width: 1024px) {
  .primary-nav { display: flex; }
}

.primary-nav a {
  position: relative;
  border-radius: var(--radius-full);
  padding: .5rem .625rem;
  font-size: .82rem;
  font-weight: 500;
  color:#fff!important;
  transition: color .25s;
  white-space: nowrap;
}
.scrolled .primary-nav a {color:#475569!important;}
@media (min-width: 1280px) {
  .primary-nav a { padding: .5rem .875rem; font-size: .875rem; }
}
.dark .primary-nav a { color: var(--slate-300); }
.primary-nav a:hover { color: var(--brand-700); }
.dark .primary-nav a:hover { color: #fff; }

.primary-nav a.active { color: var(--brand-700); }
.dark .primary-nav a.active { color: var(--brand-300); }

.primary-nav a.active::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
}

/* Header controls */
.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.header-icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226,232,240,.80);
  background: rgba(255,255,255,.70);
  color: var(--slate-700);
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
}
.dark .header-icon-btn {
  border-color: var(--border);
  background: rgba(255,255,255,.05);
  color: var(--slate-200);
}
.header-icon-btn:hover {
  color: var(--brand-600);
  box-shadow: var(--shadow-md);
}

.header-cta {
  display: none;
}
@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

/* Mobile toggle */
.mobile-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(226,232,240,.80);
  background: rgba(255,255,255,.70);
  color: var(--slate-800);
  font-size: 1rem;
  cursor: pointer;
  transition: color .25s;
}
.dark .mobile-toggle {
  border-color: var(--border);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.mobile-toggle:hover { color: var(--brand-600); }

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* Mobile drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15,23,42,.40);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  width: 82%;
  max-width: 22rem;
  background: #fff;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.dark .mobile-drawer {
  background: var(--slate-950);
  box-shadow: 0 0 0 1px var(--border);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-close {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--slate-700);
  font-size: 1rem;
  cursor: pointer;
}
.dark .mobile-close { color: #fff; }

.mobile-nav {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav a {
  border-radius: var(--radius-lg);
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: all .25s;
}
.dark .mobile-nav a { color: var(--slate-300); }
.mobile-nav a:hover {
  background: var(--slate-50);
  color: var(--brand-700);
}
.dark .mobile-nav a:hover { background: rgba(255,255,255,.05); }
.mobile-nav a.active {
  background: var(--brand-50);
  color: var(--brand-700);
}
.dark .mobile-nav a.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.mobile-drawer-footer { margin-top: auto; padding-top: 1.5rem; }

body.mobile-open { overflow: hidden; }

/* ---------------------------------------------------------------------------
   6. HERO SECTION
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,6,23,.90), rgba(2,6,23,.70), rgba(15,23,42,.40)),
              linear-gradient(to top, rgba(2,6,23,.85), transparent, rgba(2,6,23,.30));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: 8rem 0;
}
@media (min-width: 640px) {
  .hero-content { padding: 9rem 0; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  padding: .375rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #fff;
}
.hero-badge .pulse-dot {
  display: flex;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--accent-400);
  position: relative;
}
.hero-badge .pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent-400);
  animation: ping 1.4s infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: .7; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
  margin-top: 1.5rem;
  color: #fff;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-300), #7dd3fc, var(--accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(226,232,240,.90);
  max-width: 40rem;
}
@media (min-width: 640px) {
  .hero-desc { font-size: 1.125rem; }
}
.hero-desc strong { color: #fff; font-weight: 600; }

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.hero-social-proof {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
}
.avatar-stack span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.70);
  background: linear-gradient(135deg, var(--brand-400), var(--accent-400));
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.avatar-stack span + span { margin-left: -.75rem; }

.hero-stars { color: #fbbf24; display: flex; gap: .25rem; font-size: .875rem; }
.hero-trust { font-size: .75rem; color: rgba(203,213,225,.90); margin-top: .125rem; }
.hero-trust strong { color: #fff; font-weight: 600; }

/* Floating stat cards */
.hero-cards {
  position: absolute;
  bottom: 8.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: none;
}
@media (min-width: 1024px) { .hero-cards { display: block; } }

.hero-cards-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.float-card {
  display: flex;
  width: 12.5rem;
  align-items: center;
  gap: .75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.40);
  padding: 1rem;
  color: var(--slate-900);
  box-shadow: var(--shadow-xl);
  transition: transform .4s;
}
.float-card .icon-box-sm {
    flex-shrink: 0;
    padding: 10px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.float-card .fc-label {
  font-size: .7rem;
  font-weight: 500;
  color: var(--slate-600);
  margin: 0PX;  
}
.float-card .fc-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  margin: 0PX;
}

.float-card:nth-child(1) { animation: floatA 6s ease-in-out infinite; }
.float-card:nth-child(2) { animation: floatA 8.5s ease-in-out infinite; }
.float-card:nth-child(3) { animation: floatA 6s ease-in-out infinite .8s; }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Hero blob decorations */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  pointer-events: none;
}
.hero-blob-1 {
  left: -6rem;
  top: 33%;
  width: 18rem;
  height: 18rem;
  background: var(--brand-500);
  animation: blob 16s ease-in-out infinite;
}
.hero-blob-2 {
  right: 2.5rem;
  top: 5rem;
  width: 16rem;
  height: 16rem;
  background: var(--accent-500);
  animation: blob 16s ease-in-out infinite 3s;
}
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-24px) scale(1.06); }
  66%      { transform: translate(-22px,16px) scale(.96); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  color: rgba(255,255,255,.70);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  transition: color .3s;
}
.scroll-cue:hover { color: #fff; }
.scroll-cue i { animation: bounce 1.4s infinite; }
@media (min-width: 1024px) {
  .scroll-cue { display: flex; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------------------------------------------------------------------------
   7. ABOUT SECTION
   --------------------------------------------------------------------------- */
.about-section { position: relative; overflow: hidden; }
.about-section .about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-section .about-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.about-image-wrapper { position: relative; }
.about-image-wrapper .decoration-blob {
  position: absolute;
  left: -1rem;
  top: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
  opacity: .20;
  filter: blur(40px);
  pointer-events: none;
}
.about-image-wrapper .about-img {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
}
.about-image-wrapper .about-img img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 640px) {
  .about-image-wrapper .about-img img { aspect-ratio: 5/5; }
}
.about-image-wrapper .about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,38,86,.30), transparent);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.50);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
@media (min-width: 640px) {
  .about-badge { left: -1.5rem; }
}

.about-features {
  display: grid;
  gap: 0rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .about-features { grid-template-columns: 1fr 1fr; }
}

.about-feature-card {
  display: flex;
  gap: .75rem;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background: transparent;
  padding: 1rem;
  transition: all .3s;
  height: 100%;
}
.about-feature-card:hover {
  border-color: var(--border);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.dark .about-feature-card:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.about-feature-card h3 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--slate-900);
}
.dark .about-feature-card h3 { color: #fff; }
.about-feature-card p {
  margin-top: .25rem;
  font-size: .75rem;
  color: var(--slate-500);
  line-height: 1.5;
	margin-bottom:0px;
}

/* Stats band */
.stats-band {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: var(--border);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 1024px) {
  .stats-band { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
.dark .stat-item { background: var(--slate-950); }
.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .stat-label {
  margin-top: .25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-500);
}

/* ---------------------------------------------------------------------------
   8. SERVICES SECTION
   --------------------------------------------------------------------------- */
.services-section {
  position: relative;
  background: var(--bg-alt);
}
.dark .services-section {
  background: rgba(15,23,42,.40);
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-300), transparent);
}
.dark .services-section::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.dark .service-card { background: var(--slate-900); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(29,96,242,.10);
}
.service-card .service-glow {
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.service-card:hover .service-glow { opacity: .20; }

.service-card .icon-box { transition: transform .3s; }
.service-card:hover .icon-box { transform: scale(1.10) rotate(3deg); }

.service-card h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}
.dark .service-card h3 { color: #fff; }
.service-card .service-desc {
  margin-top: .75rem;
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.7;
}
.service-card .service-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--brand-600);
  transition: color .25s;
}
.service-card .service-link:hover { color: var(--accent-600); }
.service-card .service-link i {
  transition: transform .3s;
}
.service-card:hover .service-link i { transform: translateX(6px); }

.service-card .service-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .3s;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}
.service-card:hover .service-bar { transform: scaleX(1); }

/* ---------------------------------------------------------------------------
   9. TREATMENTS SECTION
   --------------------------------------------------------------------------- */
.treatments-section { position: relative; overflow: hidden; }

.treatment-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 2.5rem;
}

.treatment-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: #fff;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-600);
  cursor: pointer;
  transition: all .3s;
}
.dark .treatment-tab {
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--slate-300);
}
.treatment-tab:hover {
  border-color: var(--brand-300);
  color: var(--brand-700);
}
.dark .treatment-tab:hover { color: #fff; }

.treatment-tab.active {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: #fff;
  border-color: var(--brand-600);
  box-shadow: 0 4px 16px rgba(29,96,242,.25);
}

.treatment-panel {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(2,6,23,.05);
}
.dark .treatment-panel { background: var(--slate-900); }
@media (min-width: 640px) { .treatment-panel { padding: 2.5rem; } }
@media (min-width: 1024px) { .treatment-panel { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.treatment-content { transition: opacity .4s; }
.treatment-content h3 {
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--slate-900);
}
.dark .treatment-content h3 { color: #fff; }
.treatment-content .treatment-desc {
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--slate-500);
}

.treatment-points {
  margin-top: 1.5rem;
  display: grid;
  gap: .75rem;
}
@media (min-width: 640px) {
  .treatment-points { grid-template-columns: 1fr 1fr; }
}
.treatment-point {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .875rem;
  color: var(--slate-700);
}
.dark .treatment-point { color: var(--slate-300); }
.treatment-point i {
  margin-top: .125rem;
  color: var(--accent-500);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Treatment visual */
.treatment-visual {
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600), var(--accent-600));
  padding: 2rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.treatment-visual .vis-glow-1 {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  filter: blur(32px);
  pointer-events: none;
}
.treatment-visual .vis-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(110,231,183,.20);
  filter: blur(32px);
  pointer-events: none;
}
.treatment-visual h4 {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.treatment-visual .vis-desc {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.80);
}

.vis-stats {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.vis-stat-card {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 0.7rem;
}
.vis-stat-card .vs-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin:0px;
}
.vis-stat-card .vs-label {
  margin-top: .25rem;
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  margin:0px;
}

.vis-feature {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 0.7rem;
}
.vis-feature .vf-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  flex-shrink: 0;
}
.vis-feature p {
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
}

/* Treatment panel fade animation */
.treatment-panel[data-visible="true"] .treatment-content,
.treatment-panel[data-visible="true"] .treatment-visual {
  animation: fadeUp .5s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------------
   10. WHY CHOOSE SECTION
   --------------------------------------------------------------------------- */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.dark .why-section { background: rgba(15,23,42,.40); }

.why-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.why-image-wrap { position: relative; }
.why-image-wrap .why-img {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
}
.why-image-wrap .why-img img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}

.why-float-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 1rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.50);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
@media (min-width: 640px) {
  .why-float-badge { left: 2rem; right: 4rem; }
}

.why-badge-corner {
  position: absolute;
  left: -1rem;
  top: -1rem;
  display: none;
  align-items: center;
  gap: .5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.50);
  padding: .75rem 1rem;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 640px) {
  .why-badge-corner { display: flex; }
}

.why-features-grid {
  display: grid;
  gap: 0rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .why-features-grid { grid-template-columns: 1fr 1fr; }
}

.why-feature {
  display: flex;
  gap: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  padding: .75rem;
  transition: all .3s;
  height: 100%;
}
.why-feature:hover {
  border-color: var(--border);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.dark .why-feature:hover {
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.why-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}
.dark .why-feature h3 { color: #fff; }
.why-feature p {
  margin-top: .25rem;
  font-size: .675rem;
  color: var(--slate-500);
  line-height: 1.6;
	margin-bottom:0px;
}

/* ---------------------------------------------------------------------------
   11. DOCTOR SECTION
   --------------------------------------------------------------------------- */
.doctor-section { position: relative; overflow: hidden; }

.doctor-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .doctor-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.doctor-card-wrap { margin: 0 auto; }
.doctor-card-outer {
  position: relative;
}
.doctor-card-outer .card-glow {
  position: absolute;
  inset: -.75rem;
  z-index: -1;
  border-radius: 2.4rem;
  background: linear-gradient(135deg, rgba(29,96,242,.20), rgba(16,185,129,.20));
  filter: blur(24px);
  pointer-events: none;
}
.doctor-card-inner {
  overflow: hidden;
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow-xl);
}
.dark .doctor-card-inner { background: var(--slate-900); }

.doctor-card-inner .doctor-img-wrap {
  position: relative;
}
.doctor-card-inner .doctor-img-wrap img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
}
.doctor-card-inner .doctor-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(32 100 243), rgb(65 77 94 / 46%), #ff34340d);
}

.doctor-card-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
	z-index:666;
}
.doctor-card-info .doc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.doctor-card-info .doc-title {
  font-size: .875rem;
  font-weight: 500;
  color: var(--brand-200);
}
.doctor-socials {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}
.doctor-socials a {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 1rem;
  transition: all .3s;
}
.doctor-socials a:hover {
  background: #fff;
  color: var(--brand-600);
}

/* Credentials pills */
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

/* Skill bars */
.skills-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: rgba(248,250,252,.60);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dark .skills-wrapper { background: rgba(255,255,255,.05); }

.skill-bar-item .skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.dark .skill-bar-item .skill-header { color: var(--slate-200); }
.skill-bar-item .skill-pct { color: var(--brand-600); }
.dark .skill-bar-item .skill-pct { color: var(--brand-400); }

.skill-bar-track {
  margin-top: .5rem;
  height: .625rem;
  width: 100%;
  border-radius: var(--radius-full);
  background: var(--slate-200);
  overflow: hidden;
}
.dark .skill-bar-track { background: rgba(255,255,255,.10); }
.skill-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--brand-600), var(--brand-500), var(--accent-500));
  width: 0%;
  transition: width 1.4s cubic-bezier(.25,.46,.45,.94);
}
.skill-bar-fill.animated { /* JS applies width inline */ }

/* ---------------------------------------------------------------------------
   12. APPOINTMENT SECTION
   --------------------------------------------------------------------------- */
.appointment-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700), var(--accent-700));
}

.appt-glow-1 {
  position: absolute;
  left: -5rem;
  top: 2.5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  filter: blur(80px);
  pointer-events: none;
}
.appt-glow-2 {
  position: absolute;
  right: -2.5rem;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(110,231,183,.20);
  filter: blur(80px);
  pointer-events: none;
}

.appt-grid {
  display: grid;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .appt-grid { grid-template-columns: 0.95fr 1.05fr; gap: 3.5rem; }
}

.appt-info { color: #fff; }

.appt-benefits {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.appt-benefit {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.90);
}
.appt-benefit i { color: var(--accent-300); font-size: 1.25rem; flex-shrink: 0; }

.appt-info-cards {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .appt-info-cards { grid-template-columns: 1fr 1fr; }
}
.appt-info-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  padding: 1.25rem;
}
.appt-info-card .aic-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.appt-info-card .aic-head.accent { color: var(--accent-300); }
.appt-info-card .aic-head.amber  { color: #fbbf24; }
.appt-info-card .aic-value {
  margin-top: .5rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.appt-info-card .aic-sub {
  color: rgba(255,255,255,.80);
}

.appt-contact-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap-x: 1.5rem;
  gap-y: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.90);
}
.appt-contact-row a { color: rgba(255,255,255,.90); }
.appt-contact-row a:hover { color: #fff; }
.appt-contact-row i { color: var(--accent-300); }

/* Form card */
.appt-form-card {
  border-radius: 2rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 25px 80px rgba(0,0,0,.20);
}
.dark .appt-form-card { background: var(--slate-900); }
@media (min-width: 640px) { .appt-form-card { padding: 2rem; } }

.appt-form-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.appt-form-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
}
.dark .appt-form-header h3 { color: #fff; }
.appt-form-header p {
  font-size: .75rem;
  color: var(--slate-500);
}

/* Form fields */
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  margin-bottom: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
}
.dark .form-field label { color: var(--slate-200); }

.input-wrapper { position: relative; }
.input-wrapper i,
.input-wrapper .input-icon {
  position: absolute;
  left: .875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  font-size: 1rem;
  pointer-events: none;
  transition: color .25s;
}
.input-wrapper:focus-within i,
.input-wrapper:focus-within .input-icon { color: var(--brand-600); }

.form-input {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(248,250,252,.80);
  padding: .75rem 1rem .75rem 2.75rem;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate-800);
  outline: none;
  transition: all .25s;
}
.dark .form-input {
  background: var(--slate-900);
  border-color: rgba(255,255,255,.10);
  color: #fff;
}
.form-input::placeholder { color: var(--slate-400); }
.form-input:focus {
  border-color: var(--brand-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29,96,242,.10);
}
.dark .form-input:focus { background: var(--slate-900); }

textarea.form-input { resize: none; min-height: 5rem; }

.form-grid-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.submit-btn {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
  padding: .875rem 1.5rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 4px 20px rgba(29,96,242,.30);
  transition: all .3s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29,96,242,.40);
}
.form-privacy {
  text-align: center;
  margin-top: .5rem;
  font-size: .75rem;
  color: var(--slate-400);
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}
.form-success .success-icon {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--accent-100);
  color: var(--accent-600);
  font-size: 2.5rem;
}
.dark .form-success .success-icon {
  background: rgba(16,185,129,.15);
  color: var(--accent-400);
}
.form-success h3 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}
.dark .form-success h3 { color: #fff; }
.form-success p {
  margin-top: .5rem;
  max-width: 24rem;
  font-size: .875rem;
  color: var(--slate-500);
}

/* ---------------------------------------------------------------------------
   13. TESTIMONIALS
   --------------------------------------------------------------------------- */
.testimonials-section { position: relative; overflow: hidden; }

.testimonials-swiper {
  margin-top: 3.5rem;
  padding-bottom: 1rem;
  overflow: visible;
}

.testimonial-card {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dark .testimonial-card { background: var(--slate-900); }
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-quote {
  font-size: 2rem;
  color: var(--brand-200);
  opacity: .5;
}
.dark .testimonial-quote { color: rgba(255,255,255,.10); }
.testimonial-stars {
  display: flex;
  gap: .125rem;
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-text {
  margin-top: 1.25rem;
  flex: 1;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--slate-600);
}
.dark .testimonial-text { color: var(--slate-300); }

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-100);
}
.dark .testimonial-author img { border-color: rgba(255,255,255,.10); }
.testimonial-author .author-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--slate-900);
  margin:0px;
}
.dark .testimonial-author .author-name { color: #fff; }
.testimonial-author .author-loc {
  font-size: .75rem;
  color: var(--slate-500);
  margin:5px 0px;
}

/* Swiper pagination */
.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
  gap: .4rem;
}
.testimonials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--slate-300);
  opacity: 1;
  border-radius: 9999px;
  transition: all .35s;
}
.dark .testimonials-swiper .swiper-pagination-bullet { background: var(--slate-600); }
.testimonials-swiper .swiper-pagination-bullet-active {
  width: 30px;
  background: linear-gradient(90deg, var(--brand-500), var(--accent-500));
}

/* ---------------------------------------------------------------------------
   14. FAQ SECTION
   --------------------------------------------------------------------------- */
.faq-section {
  position: relative;
  background: var(--bg-alt);
}
.dark .faq-section { background: rgba(15,23,42,.40); }

.faq-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
}

.faq-cta-card {
  margin-top: 2rem;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--brand-700), var(--accent-700));
  padding: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.faq-cta-card h3 { color: #fff; font-size: 1.125rem; font-weight: 700; }
.faq-cta-card p {
  margin-top: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
}
.faq-cta-btns {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #fff;
  transition: all .3s;
}
.dark .faq-item { background: var(--slate-950); }
.faq-item.open {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-lg);
}
.dark .faq-item.open { border-color: rgba(255,255,255,.15); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}
@media (min-width: 640px) { .faq-question { padding: 1rem 1.5rem; } }

.faq-question-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.faq-num {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all .3s;
  background: var(--brand-50);
  color: var(--brand-600);
}
.dark .faq-num {
  background: rgba(255,255,255,.10);
  color: var(--brand-300);
}
.faq-item.open .faq-num {
  background: var(--brand-600);
  color: #fff;
}

.faq-q-text {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-900);
}
@media (min-width: 640px) { .faq-q-text { font-size: 1rem; } }
.dark .faq-q-text { color: #fff; }

.faq-chevron {
  color: var(--brand-600);
  font-size: 1rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.dark .faq-chevron { color: var(--brand-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out, opacity .3s;
  opacity: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem 3.5rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--slate-500);
}
@media (min-width: 640px) {
  .faq-answer-inner { padding: 0 1.5rem 1.25rem 4.25rem; }
}
.dark .faq-answer-inner { color: var(--slate-400); }

/* ---------------------------------------------------------------------------
   15. CONTACT SECTION
   --------------------------------------------------------------------------- */
.contact-section { position: relative; overflow: hidden; }

.contact-cards {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  height: 100%;
}
.dark .contact-card { background: var(--slate-900); }
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card .cc-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-400);
}
.contact-card .cc-value {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-800);
  word-break: break-word;
}
.dark .contact-card .cc-value { color: var(--slate-100); }

.contact-bottom {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-bottom { grid-template-columns: 1fr 1fr; }
}

.contact-map {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
}
.contact-map iframe {
  width: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(0.2);
}

.contact-form-card {
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}
.dark .contact-form-card { background: var(--slate-900); }
@media (min-width: 640px) { .contact-form-card { padding: 2rem; } }

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}
.dark .contact-form-card h3 { color: #fff; }
.contact-form-card .cf-sub {
  margin-top: .25rem;
  font-size: .875rem;
  color: var(--slate-500);
}

.contact-form-body { margin-top: 1.5rem; }

.contact-bottom-bar {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}
.contact-bottom-bar .cb-user {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 1rem;
}
.dark .contact-bottom-bar .cb-user {
  background: rgba(255,255,255,.10);
  color: var(--brand-300);
}
.contact-bottom-bar p {
  font-size: .875rem;
  color: var(--slate-500);
}
.contact-bottom-bar p a {
  font-weight: 600;
  color: var(--brand-600);
}
.dark .contact-bottom-bar p a { color: var(--brand-400); }

.contact-socials {
  margin-left: auto;
  display: flex;
  gap: .5rem;
}
.contact-socials a {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: 1rem;
  transition: all .3s;
}
.dark .contact-socials a {
  background: rgba(255,255,255,.10);
  color: var(--slate-200);
}
.contact-socials a:hover {
  background: var(--brand-600);
  color: #fff;
}

/* ---------------------------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--slate-950);
  color: var(--slate-300);
}

.footer-glow-1 {
  position: absolute;
  left: -5rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(29,96,242,.20);
  filter: blur(80px);
  pointer-events: none;
}
.footer-glow-2 {
  position: absolute;
  right: -5rem;
  bottom: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(16,185,129,.15);
  filter: blur(80px);
  pointer-events: none;
}

.footer-main {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .footer-main { grid-template-columns: 1.1fr 0.6fr 0.8fr 0.8fr; gap: 2.5rem; }
}

.footer-brand p {
  margin-top: 1.25rem;
  max-width: 20rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--slate-400);
}

.footer-contact-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  font-size: .875rem;
}
.footer-contact-list a,
.footer-contact-list span {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--slate-400);
  transition: color .25s;
}
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list i { color: var(--accent-400); font-size: 1rem; }

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  gap: .5rem;
}
.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  color: var(--slate-300);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,.10);
  transition: all .3s;
}
.footer-socials a:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
  color: #fff;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
}

.footer-links {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .875rem;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--slate-400);
  transition: color .25s;
}
.footer-links a:hover { color: #fff; }
.footer-links a .fl-bar {
  width: 0;
  height: 1px;
  background: var(--accent-400);
  transition: width .3s;
}
.footer-links a:hover .fl-bar { width: 1rem; }

.footer-services {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .875rem;
}
.footer-services a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--slate-400);
  transition: color .25s;
}
.footer-services a:hover { color: #fff; }
.footer-services a i { color: var(--brand-400); font-size: 1rem; }

.footer-hours-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  font-size: .875rem;
}
.footer-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-hours-row span:first-child { color: var(--slate-400); }
.footer-hours-row span:last-child { color: var(--slate-300); }
.footer-hours-row .closed { color: #f87171; }

.footer-newsletter { margin-top: 1.75rem; }
.footer-newsletter h3 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
}

.newsletter-form {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  padding: .375rem;
  border: 1px solid rgba(255,255,255,.10);
}
.newsletter-form input {
  width: 100%;
  border: none;
  background: transparent;
  padding: .5rem .75rem;
  font-family: var(--font-body);
  font-size: .875rem;
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--slate-500); }
.newsletter-form button {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform .3s;
}
.newsletter-form button:hover { transform: scale(1.10); }

.newsletter-success {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(16,185,129,.10);
  padding: .75rem 1rem;
  font-size: .875rem;
  color: var(--accent-300);
  border: 1px solid rgba(16,185,129,.20);
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 1.5rem 0;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copy {
  text-align: center;
  font-size: .75rem;
  color: var(--slate-500);
}
@media (min-width: 640px) { .footer-copy { text-align: left; } }

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .75rem;
  color: var(--slate-500);
}
.footer-legal a { color: var(--slate-500); }
.footer-legal a:hover { color: #fff; }

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.05);
  padding: .375rem .75rem;
  font-size: .75rem;
  color: var(--slate-500);
  border: 1px solid rgba(255,255,255,.10);
  transition: all .3s;
}
.footer-back-top:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
}

/* ---------------------------------------------------------------------------
   17. FLOATING BUTTONS
   --------------------------------------------------------------------------- */
.float-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.float-whatsapp {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.30);
  transition: transform .3s;
}
.float-whatsapp:hover { transform: scale(1.10); color: #fff; }
.float-whatsapp .wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ping 1.4s infinite;
  opacity: .30;
  pointer-events: none;
}

.float-back-top {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--accent-600));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(29,96,242,.30);
  transition: all .3s;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  border: none;
  cursor: pointer;
}
.float-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-back-top:hover { transform: scale(1.10); }

/* ---------------------------------------------------------------------------
   18. SCROLL-REVEAL ANIMATIONS
   --------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------------
   19. DARK MODE TOGGLE ADJUSTMENTS
   --------------------------------------------------------------------------- */
.dark .site-header { border-bottom-color: rgba(255,255,255,.08); }
.dark .btn-ghost { color: var(--slate-200); }
.dark .btn-ghost:hover { background: rgba(255,255,255,.10); }
.dark .eyebrow { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.10); color: var(--brand-200); }
.dark .about-feature-card h3,
.dark .why-feature h3,
.dark .service-card h3 { color: #fff; }
.dark .section-heading h2 { color: #fff; }
.dark .faq-q-text { color: #fff; }
.dark .cc-value { color: var(--slate-100); }

/* ---------------------------------------------------------------------------
   20. RESPONSIVE PRINT
   --------------------------------------------------------------------------- */
@media print {
  .site-header, .float-buttons, .footer-back-top,
  .hero-cards, .scroll-cue { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 2rem 0; }
}
