/* ============================================================
   Dr. Mirazul Aziz, BDS — Premium Clinical Dental System
   Medical Deep Blue × Professional Teal & Soft Slate
   ============================================================ */

/* ---------------- TOKENS & SYSTEM ---------------- */
:root {
  /* Brand Medical Palette */
  --primary: #0284c7;        /* Medical Sky/Ocean Blue */
  --primary-dark: #0369a1;   /* Deep Ocean Blue */
  --primary-navy: #0f172a;   /* Clinical Navy / Dark Slate */
  --primary-light: #f0f9ff;  /* Ice Blue Soft Tint */

  --secondary: #0d9488;      /* Medical Teal */
  --secondary-light: #ccfbf1;/* Soft Mint Tint */
  --accent: #2563eb;         /* Vibrant Cobalt Accent */
  
  --success: #25D366;        /* WhatsApp Brand Green */
  --success-dark: #128C7E;   /* Deep WhatsApp Teal */
  --warning: #f59e0b;        /* Star Gold */
  --danger: #ef4444;

  /* Neutrals */
  --bg-page: #ffffff;
  --bg-subtle: #f8fafc;      /* Soft Clinical Gray */
  --bg-card: #ffffff;
  --text-main: #0f172a;      /* Slate 900 */
  --text-muted: #475569;     /* Slate 600 */
  --text-light: #64748b;     /* Slate 500 */
  --border: #e2e8f0;         /* Soft Gray Border */
  --border-focus: #38bdf8;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 22px 40px -12px rgba(2, 132, 199, 0.22);
  --shadow-wa: 0 8px 24px rgba(37, 211, 102, 0.35);

  /* Typography */
  --ff-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ff-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1280px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------- RESET ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  overflow-y: scroll;
  width: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-main);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
::selection { background: var(--primary-light); color: var(--primary-dark); }

/* ---------------- PROMINENT THEME COLOR SCROLLBAR (WHOLE SITE) ---------------- */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0284c7 0%, #0d9488 100%);
  border-radius: 9999px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0369a1 0%, #0f766e 100%);
}

/* Firefox Support for Whole Site */
html, body {
  scrollbar-width: auto;
  scrollbar-color: #0284c7 #f1f5f9;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ---------------- VIBRANT TOP TICKER ---------------- */
.top-ticker {
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 35%, #0d9488 75%, #0284c7 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.top-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #f1f5f9;
}
.ticker-item b { color: #ffffff; font-weight: 700; }
.ticker-item .badge-pill {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #ffffff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
}
.ticker-item svg { width: 16px; height: 16px; color: #38bdf8; flex: none; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; justify-content: center; white-space: normal; }
}

/* ---------------- TYPOGRAPHY & HEADINGS ---------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-main);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(2, 132, 199, 0.25);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}
.eyebrow.teal { background: var(--secondary-light); color: var(--secondary); border-color: rgba(13, 148, 136, 0.25); }
.eyebrow.white { background: rgba(255, 255, 255, 0.18); color: #ffffff; border-color: rgba(255, 255, 255, 0.35); }

.h1 { font-size: clamp(2.4rem, 4.8vw, 4.1rem); font-weight: 800; letter-spacing: -0.03em; }
.h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); font-weight: 700; margin-bottom: 0.8rem; }
.h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 700; }

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 64ch;
}
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

.sec { padding: clamp(4.5rem, 8vw, 7.5rem) 0; position: relative; }
.sec-head { max-width: 720px; margin-bottom: 3.5rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--ff-main);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: var(--bg-card);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  line-height: 1.2;
  box-sizing: border-box;
  max-width: 100%;
}

.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.2s var(--ease); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0284c7 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.45);
}

.btn-secondary {
  background: var(--primary-navy);
  color: #ffffff;
}
.btn-secondary:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-teal {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f766e 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35);
}
.btn-teal:hover {
  background: #0f766e;
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-wa);
}
.btn-wa:hover {
  background: linear-gradient(135deg, #1fbe59 0%, #0e786c 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--border);
  color: var(--primary-navy);
}
.btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost { background: transparent; color: var(--primary-navy); box-shadow: none; }
.btn-ghost:hover { background: var(--primary-light); color: var(--primary); }

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn-full { width: 100%; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------------- ULTRA MODERN NAVIGATION HEADER ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  width: 100%;
}
.nav.scrolled {
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  width: 100%;
}

/* Brand Logo Element */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--primary-navy);
  line-height: 1.1;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  flex: none;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.06); }
.brand-mark svg { width: 24px; height: 24px; }

