/* ==========================================================================
   DR. PRAJWAL'S DENTAL STATION - STICKY TICKER STRIP & IOS GLASS HEADER
   Sticky Top Ticker Strip (All Devices) | Frosted Blur Glass | Tooth Cursor | Multi-FAB
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- LIGHT THEME TOKENS --- */
:root {
  --bg-main: linear-gradient(180deg, #f0fdfa 0%, #e6f9f9 50%, #f0fdfa 100%);
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --bg-accent-card: #f0fdfa;
  
  --primary-teal: #0f766e;
  --primary-teal-dark: #0d5d57;
  --accent-cyan: #0ea5a5;
  --accent-mint: #0d9488;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #ffffff;
  --gold-accent: #f59e0b;

  --header-bg: #ffffff;
  --header-border: rgba(14, 165, 165, 0.2);
  --top-bar-bg: #0f766e;
  --glass-shadow: 0 10px 30px rgba(15, 118, 110, 0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

/* --- DARK THEME OVERRIDES --- */
[data-theme="dark"] {
  --bg-main: linear-gradient(180deg, #091e1d 0%, #061514 50%, #091e1d 100%);
  --bg-section: #0d2826;
  --bg-card: #113532;
  --bg-accent-card: #091e1d;

  --primary-teal: #2dd4bf;
  --primary-teal-dark: #14b8a6;
  --accent-cyan: #14b8a6;
  --accent-mint: #5eead4;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #ffffff;

  --header-bg: #0d2826;
  --header-border: rgba(45, 212, 191, 0.28);
  --top-bar-bg: #061716;
  --glass-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* LOGO IMAGE INVERT IN DARK MODE */
[data-theme="dark"] .brand-exact-logo,
[data-theme="dark"] .loader-exact-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

/* --- HIDE DEFAULT SYSTEM MOUSE CURSOR ON DESKTOP --- */
@media (pointer: fine) {
  html, body, a, button, input, select, textarea, [role="button"], .faq-question, .gallery-item {
    cursor: none !important;
  }
}

/* --- BASE & OVERFLOW PREVENTION --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
  padding-top: 104px; /* Fixed header compensation */
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- FIXED IOS-STYLE HEADER WITH STICKY TOP STRIP --- */
header.ios-glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--glass-shadow);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* TOP INFO BAR (ALWAYS STICKY ON ALL DEVICES) */
.top-info-bar {
  background: #0f766e;
  color: #ffffff;
  font-size: 0.84rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: background 0.35s ease;
  z-index: 10001;
}

[data-theme="dark"] .top-info-bar {
  background: #061716;
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
}

/* WHEN SCROLLED DOWN: FROSTED BLUR GLASS EFFECT */
header.ios-glass-header.scrolled {
  background: rgba(255, 255, 255, 0.78) !important;
  -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
  backdrop-filter: blur(28px) saturate(200%) !important;
  border-bottom: 1px solid rgba(14, 165, 165, 0.35);
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.16);
}

header.ios-glass-header.scrolled .top-info-bar {
  background: rgba(13, 93, 87, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme="dark"] header.ios-glass-header.scrolled {
  background: rgba(11, 37, 34, 0.78) !important;
  -webkit-backdrop-filter: blur(28px) saturate(200%) !important;
  backdrop-filter: blur(28px) saturate(200%) !important;
  border-bottom: 1px solid rgba(45, 212, 191, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] header.ios-glass-header.scrolled .top-info-bar {
  background: rgba(6, 23, 22, 0.94);
}

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

.desktop-info-items {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.84rem;
}

.top-info-item i {
  color: #5eead4;
  font-size: 0.95rem;
}

.top-info-item a {
  color: #ffffff;
  font-weight: 700;
  transition: color 0.2s ease;
}

.top-info-item a:hover {
  color: #5eead4;
}

/* MARQUEE TICKER STRIP LOGIC */
.ticker-marquee-strip {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  animation: marqueeScroll 24s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

.marquee-divider {
  color: #5eead4;
  font-weight: bold;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE & TABLET: ALWAYS SHOW MARQUEE TICKER */
@media (max-width: 992px) {
  .desktop-info-items {
    display: none !important;
  }
  .ticker-marquee-strip {
    display: block !important;
  }
}

/* DESKTOP & LAPTOP (> 992px): STATIC ITEMS AT TOP, MARQUEE TICKER WHEN SCROLLED DOWN */
@media (min-width: 993px) {
  .ticker-marquee-strip {
    display: none;
  }
  header.ios-glass-header.scrolled .desktop-info-items {
    display: none;
  }
  header.ios-glass-header.scrolled .ticker-marquee-strip {
    display: block;
  }
}

/* --- PAGE PRELOADER WITH EXACT LOGO --- */
.page-preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-section);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  max-width: 280px;
  padding: 20px;
}

.loader-exact-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px auto;
  filter: drop-shadow(0 8px 20px rgba(14, 165, 165, 0.35));
  animation: pulseLogo 2s ease-in-out infinite alternate;
}

@keyframes pulseLogo {
  0% { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

/* --- DENTAL TOOTH ANIMATED MOUSE CURSOR --- */
.precision-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease-out;
}

.cursor-tooth-icon {
  font-size: 24px;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 10px var(--accent-cyan));
  transition: transform 0.25s ease, color 0.25s ease, filter 0.25s ease;
  animation: floatTooth 2.5s ease-in-out infinite alternate;
}

@keyframes floatTooth {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-5px) rotate(10deg); }
}

.cursor-glass-badge {
  position: absolute;
  left: 26px;
  top: -10px;
  background: rgba(15, 118, 110, 0.95);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255,255,255,0.3);
}

body.cursor-active .cursor-glass-badge {
  opacity: 1;
  transform: scale(1);
}

body.cursor-active .cursor-tooth-icon {
  transform: scale(1.4) rotate(18deg);
  color: var(--gold-accent);
  filter: drop-shadow(0 0 16px var(--gold-accent));
}

@media (pointer: coarse) {
  .precision-cursor {
    display: none !important;
  }
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(14, 165, 165, 0.12);
  color: var(--primary-teal);
  border: 1px solid rgba(14, 165, 165, 0.25);
  border-radius: 50px;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--primary-teal);
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* --- NAV BAR --- */
nav.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
  width: 100%;
  flex-wrap: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-exact-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo:hover .brand-exact-logo {
  transform: scale(1.08) rotate(5deg);
}

.brand-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--primary-teal);
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
}

