@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Clinical Luxury Design Tokens */
:root {
  --font-primary: 'Poppins', sans-serif;
  
  /* Palette: Fresh Dental White, Deep Ocean Teal & Champagne Gold */
  --bg-primary: #f8fafc; /* Crisp Clinical White */
  --bg-secondary: #ffffff; 
  --bg-tertiary: #f1f5f9; 
  
  --text-main: #1e293b; /* Deep Charcoal Slate */
  --text-muted: #64748b; 
  --text-dark: #0f172a; /* Near Black */
  
  /* Brand Accent Colors */
  --accent-teal: #0d9488; /* Emerald Teal */
  --accent-teal-glow: rgba(13, 148, 136, 0.08);
  --accent-cyan: #06b6d4; /* Aquamarine */
  --accent-gold: #c5a880; /* Luxurious Champagne Gold */
  --accent-gold-glow: rgba(197, 168, 128, 0.15);
  
  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
  --teal-cyan-grad: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
  --gold-grad: linear-gradient(135deg, #c5a880 0%, #e2d1b9 100%);
  --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 100%);
  
  /* Glassmorphism Configuration (Luxury) */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-border-hover: rgba(13, 148, 136, 0.2);
  --shadow-premium: 0 10px 40px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.01);
  --shadow-glow: 0 15px 30px rgba(13, 148, 136, 0.06), 0 10px 25px rgba(197, 168, 128, 0.05);
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 35%, #f0f9ff 70%, #faf5ff 100%);
  background-attachment: fixed;
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-teal);
}

/* Typography Utilities */
.text-gradient {
  background: var(--teal-cyan-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.text-gradient-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Container & Grid Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphic Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-premium), var(--shadow-glow);
  transform: translateY(-2px);
}

/* Floating Elements & Animations */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
}

/* Style for Header on Load (Above Hero) */
.header-initial {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

/* Scroll Transition: Header gets soft medical white glassmorphism */
.header.scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 74px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 58px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text-dark);
}

.logo-subtext {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}