.brand-text { display: flex; flex-direction: column; }
.brand-text .title-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brand-text .title-row b { font-weight: 800; color: var(--primary-navy); }
.brand-text .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  display: inline-block;
}
.brand-text small {
  font-family: var(--ff-main);
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

/* Desktop Floating Pill Navigation Bar */
.nav-pill-bar {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: var(--radius-full);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}
.nav-pill-bar a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-pill-bar a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
}
.nav-pill-bar a.active {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  font-weight: 700;
}

/* Desktop Action Cluster */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-navy);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: #ffffff;
  transition: all 0.2s var(--ease);
}
.nav-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--primary); }

/* Hamburger Button */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-subtle);
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex: none;
}
.burger:hover { background: var(--primary-light); border-color: var(--border-focus); }
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary-navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
  top: 50%;
}
.burger span:nth-child(1) { transform: translateY(-6px); }
.burger span:nth-child(3) { transform: translateY(6px); }
.burger.open span:nth-child(1) { transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg); }

/* Page Scroll Lock when Full Screen Menu is Open */
html.menu-open,
body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none !important;
}

/* Full Screen Mobile Navigation Drawer Overlay */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 1rem 1.25rem 3rem;
  box-shadow: none;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 999999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  display: flex;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
  flex: none;
}
.drawer-head-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
}

.drawer-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  color: var(--primary-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.2s ease;
  flex: none;
}
.drawer-close-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--border-focus);
}

.drawer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  flex: none;
}
.drawer-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  background: var(--bg-subtle);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.drawer-menu-list a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: rgba(2, 132, 199, 0.2);
}
.drawer-menu-list a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
  font-weight: 700;
}
.drawer-menu-list a svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex: none;
}

.drawer-footer-actions {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  flex: none;
}

.drawer-timing-box {
  background: var(--primary-light);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.drawer-timing-box svg { width: 20px; height: 20px; color: var(--primary); flex: none; }

/* ---------------- VIBRANT HERO SECTION ---------------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 4.5vw, 4.2rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  background: radial-gradient(circle at 85% 15%, rgba(56, 189, 248, 0.16) 0%, rgba(255,255,255,0) 60%),
              radial-gradient(circle at 12% 85%, rgba(13, 148, 136, 0.12) 0%, rgba(255,255,255,0) 50%),
              linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-eyebrow { margin-bottom: 0.85rem; }
.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); margin-bottom: 1rem; line-height: 1.16; }

/* Animated Smile Arc Underline */
.smile-wrap {
  position: relative;
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 800;
  white-space: nowrap;
}
.smile-arc-svg {
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 24px;
  overflow: visible;
  pointer-events: none;
}
.smile-arc-svg path {
  clip-path: inset(0 100% 0 0);
  animation: drawSmile 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
@keyframes drawSmile {
  0% { clip-path: inset(0 100% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.hero p.sub {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  max-width: 56ch;
  line-height: 1.58;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
}
.chip svg { width: 16px; height: 16px; color: var(--secondary); flex: none; }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-photo-wrap {
  position: relative;
  z-index: 2;
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.22);
  border: 3px solid #ffffff;
}

.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--primary-navy);
}
.float-card small { display: block; font-weight: 500; font-size: 0.74rem; color: var(--text-light); }
.float-card .ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  flex: none;
}
.doctor-rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}
.doctor-rating-row .stars { color: var(--warning); letter-spacing: 1px; }
.doctor-rating-row .sep { color: var(--text-light); }

.fc1 { top: 6%; left: -6%; }
.fc2 { bottom: 8%; right: -6%; }
.fc2 .ico { background: var(--secondary-light); color: var(--secondary); }

/* ---------------- VIBRANT STATS HIGHLIGHT BELT ---------------- */
.stats-bar {
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 40%, #0d9488 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.8rem 0;
  position: relative;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.15);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stat-item {
  position: relative;
  text-align: center;
  padding: 1.2rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: #38bdf8;
}
.stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.6rem;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.stat-icon svg { width: 22px; height: 22px; }

.stat-item b {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(56, 189, 248, 0.3);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item span {
  font-weight: 600;
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* ---------------- IMAGE SLOTS (Professional Placeholders) ---------------- */
.imgslot {
  position: relative;
  aspect-ratio: var(--w, 4) / var(--h, 3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.imgslot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.imgslot:hover img { transform: scale(1.04); }

.imgslot.noimg {
  background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--primary-light) 100%);
  border: 2px dashed var(--border-focus);
}
.imgslot.noimg::after {
  content: "📷  " attr(data-size);
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--ff-main);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.8vw, 1.1rem);
  color: var(--primary-dark);
  letter-spacing: 0.02em;
}
.slot-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.82);
  color: #ffffff;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.imgslot:not(.noimg) .slot-tag { opacity: 0; transition: opacity 0.2s; }