.brand-info span {
  font-size: clamp(0.65rem, 1.1vw, 0.74rem);
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-cyan);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* DARK / LIGHT MODE TOGGLE BUTTON */
.theme-toggle {
  background: #ffffff;
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.0rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: #0f766e;
  color: #ffffff;
  transform: scale(1.08);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(45, 212, 191, 0.18);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.45);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .theme-toggle:hover {
  background: #2dd4bf;
  color: #091e1d;
}

.lang-switcher {
  display: flex;
  background: rgba(15, 118, 110, 0.08);
  padding: 2px;
  border-radius: 30px;
  border: 1px solid rgba(14, 165, 165, 0.2);
  flex-shrink: 0;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn.active {
  background: var(--primary-teal);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-teal-dark) 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(14, 165, 165, 0.35);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 165, 165, 0.45);
}

.mobile-toggle {
  display: none;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-teal);
  border: 1px solid rgba(15, 118, 110, 0.3);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* Hide drawer elements on desktop */
.mobile-drawer-header,
.mobile-drawer-cta {
  display: none;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: clamp(35px, 6vw, 70px) 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(25px, 4vw, 50px);
  align-items: center;
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--primary-teal);
  line-height: 1.2;
  margin-bottom: 16px;
  word-wrap: break-word;
}

.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary-teal);
  border: 2px solid var(--accent-cyan);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(14, 165, 165, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 165, 165, 0.15);
}

.stat-item h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--primary-teal);
  font-weight: 800;
}

.stat-item p {
  font-size: clamp(0.72rem, 1.5vw, 0.82rem);
  color: var(--text-muted);
}

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

.doctor-card-hero {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--header-border);
  position: relative;
  overflow: hidden;
}

.doctor-img-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.doctor-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
}

.floating-badge-experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--header-border);
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-teal);
}

.badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- QUICK FEATURE RIBBON --- */
.quick-feature-ribbon {
  padding: 25px 0;
  margin-bottom: 40px;
}

.feature-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.ribbon-item {
  background: var(--bg-card);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--header-border);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-fast);
}

.ribbon-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14, 165, 165, 0.12);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ribbon-text h4 {
  font-size: 0.95rem;
  color: var(--primary-teal);
  font-weight: 700;
  line-height: 1.2;
}

.ribbon-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg-section);
  border-radius: 32px;
  box-shadow: var(--glass-shadow);
  margin: 30px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(25px, 4vw, 50px);
  align-items: center;
}

.about-img-box img {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.12);
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--primary-teal);
  margin-bottom: 8px;
}