/* Resources & interactive symptom checker */
.resource-banner { padding-bottom: 80px; text-align: center; overflow: hidden; }
.resource-banner::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,.16), transparent 68%); left: -180px; top: -220px; }
.resource-banner .container { position: relative; z-index: 1; }
.resource-hero-cta { margin-top: 28px; }
.resource-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.resource-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.resource-heading > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--teal-cyan-grad); color: white; font-size: 1.4rem; }
.resource-heading p { color: var(--text-muted); font-size: .78rem; text-transform: uppercase; letter-spacing: 1.2px; }
.resource-heading h3 { font-size: 1.55rem; color: var(--text-dark); }
.resource-card { background: rgba(255,255,255,.82); border: 1px solid rgba(13,148,136,.1); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-premium); transition: var(--transition-smooth); }
.resource-card:hover { transform: translateY(-5px); border-color: rgba(13,148,136,.3); box-shadow: var(--shadow-glow); }
.featured-card { position: relative; padding: 34px; overflow: hidden; }
.featured-card::after { content: ''; width: 140px; height: 140px; position: absolute; right: -45px; bottom: -55px; border-radius: 50%; background: var(--teal-cyan-grad); opacity: .08; }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--accent-teal); background: rgba(13,148,136,.09); border-radius: 13px; font-size: 1.35rem; margin-bottom: 18px; }
.read-time, .blog-topic { color: var(--accent-teal); text-transform: uppercase; letter-spacing: 1px; font-size: .72rem; font-weight: 700; }
.resource-card h3 { font-size: 1.22rem; margin: 8px 0 10px; color: var(--text-dark); }
.resource-card p, .blog-row p { color: var(--text-muted); font-size: .9rem; }
.card-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: var(--accent-teal); font-weight: 700; font-size: .9rem; }
.mini-resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.mini-resource-grid .resource-card { padding: 22px; }
.blog-row { display: grid; grid-template-columns: 66px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(13,148,136,.12); }
.blog-row:first-of-type { padding-top: 0; }
.blog-date { width: 62px; height: 66px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(13,148,136,.14); color: var(--accent-teal); }
.blog-date strong { font-size: 1.25rem; line-height: 1.1; }.blog-date span { font-size: .67rem; letter-spacing: 1px; }
.blog-row h3 { font-size: 1.05rem; margin: 5px 0; color: var(--text-dark); }
.quiz-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.quiz-intro { position: sticky; top: 130px; }
.quiz-intro h2 { font-size: 2.5rem; line-height: 1.15; color: var(--text-dark); margin-bottom: 18px; }
.quiz-intro > p { color: var(--text-muted); font-size: 1.04rem; }
.quiz-note, .cost-note { display: flex; gap: 12px; padding: 18px; border-radius: 14px; background: rgba(6,182,212,.08); margin-top: 24px; font-size: .86rem; color: var(--text-muted); }
.quiz-note i, .cost-note i { color: var(--accent-teal); font-size: 1.25rem; flex: none; }
.quiz-benefit { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--text-muted); font-size: .9rem; }.quiz-benefit i { font-size: 1.5rem; color: var(--accent-gold); }
.quiz-card { padding: 36px; background: rgba(255,255,255,.88); transform: none !important; }
.quiz-progress-meta { display: flex; justify-content: space-between; color: var(--text-muted); font-size: .78rem; font-weight: 600; }
.quiz-progress { height: 7px; border-radius: 10px; background: #e2e8f0; margin: 9px 0 30px; overflow: hidden; }.quiz-progress span { display: block; width: 20%; height: 100%; background: var(--teal-cyan-grad); border-radius: inherit; transition: width .35s ease; }
.quiz-step { display: none; border: 0; }.quiz-step.active { display: block; animation: fadeIn .35s ease; }.quiz-step legend { font-size: 1.4rem; font-weight: 750; color: var(--text-dark); margin-bottom: 22px; }
.quiz-option { display: block; cursor: pointer; margin-bottom: 12px; }.quiz-option input { position: absolute; opacity: 0; pointer-events: none; }.quiz-option > span { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; padding: 16px 18px; border: 1.5px solid #e2e8f0; border-radius: 14px; background: #fff; transition: var(--transition-fast); }.quiz-option i { grid-row: 1 / 3; align-self: center; color: var(--accent-teal); font-size: 1.35rem; }.quiz-option b { color: var(--text-main); font-size: .93rem; }.quiz-option small { color: var(--text-muted); font-size: .78rem; }.quiz-option:hover > span { border-color: rgba(13,148,136,.4); transform: translateX(3px); }.quiz-option input:checked + span { border-color: var(--accent-teal); background: rgba(13,148,136,.07); box-shadow: 0 0 0 3px rgba(13,148,136,.08); }
.quiz-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }.quiz-back, .quiz-restart { border: 0; background: transparent; color: var(--text-muted); cursor: pointer; font-weight: 600; padding: 12px; }.quiz-back:disabled { opacity: .35; }.quiz-error { color: #dc2626; min-height: 24px; font-size: .82rem; margin-top: 8px; }
.quiz-result { display: none; }.quiz-result.active { display: block; animation: fadeIn .45s ease; }.urgency-gauge { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }.urgency-ring { --score-angle: 0deg; width: 92px; height: 92px; border-radius: 50%; flex: none; display: flex; align-items: baseline; justify-content: center; padding-top: 27px; background: radial-gradient(circle at center, white 57%, transparent 59%), conic-gradient(var(--urgency-color, var(--accent-teal)) var(--score-angle), #e2e8f0 0); }.urgency-ring span { font-size: 1.7rem; font-weight: 800; color: var(--text-dark); }.urgency-ring small { color: var(--text-muted); }.result-eyebrow { text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-size: .72rem; }.urgency-gauge h3 { font-size: 1.45rem; color: var(--text-dark); }.result-status { display: inline-flex; border-radius: 40px; padding: 7px 13px; background: #ecfdf5; color: #047857; font-size: .78rem; font-weight: 700; margin-bottom: 15px; }.quiz-result > p { color: var(--text-muted); }
.treatment-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }.treatment-compare > div { padding: 18px; border: 1px solid #e2e8f0; border-radius: 14px; }.treatment-compare i { color: var(--accent-teal); font-size: 1.3rem; }.treatment-compare h4 { margin: 7px 0; }.treatment-compare p { color: var(--text-muted); font-size: .78rem; }.cost-note { background: #fff8eb; }.cost-note i { color: #b7791f; }.result-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }.quiz-restart { display: block; margin: 14px auto 0; text-decoration: underline; }

@media (max-width: 1100px) { .nav-links { gap: 14px; }.nav-item a { font-size: .83rem; }.logo-text { font-size: .98rem; } }
@media (max-width: 900px) { .resource-columns, .quiz-shell { grid-template-columns: 1fr; }.quiz-intro { position: static; }.quiz-shell { gap: 36px; } }
@media (max-width: 576px) { .resource-banner { padding-top: 140px; }.resource-columns { gap: 42px; }.mini-resource-grid, .treatment-compare { grid-template-columns: 1fr; }.quiz-card { padding: 24px 18px; }.quiz-intro h2 { font-size: 2rem; }.quiz-step legend { font-size: 1.2rem; }.result-actions > a { width: 100%; justify-content: center; }.blog-row { grid-template-columns: 54px 1fr; }.blog-date { width: 52px; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }

/* Final mobile pass for all redesigned and legacy pages */
@media (max-width: 900px) {
  .article-index-grid { grid-template-columns: 1fr 1fr; }
  .index-card-featured { grid-column: 1 / -1; }
  .tools-index-grid { grid-template-columns: 1fr; }
  .footer-topline { align-items: flex-start; }
}

@media (max-width: 768px) {
  .page-banner { padding: 145px 0 75px; }
  .page-banner::after { bottom: 42px; }
  .page-title { font-size: 2.75rem; letter-spacing: -1.6px; }
  .section { padding: 75px 0; }
  .section-header { margin-bottom: 38px; }
  .section-title { font-size: 2.1rem; }
  .resource-index-hero, .tool-page-hero, .article-hero { padding: 150px 0 75px; }
  .resource-index-hero h1, .tool-page-hero h1, .article-hero h1 { font-size: clamp(3rem, 12vw, 4.3rem); letter-spacing: -2.8px; }
  .resource-index-heading { display: block; margin-bottom: 32px; }.resource-index-heading h2 { font-size: 2.15rem; }.resource-index-heading > p { margin-top: 12px; }
  .tool-index-card { grid-template-columns: 1fr; }.tool-index-art { min-height: 170px; }
  .footer-topline { flex-direction: column; }.footer-topline h2 { font-size: 2rem; }.footer-topline .cta-button { width: 100%; justify-content: center; }
  .footer { padding-top: 60px; }.footer-grid { margin-bottom: 40px; }
  .booking-panel { padding: 26px 18px; }.booking-steps-nav { gap: 5px; }.step-indicator { width: 31px; height: 31px; font-size: .75rem; }
  .map-section { height: 340px; }
}

@media (max-width: 560px) {
  .article-index-grid { grid-template-columns: 1fr; }.index-card-featured { grid-column: auto; }.index-card { min-height: 360px; }
  .resource-index-hero, .tool-page-hero, .article-hero { padding-top: 135px; }
  .resource-index-hero h1, .tool-page-hero h1, .article-hero h1 { font-size: 3.15rem; }
  .article-wrap { width: min(100% - 36px, 820px); }.article-deck { font-size: 1rem; }.article-body { padding: 55px 0 75px; }.article-body h2 { font-size: 1.5rem; margin-top: 38px; }.article-cta { padding: 26px 21px; }.article-cta a { width: 100%; justify-content: center; }
  .quiz-shell { padding-left: 18px; padding-right: 18px; }.quiz-option > span { padding: 14px; }.quiz-actions .cta-button { padding: 13px 22px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { width: 52px; height: 52px; right: 18px; bottom: 18px; font-size: 1.8rem; }
}

.nav-item a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  color: var(--text-main);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-cyan-grad);
  transition: var(--transition-fast);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

.nav-item a:hover {
  color: var(--accent-teal);
}

.nav-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
  color: var(--text-main);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.social-icon:hover {
  background: var(--teal-cyan-grad);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1100;
}

/* Full Screen Hero with Animated Gradient & Floating Blur Blobs */
.home-header { padding: 14px 0; background: rgba(250,253,252,.88); border-bottom: 1px solid rgba(13,148,136,.09); backdrop-filter: blur(18px); }
.home-header .nav-container { max-width: 1320px; }
.home-header .logo-wrapper { gap: 4px; }
.home-brand-mark { width: 104px; height: 86px; overflow: hidden; display: block; position: relative; flex: none; }
.home-brand-mark .logo-img { position: absolute; width: 132px; height: auto; max-width: none; left: -14px; top: -19px; border-radius: 0; box-shadow: none; }
.home-header.scrolled .home-brand-mark { height: 70px; }
.home-header.scrolled .home-brand-mark .logo-img { width: 112px; left: -4px; top: -16px; height: auto; }
.home-header .logo-text { font-size: 1.06rem; }

.home-hero { min-height: 100vh; padding: 150px 0 0; position: relative; overflow: hidden; background: linear-gradient(145deg, #f9fdfc 0%, #eefaf7 55%, #e7f7f8 100%); }
.home-hero::before { content: ''; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(13,148,136,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(13,148,136,.045) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, black, transparent 65%); }
.home-hero-glow { position: absolute; border-radius: 50%; filter: blur(15px); pointer-events: none; }
.glow-one { width: 420px; height: 420px; right: -130px; top: 90px; background: rgba(6,182,212,.11); }
.glow-two { width: 300px; height: 300px; left: -180px; bottom: 30px; background: rgba(197,168,128,.12); }
.home-hero-grid { min-height: calc(100vh - 225px); max-width: 1280px; display: grid; grid-template-columns: 1.03fr .97fr; gap: 64px; align-items: center; position: relative; z-index: 2; padding-bottom: 52px; }
.home-hero-copy { padding: 42px 0; }
.home-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 26px; text-transform: uppercase; letter-spacing: 1.8px; color: #39736e; font-size: .76rem; font-weight: 700; }
.home-kicker span { width: 34px; height: 2px; background: var(--accent-teal); }
.home-hero h1 { color: #123b38; font-size: clamp(3.4rem, 5.7vw, 5.7rem); line-height: .98; letter-spacing: -4px; font-weight: 760; margin-bottom: 28px; }
.home-hero h1 em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; color: var(--accent-teal); letter-spacing: -3px; }
.home-hero-lead { max-width: 620px; color: #58716f; font-size: 1.08rem; line-height: 1.85; }
.home-hero-lead strong { color: #234b48; }
.home-hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.home-primary-cta { border-radius: 12px; padding: 17px 27px; box-shadow: 0 12px 26px rgba(13,148,136,.22); }
.home-text-link { display: inline-flex; align-items: center; gap: 11px; color: #234b48; font-weight: 650; }
.home-text-link span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--accent-teal); box-shadow: 0 5px 18px rgba(15,23,42,.08); }
.home-text-link:hover { color: var(--accent-teal); transform: translateX(3px); }
.home-proof-row { display: flex; margin-top: 52px; padding-top: 25px; border-top: 1px solid rgba(13,148,136,.15); max-width: 610px; }
.home-proof-row > div { display: flex; flex-direction: column; padding: 0 30px; border-right: 1px solid rgba(13,148,136,.15); }
.home-proof-row > div:first-child { padding-left: 0; }.home-proof-row > div:last-child { border: 0; }
.home-proof-row strong { font-size: 1.45rem; color: #123b38; line-height: 1.1; }.home-proof-row span { color: #6a817f; font-size: .72rem; margin-top: 6px; }.home-proof-row i { color: #e5ae36; }
.home-hero-visual { height: 600px; position: relative; display: grid; place-items: center; }
.doctor-portrait-wrap { position: relative; width: 390px; height: 510px; z-index: 2; }
.portrait-backdrop { position: absolute; inset: 36px 0 0; border-radius: 195px 195px 28px 28px; background: linear-gradient(160deg, #bbebe3, #e6f6ee 65%, #f2e9dc); box-shadow: 0 30px 70px rgba(30,89,83,.17); }
.portrait-backdrop::before { content: ''; position: absolute; inset: 15px; border-radius: inherit; border: 1px solid rgba(255,255,255,.75); }
.home-doctor-img { position: absolute; width: 290px; height: 370px; left: 50px; top: 85px; border-radius: 145px 145px 20px 20px; object-fit: cover; image-rendering: auto; box-shadow: 0 20px 45px rgba(18,59,56,.16); }
.doctor-caption { position: absolute; left: 35px; right: 35px; bottom: 22px; z-index: 3; display: grid; padding: 15px 20px; border-radius: 13px; background: rgba(255,255,255,.92); backdrop-filter: blur(15px); box-shadow: 0 10px 35px rgba(15,23,42,.12); }
.doctor-caption span { color: var(--accent-teal); font-size: .65rem; text-transform: uppercase; letter-spacing: 1.3px; font-weight: 700; }.doctor-caption strong { color: #123b38; font-size: 1.02rem; }.doctor-caption small { color: var(--text-muted); }
.visual-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(13,148,136,.16); }.orbit-one { width: 530px; height: 530px; }.orbit-two { width: 620px; height: 620px; border-style: dashed; opacity: .65; }
.floating-care-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.9); background: rgba(255,255,255,.88); backdrop-filter: blur(15px); border-radius: 14px; box-shadow: 0 14px 35px rgba(30,89,83,.13); }
.care-card-top { top: 90px; left: -5px; }.care-card-bottom { bottom: 85px; right: -22px; }
.care-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(13,148,136,.1); color: var(--accent-teal); font-size: 1.15rem; }
.floating-care-card div { display: grid; }.floating-care-card strong { font-size: .78rem; color: #234b48; }.floating-care-card small { color: var(--text-muted); font-size: .65rem; }
.hero-brand-stamp { position: absolute; right: 3px; top: 20px; z-index: 4; width: 110px; height: 110px; border-radius: 50%; background: #123b38; color: white; display: grid; place-items: center; text-align: center; box-shadow: 0 12px 30px rgba(18,59,56,.2); }
.hero-brand-stamp img { position: absolute; width: 50px; height: 50px; border-radius: 50%; object-fit: cover; opacity: .16; }.hero-brand-stamp span { font-size: .62rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .7px; font-weight: 700; }
.hero-service-ribbon { position: relative; z-index: 4; background: #123b38; color: white; }
.hero-service-ribbon .container { max-width: 1280px; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hero-service-ribbon span { color: #d9e8e6; font-size: .8rem; }.hero-service-ribbon span i { color: #6ee7d4; margin-right: 7px; }.hero-service-ribbon a { font-size: .8rem; font-weight: 700; color: #77e4d5; }

.hero {
  height: 100vh;
  min-height: 700px;
  width: 100%;
  background: linear-gradient(-45deg, #0d9488, #0ea5e9, #6366f1, #1e1b4b, #0f172a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Glowing mesh gradient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.38;
  animation: float-around 20s infinite alternate ease-in-out;
  pointer-events: none;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(6, 182, 212, 0.05) 70%);
  top: -10%;
  left: -5%;
  animation-duration: 22s;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, rgba(13, 148, 136, 0.05) 70%);
  bottom: -15%;
  right: -5%;
  animation-duration: 28s;
  animation-delay: -4s;
}

.blob-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.3) 0%, rgba(197, 168, 128, 0.05) 70%);
  top: 25%;
  left: 40%;
  animation-duration: 18s;
  animation-delay: -9s;
}

@keyframes float-around {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(60px, -60px) scale(1.08) rotate(180deg); }
  100% { transform: translate(-40px, 40px) scale(0.95) rotate(360deg); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 80%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(13, 148, 136, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(13, 148, 136, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 45px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border-radius: 28px;
  color: #ffffff;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  margin-bottom: 24px;
  color: var(--accent-cyan);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #ffffff;
}

.hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--teal-cyan-grad);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.35), var(--shadow-glow);
}

.cta-button i {
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.cta-button:hover i {
  transform: translateX(4px);
}

/* Secondary Button Link */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.cta-secondary:hover {
  background: #ffffff;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.08);
}

/* Sub-Pages Header Banner (for non-index pages) */
.page-banner {
  padding: 160px 0 65px;
  background: linear-gradient(180deg, #eaf5f2 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid rgba(13, 148, 136, 0.06);
  position: relative;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--teal-cyan-grad);
  border-radius: 2px;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
}

.page-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-weight: 400;
  margin-top: 8px;
}

/* Sections General */
.section {
  padding: 100px 0;
  position: relative;
  background: transparent;
  background-image: radial-gradient(rgba(13, 148, 136, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background-image: radial-gradient(rgba(197, 168, 128, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal-cyan-grad);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-desc {
  color: var(--text-muted);
  font-weight: 400;
}

/* Landing Page - Brief Vision Section */
.vision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vision-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-premium);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-cyan-grad);
}

.vision-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.vision-quote {
  font-size: 1.08rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  border-left: 2px solid var(--accent-teal);
  padding-left: 16px;
  font-weight: 400;
}

/* Landing Page - About Dr Ashwini Snippet */
.about-brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-brief-img-container {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  height: 480px;
  transition: var(--transition-smooth);
}

.about-brief-img-container::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.about-brief-img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08);
}

.about-brief-img-container:hover::before {
  top: 6px;
  left: 6px;
  right: -6px;
  bottom: -6px;
  border-color: var(--accent-teal);
}

.about-brief-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-brief-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 148, 136, 0.15);
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  z-index: 3;
}

.about-brief-badge h4 {
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.about-brief-badge p {
  font-size: 0.8rem;
  color: var(--accent-teal);
  font-weight: 600;
}

.doc-name {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.doc-specialty {
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.doc-vision-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* About Page Specific Styles */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.about-feature-card {
  padding: 36px 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-premium);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.06);
  color: var(--accent-teal);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.about-feature-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.about-feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-premium);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--accent-gold);
  opacity: 0.2;
  border-bottom-left-radius: 12px;
  transition: var(--transition-fast);
}

.service-card:hover::before {
  background: var(--accent-teal);
  opacity: 0.4;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--teal-cyan-grad);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.05);
  color: var(--accent-teal);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--teal-cyan-grad);
  color: white;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
}

/* Testimonials / Slider */
.reviews-summary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  padding: 14px 28px;
  background: var(--bg-secondary);
  border-radius: 50px;
  box-shadow: var(--shadow-premium);
  max-width: fit-content;
  border: 1px solid rgba(13, 148, 136, 0.08);
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .reviews-summary {
    flex-direction: column;
    gap: 8px;
    border-radius: 20px;
    padding: 16px 24px;
    text-align: center;
    max-width: 100%;
  }
}