.imgslot:not(.noimg):hover .slot-tag { opacity: 1; }

/* ---------------- ABOUT SECTION ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.about-photo { position: relative; }
.about-badge {
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: 4;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge b {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  line-height: 1;
  display: block;
  color: var(--primary-light);
}
.about-badge small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.check-list {
  margin: 1.8rem 0;
  display: grid;
  gap: 0.9rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.98rem;
}
.check-list li svg {
  width: 22px;
  height: 22px;
  flex: none;
  background: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  padding: 3px;
  margin-top: 2px;
}

/* ---------------- SERVICES & CARD GRIDS ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2, 132, 199, 0.3);
}

.card .c-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  transition: transform 0.3s var(--ease);
}
.card:hover .c-ico {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}
.card .c-ico svg { width: 28px; height: 28px; }

.card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--primary-navy); }
.card p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.6; flex-grow: 1; }

.card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
}
.card .more svg { width: 16px; height: 16px; transition: transform 0.2s; }
.card:hover .more svg { transform: translateX(4px); }

.card .num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--border);
  opacity: 0.6;
}

/* ---------------- TREATMENT PROCESS ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.4rem;
  position: relative;
  transition: transform 0.25s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step .n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------------- TESTIMONIALS MARQUEE ---------------- */
.t-marquee {
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.t-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollx 45s linear infinite;
}
.t-marquee:hover .t-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .t-track { animation: none; flex-wrap: wrap; justify-content: center; } }

.t-card {
  width: 360px;
  flex: none;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
}
.t-card .stars { color: var(--warning); font-size: 1rem; letter-spacing: 2px; }
.t-card p { margin: 0.8rem 0 1.2rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.t-who { display: flex; align-items: center; gap: 0.8rem; }
.t-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.t-who b { display: block; font-family: var(--ff-display); font-size: 0.98rem; color: var(--primary-navy); }
.t-who small { color: var(--text-light); font-size: 0.82rem; }

/* ---------------- GALLERY & LIGHTBOX ---------------- */
.gal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gal-filters button {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: #ffffff;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease);
}
.gal-filters button:hover { border-color: var(--primary); color: var(--primary); }
.gal-filters button.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.4rem;
}
.gal-item { grid-column: span 4; transition: opacity 0.35s, transform 0.35s; }
.gal-item.wide { grid-column: span 6; }
.gal-item.tall .imgslot { aspect-ratio: 3/4; }
.gal-item.hide { display: none; }
.gal-item .imgslot { cursor: pointer; }

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  place-items: center;
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox .lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox .lb-close:hover { background: rgba(255, 255, 255, 0.4); }