.about-subtitle-tag {
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  display: block;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 1rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.principle-item {
  background: var(--bg-accent-card);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--primary-teal);
  font-size: 0.88rem;
  border: 1px solid rgba(14, 165, 165, 0.15);
}

/* --- SERVICES GRID --- */
.services-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--header-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-cyan);
}

.service-img-wrapper {
  height: 190px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-teal);
  margin-bottom: 8px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.btn-link {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- CLINIC FACILITIES SHOWCASE --- */
.facilities-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg-section);
  border-radius: 32px;
  margin: 40px 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.facility-card {
  background: var(--bg-accent-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--header-border);
  text-align: center;
  transition: var(--transition-fast);
}

.facility-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
}

.facility-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px auto;
}

.facility-card h4 {
  font-family: var(--font-heading);
  color: var(--primary-teal);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.facility-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- WHY CHOOSE US --- */
.why-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg-section);
  border-radius: 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  padding: 30px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--header-border);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: rgba(14, 165, 165, 0.12);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- GALLERY --- */
.gallery-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 118, 110, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  color: #fff;
  font-size: 1.8rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--bg-section);
  border-radius: 32px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--bg-accent-card);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--header-border);
}

.stars {
  color: var(--gold-accent);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.author-info strong {
  display: block;
  color: var(--primary-teal);
  font-weight: 700;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.google-review-cta {
  text-align: center;
  margin-top: 35px;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--header-border);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}

.faq-answer {
  padding: 0 24px 18px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- CONTACT & MAP --- */
.contact-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
  box-shadow: var(--glass-shadow);
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 165, 165, 0.12);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--font-heading);
  color: var(--primary-teal);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.map-container {
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- FOOTER & DOCTECQ BRAND CREDIT --- */
footer {
  position: relative;
  z-index: 10;
  background: #1e3a5f; /* Doctecq Classic Dark Blue */
  color: #ffffff;
  padding: 35px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.4s ease;
}

[data-theme="dark"] footer {
  background: #0b1329; /* Dark Slate Navy */
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

footer p {
  font-size: 0.92rem;
  opacity: 0.95;
  color: #ffffff;
}

/* SLEEK HIGH-CONTRAST DOCTECQ BRAND LINK BADGE (MOBILE TOUCH-FRIENDLY & RESPONSIVE) */
footer a.doctecq-credit-link {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-left: 4px;
  pointer-events: auto !important;
  position: relative;
  z-index: 100;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
}

footer a.doctecq-credit-link:hover,
footer a.doctecq-credit-link:active {
  background: #ffffff;
  color: #1e3a5f !important;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

[data-theme="dark"] footer a.doctecq-credit-link {
  color: #60a5fa !important;
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(96, 165, 250, 0.5);
}

[data-theme="dark"] footer a.doctecq-credit-link:hover,
[data-theme="dark"] footer a.doctecq-credit-link:active {
  background: #3b82f6;
  color: #ffffff !important;
  border-color: #3b82f6;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.6);
}

/* --- ALL-IN-ONE MULTI-PURPOSE FLOATING ACTION DOCK (FAB) --- */
.multi-fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab-main-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-teal-dark) 100%);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(14, 165, 165, 0.45);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  position: relative;
}

.fab-main-btn:hover {
  transform: scale(1.08);
}

.multi-fab-container.active .fab-main-btn {
  transform: rotate(135deg);
  background: #ef4444;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
}

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.multi-fab-container.active .fab-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
}

.fab-option i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  color: #ffffff;
}

.fab-option:hover i {
  transform: scale(1.12);
}

.fab-label {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Individual FAB Option Colors */
.fab-top i { background: var(--primary-teal); }
.fab-book i { background: var(--accent-cyan); }
.fab-call i { background: #3b82f6; }
.fab-whatsapp i { background: #25d366; }
.fab-instagram i { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* --- MODAL --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  padding: 15px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-teal);
  margin-bottom: 4px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.modal-body-steps {
  background: var(--bg-accent-card);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--header-border);
}

.modal-body-steps p {
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 6px;
  font-size: 0.88rem;
}

/* --- MOBILE & RESPONSIVE OVERRIDES --- */
@media (max-width: 992px) {
  body {
    padding-top: 92px;
  }

  .desktop-booking-btn,
  .desktop-lang-switcher {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 92px);
    background: var(--bg-section);
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--header-border);
    width: 100%;
  }

  .mobile-drawer-cta {
    display: block;
    padding-top: 12px;
    border-top: 1px solid var(--header-border);
    width: 100%;
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0rem;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--bg-accent-card);
    border: 1px solid var(--header-border);
    color: var(--primary-teal);
    width: 100%;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .brand-info span {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