.stars-container {
  color: #fbbf24;
  font-size: 1.25rem;
}

.reviews-stat {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.slider-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.reviews-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  padding: 55px;
  text-align: center;
  position: relative;
}

/* Large decorative gold quote icon */
.review-slide::after {
  content: '“';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 8rem;
  color: var(--accent-gold);
  opacity: 0.12;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 20px;
  color: var(--text-dark);
}

.reviewer-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.review-text-container {
  position: relative;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-main);
  z-index: 2;
}

.review-text-full {
  display: none;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--accent-teal);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 8px;
  text-decoration: underline;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text-main);
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.slider-btn:hover {
  background: var(--teal-cyan-grad);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.slider-btn-prev {
  left: 12px;
}

.slider-btn-next {
  right: 12px;
}

.reviews-more-link {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-teal);
  font-weight: 600;
  transition: var(--transition-fast);
}

.link-button:hover {
  color: var(--accent-cyan);
  text-decoration: underline;
}

/* Quick Book Widget (Home Page) */
.quick-book-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 40px;
  text-align: center;
  background: var(--bg-secondary);
}

.quick-book-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.quick-book-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.quick-book-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.quick-opt-btn {
  padding: 18px;
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.quick-opt-btn:hover {
  border-color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.04);
}

/* Booking Page Booking Engine */
.booking-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.booking-panel {
  padding: 40px;
  background: var(--bg-secondary);
}