/* ---------------- CONTACT & FORM ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 3vw, 2.5rem);
}
.panel.navy {
  background: var(--primary-navy);
  color: #ffffff;
  border: none;
}
.panel.navy h3 { color: #ffffff; }

.c-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.panel.navy .c-item { border-color: rgba(255, 255, 255, 0.12); }
.c-item:last-child { border-bottom: 0; }
.c-item .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex: none;
}
.panel.navy .c-item .ico {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
}
.c-item .ico svg { width: 22px; height: 22px; }
.c-item b { display: block; font-family: var(--ff-display); font-size: 1.05rem; margin-bottom: 0.2rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.closed { color: var(--danger); font-weight: 700; }
.panel.navy .closed { color: #fca5a5; }

/* Form Fields */
.field { margin-top: 1.2rem; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--ff-main);
  font-size: 0.98rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--text-main);
  transition: all 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-note svg { width: 16px; height: 16px; flex: none; }

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------------- CALLOUT BANNER ---------------- */
.band {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.band h2 { color: #ffffff; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.band h2 em { font-style: normal; color: #38bdf8; }
.band p { max-width: 58ch; margin: 0 auto 2rem; font-size: 1.1rem; color: #94a3b8; }
.band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------------- VIBRANT PAGE HEADER (Subpages) ---------------- */
.page-header {
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 40%, #0d9488 100%);
  color: #ffffff;
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.page-header::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.page-header h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.breadcrumb a { color: #38bdf8; transition: color 0.2s; }
.breadcrumb a:hover { color: #ffffff; }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.5); }

/* ---------------- FOOTER ---------------- */
footer {
  background: var(--primary-navy);
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.f-brand .brand { color: #ffffff; }
.f-brand p { margin-top: 1.2rem; font-size: 0.95rem; line-height: 1.6; max-width: 40ch; }

footer h4 { color: #ffffff; font-size: 1.08rem; margin-bottom: 1.2rem; }
footer li { margin-bottom: 0.7rem; }
footer li a { color: #94a3b8; font-size: 0.95rem; }
footer li a:hover { color: #38bdf8; }

.f-social { display: flex; gap: 0.75rem; margin-top: 1.4rem; }
.f-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}
.f-social a:hover { background: var(--primary); transform: translateY(-2px); }
.f-social svg { width: 18px; height: 18px; }

.f-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.88rem;
}
.f-bottom a { color: #38bdf8; font-weight: 600; }

/* ---------------- FLOATING WHATSAPP BUTTON ---------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}
.wa-float svg { width: 32px; height: 32px; fill: #ffffff; }

.top-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
}
.top-btn.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.top-btn svg { width: 20px; height: 20px; }

/* ---------------- REVEAL ANIMATIONS ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------- RESPONSIVE MEDIA QUERIES ---------------- */
@media (max-width: 1200px) {
  .container { padding-inline: 28px; }
  .nav-inner { padding-inline: 0; width: 100%; }
  .nav-pill-bar { display: none; }
  .burger { display: flex; }
  .nav-phone { display: none; }
  .nav-actions .btn-wa { display: none; }
}

@media (max-width: 980px) {
  .container { padding-inline: 24px; }
  .nav-inner { padding-inline: 4px; }
  .hero { padding: 2rem 0 2.2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.6rem; text-align: center; }
  .hero-visual { order: -1; }
  .hero-eyebrow { margin-bottom: 0.7rem; font-size: 0.8rem; }
  .hero h1 { font-size: clamp(1.9rem, 4.8vw, 2.7rem); margin-bottom: 0.8rem; }
  .hero p.sub { margin-bottom: 1.1rem; font-size: 0.98rem; margin-inline: auto; max-width: 52ch; }
  .hero-ctas { margin-bottom: 1.1rem; justify-content: center; gap: 0.75rem; }
  .hero-chips { justify-content: center; gap: 0.55rem; }
  .hero-photo-wrap { max-width: 280px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .card-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .gal-item, .gal-item.wide { grid-column: span 6; }
  .float-card { display: none; }
}

@media (max-width: 768px) {
  .container { padding-inline: 20px; }
  .nav-inner { padding: 0.65rem 4px; }
  .brand-text small { font-size: 0.68rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark svg { width: 20px; height: 20px; }
  .hero { padding: 1.6rem 0 1.8rem; }
  .hero-photo-wrap { max-width: 260px; }
  .stats-bar { padding: 1.6rem 0; }
}

@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .top-ticker { padding: 0.45rem 0; font-size: 0.78rem; }
  .nav-inner { padding: 0.6rem 4px; }
  .hero { padding: 1.25rem 0 1.5rem; }
  .hero-grid { gap: 1.2rem; }
  .hero-eyebrow { margin-bottom: 0.5rem; padding: 0.35rem 0.8rem; font-size: 0.74rem; }
  .hero h1 { font-size: clamp(1.55rem, 5.8vw, 1.95rem); margin-bottom: 0.65rem; line-height: 1.2; }
  .hero p.sub { font-size: 0.9rem; margin-bottom: 0.9rem; line-height: 1.48; max-width: 100%; }
  .hero-ctas { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; margin-bottom: 0.9rem; gap: 0.5rem; }
  .hero-ctas .btn { width: 100%; padding: 0.65rem 0.4rem; font-size: 0.82rem; white-space: nowrap; gap: 0.35rem; }
  .hero-ctas .btn svg { width: 15px; height: 15px; }
  .hero-chips { gap: 0.4rem; }
  .chip { padding: 0.32rem 0.75rem; font-size: 0.76rem; }
  .chip svg { width: 14px; height: 14px; }
  .hero-photo-wrap { max-width: 220px; border-radius: var(--radius); }
  .stats-bar { padding: 1.25rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-item { padding: 0.95rem 0.5rem; }
  .stat-icon { width: 34px; height: 34px; margin-bottom: 0.4rem; }
  .stat-icon svg { width: 18px; height: 18px; }
  .stat-item b { font-size: 1.7rem; }
  .stat-item span { font-size: 0.76rem; }
  .card-grid, .steps, .f-grid, .gal-grid { grid-template-columns: 1fr; }
  .gal-item, .gal-item.wide { grid-column: span 1; }
  .f-bottom { flex-direction: column; text-align: center; }
  .t-card { width: 290px; }
  .trust-badge { display: none; }
  .smile-arc-svg { bottom: -10px; height: 15px; }
}