.booking-steps-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.booking-steps-nav::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-tertiary);
  z-index: 1;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid rgba(0,0,0,0.04);
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  transition: var(--transition-fast);
}

.step-indicator.active {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: white;
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.3);
}

.step-indicator.completed {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: white;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

.booking-step-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

/* Step 1: Appointment Type cards */
.apt-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.apt-type-card {
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-smooth);
}

.apt-type-card.selected {
  border-color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.05);
  box-shadow: var(--shadow-premium), var(--shadow-glow);
}

.apt-type-icon {
  font-size: 2.2rem;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.apt-type-name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.apt-type-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Step 2: Date Calendar styling */
.calendar-wrapper {
  margin-bottom: 24px;
  background: var(--bg-primary);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month {
  font-weight: 700;
  color: var(--text-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.cal-day-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
  border: 1px solid transparent;
  color: var(--text-main);
  background: var(--bg-secondary);
}

.cal-day:hover:not(.disabled):not(.selected) {
  background: rgba(13, 148, 136, 0.05);
  border-color: var(--accent-teal);
}

.cal-day.disabled {
  color: rgba(0, 0, 0, 0.2);
  background: var(--bg-tertiary);
  cursor: not-allowed;
}

.cal-day.selected {
  background: var(--accent-teal);
  color: white;
  font-weight: 700;
}

.cal-day.today {
  border-color: var(--accent-cyan);
}

.cal-day.sunday-day {
  color: #ef4444;
}

/* Step 3: Slots grid */
.slots-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.slot-btn {
  padding: 12px 8px;
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  color: var(--text-main);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slot-btn:hover:not(.disabled):not(.selected) {
  border-color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.05);
}

.slot-btn.disabled {
  opacity: 0.35;
  background: var(--bg-tertiary);
  cursor: not-allowed;
}

.slot-btn.selected {
  background: var(--accent-teal);
  color: white;
  border-color: var(--accent-teal);
}

/* Step 4: Patient Info Form inputs */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-teal);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.08);
}

.form-textarea {
  resize: none;
  height: 100px;
}

/* Step 5: Payment processor & Golden simulated credit card */
.payment-simulation {
  text-align: center;
}

.payment-cost-breakdown {
  margin: 20px 0 32px;
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-primary);
}

.payment-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--text-muted);
  font-weight: 500;
}

.payment-total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
  margin-top: 8px;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pay-method-card {
  padding: 20px;
  cursor: pointer;
  background: var(--bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
}

.pay-method-card.selected {
  border-color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.05);
}

/* Simulated luxury gold credit card container */
.sim-card-wrap {
  perspective: 1000px;
  max-width: 380px;
  margin: 0 auto 30px;
  height: 220px;
}

.sim-gold-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  text-align: left;
  border: 1.5px solid var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  color: #fff;
  overflow: hidden;
}

.sim-gold-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197,168,128,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.sim-card-logo {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

.sim-card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #f5d061 0%, #e2b13c 100%);
  border-radius: 6px;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
}

.sim-card-number {
  font-size: 1.25rem;
  letter-spacing: 3px;
  font-family: monospace;
  margin-bottom: 12px;
}

.sim-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

/* Step 6: Confirmation Screen */
.confirmation-card {
  text-align: center;
  padding: 20px;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.confirm-details-box {
  margin: 24px 0;
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-primary);
  text-align: left;
}

.confirm-item {
  display: flex;
  margin-bottom: 12px;
}

.confirm-label {
  width: 130px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.confirm-val {
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.booking-nav-btns {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-back {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-back:hover {
  background: var(--bg-primary);
}

.btn-next {
  background: var(--teal-cyan-grad);
  border: none;
  color: white;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}

/* Sidebar Info (Timings) */
.timings-sidebar {
  padding: 40px 32px;
  background: var(--bg-secondary);
}

.timings-sidebar h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--bg-primary);
  padding-bottom: 12px;
  color: var(--text-dark);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  font-size: 0.92rem;
}

.timing-row:last-child {
  border-bottom: none;
}

.timing-day {
  font-weight: 600;
  color: var(--text-dark);
}

.timing-hours {
  color: var(--accent-teal);
  text-align: right;
  font-weight: 500;
}

.timing-badge-sunday {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 4px;
}

/* Contact Page Specific Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-secondary);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--accent-teal);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}

.contact-detail a:hover {
  color: var(--accent-teal);
  text-decoration: underline;
}

.contact-form-panel {
  padding: 40px;
  background: var(--bg-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Map Embed Wrapper */
.map-section {
  padding: 0;
  height: 450px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Section */
.footer {
  padding: 80px 0 30px;
  background: linear-gradient(135deg, #0f172a 0%, #0d9488 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.footer-about p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  color: #cbd5e1;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Editorial system shared by the redesigned landing, inner pages and resource library */
.page-banner { padding: 190px 0 90px; text-align: left; overflow: hidden; background: linear-gradient(145deg, #f9fdfc, #eaf8f4 60%, #e5f5f7); }
.page-banner::before { content: ''; position: absolute; width: 430px; height: 430px; right: -140px; top: 15px; border-radius: 50%; background: rgba(6,182,212,.09); }
.page-banner::after { left: max(24px, calc((100% - 1152px) / 2)); transform: none; width: 72px; bottom: 60px; }
.page-banner .container { position: relative; z-index: 1; }
.page-title, .page-subtitle { text-align: left; max-width: 820px; }
.page-title { color: #123b38; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1.05; letter-spacing: -2.5px; }
.page-subtitle { margin-top: 20px; color: #58716f; font-size: 1.05rem; }
.section { padding: 110px 0; background-image: none; }
.section:nth-of-type(even), .section-alt { background: rgba(242,250,247,.68); border-color: rgba(13,148,136,.08); }
.section-title { color: #123b38; letter-spacing: -1.3px; }
.glass-panel, .service-card, .booking-panel, .contact-card { border-color: rgba(13,148,136,.1); border-radius: 22px; background: rgba(255,255,255,.88); box-shadow: 0 18px 55px rgba(30,89,83,.07); }

.resource-index-hero, .tool-page-hero, .article-hero { padding: 200px 0 105px; position: relative; overflow: hidden; background: linear-gradient(145deg, #f9fdfc, #eaf8f4 65%, #e3f4f5); }
.resource-index-hero::after, .tool-page-hero::after, .article-hero::after { content: ''; position: absolute; width: 450px; height: 450px; border-radius: 50%; right: -130px; top: 60px; background: rgba(6,182,212,.09); }
.resource-index-hero .container, .tool-page-hero .container, .article-wrap { position: relative; z-index: 1; }
.resource-index-hero h1, .tool-page-hero h1, .article-hero h1 { color: #123b38; font-size: clamp(3.2rem, 6.5vw, 6rem); line-height: .98; letter-spacing: -4px; }
.resource-index-hero h1 em, .tool-page-hero h1 em, .article-hero h1 em { font-family: Georgia, serif; color: var(--accent-teal); font-weight: 400; }
.resource-index-hero > .container > p, .tool-page-hero > .container > p { color: #58716f; max-width: 680px; margin-top: 28px; font-size: 1.08rem; line-height: 1.8; }
.resource-index-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; }
.resource-index-heading h2 { font-size: 2.6rem; line-height: 1.1; color: #123b38; letter-spacing: -1.5px; }.resource-index-heading > p { color: var(--text-muted); max-width: 370px; }
.article-index-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 22px; }
.index-card { min-height: 430px; display: flex; flex-direction: column; padding: 30px; border-radius: 22px; background: #fff; border: 1px solid rgba(13,148,136,.1); box-shadow: 0 18px 50px rgba(30,89,83,.06); position: relative; overflow: hidden; }
.index-card:hover { transform: translateY(-7px); box-shadow: 0 25px 65px rgba(30,89,83,.13); border-color: rgba(13,148,136,.32); }
.index-card-featured { background: #123b38; }.index-card-featured h3 { color: #fff !important; }.index-card-featured p { color: #bdd0ce !important; }.index-card-featured .index-number { color: rgba(255,255,255,.1); }.index-card-featured .index-card-icon { color: #6ee7d4; background: rgba(255,255,255,.1); }.index-card-featured .index-read { color: #6ee7d4; }
.index-number { position: absolute; right: 22px; top: 15px; color: rgba(18,59,56,.07); font-size: 4rem; font-weight: 800; }
.index-card-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: rgba(13,148,136,.09); color: var(--accent-teal); font-size: 1.5rem; margin-bottom: auto; }
.index-card h3 { font-size: 1.35rem; color: #123b38; line-height: 1.35; margin: 10px 0; }.index-card p { color: var(--text-muted); font-size: .88rem; }.index-read { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; color: var(--accent-teal); font-weight: 700; font-size: .82rem; }
.tools-index-section { background: #eef8f5 !important; }.tools-index-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 22px; }.tool-index-card { min-height: 300px; display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 32px; border-radius: 24px; padding: 26px; background: #fff; border: 1px solid rgba(13,148,136,.1); }.tool-index-card:hover:not(.coming-soon) { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(30,89,83,.11); }.tool-index-art { height: 100%; min-height: 240px; border-radius: 18px; display: grid; place-items: center; position: relative; background: linear-gradient(145deg, #d7f4ec, #e7f4f6); color: var(--accent-teal); font-size: 4rem; }.tool-index-art span { position: absolute; right: 14px; top: 14px; font-size: .68rem; font-weight: 700; padding: 5px 9px; border-radius: 20px; background: #fff; }.tool-index-card h3 { color: #123b38; font-size: 1.5rem; margin: 8px 0; }.tool-index-card p { color: var(--text-muted); }.coming-soon { opacity: .68; grid-template-columns: 1fr; }.coming-soon .tool-index-art { min-height: 120px; }
.tool-page-hero { padding-bottom: 85px; }.back-to-index { display: inline-flex; align-items: center; gap: 7px; color: #39736e; font-weight: 650; font-size: .82rem; margin-bottom: 35px; }.tool-page-hero .section-tag { margin-bottom: 15px; }
.article-wrap { width: min(820px, calc(100% - 48px)); margin: 0 auto; }.article-hero { padding-bottom: 90px; }.article-hero .blog-topic { display: block; margin-bottom: 17px; }.article-deck { color: #58716f; font-size: 1.15rem; line-height: 1.75; margin-top: 30px; }.article-body { padding: 75px 0 110px; }.article-body h2 { color: #123b38; font-size: 1.75rem; margin: 48px 0 14px; letter-spacing: -.5px; }.article-body > p { color: #526b68; line-height: 1.95; font-size: 1.03rem; }.article-callout { display: flex; gap: 17px; padding: 25px; border-radius: 18px; background: #eaf8f4; color: #365e5a; line-height: 1.7; }.article-callout i { color: var(--accent-teal); font-size: 1.5rem; flex: none; }.article-callout.warning { background: #fff4e5; }.article-callout.warning i { color: #c76812; }.article-cta { padding: 36px; border-radius: 22px; background: #123b38; margin-top: 60px; color: white; }.article-cta h3 { font-size: 1.7rem; }.article-cta p { color: #bdd0ce; margin: 8px 0 24px; }.article-cta > div { display: flex; gap: 12px; flex-wrap: wrap; }

.refined-footer, .footer { padding: 80px 0 28px; background: #0d312f; border: 0; }
.footer-topline { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 55px; margin-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.12); }.footer-topline span { color: #6ee7d4; text-transform: uppercase; letter-spacing: 1.5px; font-size: .73rem; font-weight: 700; }.footer-topline h2 { color: white; font-size: 2.5rem; margin-top: 8px; letter-spacing: -1px; }.footer-brand { color: #fff; font-size: 1.35rem; font-weight: 800; }.footer-brand span { color: #6ee7d4; }.footer-brand small { display: block; color: #91aaa8; font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }.footer .logo-text { color: white; }.footer .logo-subtext { color: #91aaa8; }.footer-col p, .footer-col p a { color: #a9bfbc !important; line-height: 1.8; }.footer-bottom a { color: #6ee7d4; font-size: .84rem; }

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.whatsapp-float-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #25d366;
  animation: pulse-ring 2s infinite;
  pointer-events: none;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .home-hero { padding-top: 125px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 10px; padding-top: 55px; }
  .home-hero-copy { text-align: center; padding-bottom: 15px; }
  .home-kicker, .home-hero-actions, .home-proof-row { justify-content: center; margin-left: auto; margin-right: auto; }
  .home-hero-lead { margin: 0 auto; }
  .home-hero-visual { height: 570px; }
  .hero-service-ribbon .container { flex-wrap: wrap; justify-content: center; padding-top: 20px; padding-bottom: 20px; }
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .about-brief-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-brief-img-container {
    height: 400px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .home-header { padding: 8px 0; }
  .home-header .logo-text { display: block; font-size: .88rem; }
  .home-brand-mark { width: 82px; height: 72px; }
  .home-brand-mark .logo-img { width: 104px; left: -11px; top: -14px; }
  .home-header.scrolled .home-brand-mark { height: 62px; }
  .home-header.scrolled .home-brand-mark .logo-img { width: 94px; top: -13px; }
  .home-hero h1 { font-size: clamp(3rem, 12vw, 4.6rem); letter-spacing: -3px; }
  .home-hero-visual { transform: scale(.9); margin: -20px 0; }
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(0,0,0,0.06);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-smooth);
    z-index: 1050;
    padding: 40px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-socials {
    margin-top: 20px;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .vision-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .home-header .logo-text { font-size: .72rem; max-width: 190px; }
  .home-header .logo-subtext { font-size: .58rem; }
  .home-brand-mark { width: 70px; height: 62px; }
  .home-brand-mark .logo-img { width: 88px; top: -12px; left: -9px; }
  .home-hero { padding-top: 105px; }
  .home-hero-grid { padding: 30px 20px 25px; }
  .home-hero h1 { font-size: 3.25rem; line-height: 1.02; letter-spacing: -2.5px; }
  .home-hero h1 em { letter-spacing: -2px; }
  .home-hero-lead { font-size: .95rem; line-height: 1.7; }
  .home-hero-actions { flex-direction: column; gap: 18px; }
  .home-proof-row { margin-top: 38px; }
  .home-proof-row > div { padding: 0 13px; }
  .home-proof-row strong { font-size: 1.15rem; }.home-proof-row span { font-size: .62rem; }
  .home-hero-visual { width: 500px; height: 520px; left: 50%; margin-left: -250px; transform: scale(.72); margin-top: -65px; margin-bottom: -80px; }
  .hero-service-ribbon .container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 18px; padding-bottom: 18px; }
  .hero-service-ribbon a { grid-column: 1 / -1; text-align: center; margin-top: 5px; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .service-card {
    padding: 24px 16px;
  }
  
  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  
  .service-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .service-desc {
    font-size: 0.8rem;
  }
  
  .hero h1 {
    font-size: 2.1rem;
  }
  
  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
  .cta-secondary {
    margin-left: 0;
    margin-top: 12px;
    display: flex;
  }
  
  .quick-book-options {
    grid-template-columns: 1fr;
  }
  
  .apt-types-grid {
    grid-template-columns: 1fr;
  }
  
  .slots-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
  }
}
