/* ============================================================
   DUHOK SMILE — DENTAL CLINIC DESIGN SYSTEM FOUNDATION
   Primary Navy: #0F1B3D | Accent Red: #E63946 | Light BG: #F7F8FA
   Fonts: Tajawal (Headings) & Cairo (Body Text)
   ============================================================ */

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

/* ─── DEFAULT THEME (Navy, Red Accent & Light BG) ────────── */
:root,
[data-theme="light"] {
  --bg-primary: #F7F8FA;
  /* Light Background */
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f4f8;
  --bg-nav: rgba(15, 27, 61, 0.98);
  --accent: #0F1B3D;
  /* Primary Navy */
  --accent-dark: #0a122a;
  --accent-light: #1e3a8a;
  --accent-red: #E63946;
  /* Accent Red - STRICTLY ONLY for Primary CTA & 1 Headline Highlight Word */
  --accent-red-hover: #d62839;
  --accent-glow: rgba(15, 27, 61, 0.12);
  --accent-glow2: rgba(15, 27, 61, 0.08);
  --accent-red-glow: rgba(230, 57, 70, 0.25);
  --text-primary: #1A1A2E;
  /* Text on light */
  --text-secondary: #3a3a52;
  --text-muted: #6b7280;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.75);
  --border: rgba(15, 27, 61, 0.12);
  --border-hover: rgba(15, 27, 61, 0.25);
  --shadow-card: 0 10px 30px rgba(15, 27, 61, 0.06);
  --shadow-glow: 0 0 30px rgba(15, 27, 61, 0.12);
  --hero-overlay: linear-gradient(135deg, rgba(15, 27, 61, 0.95) 0%, rgba(10, 18, 42, 0.88) 100%);
  --stats-bar-bg: #ffffff;
  --input-bg: #f7f8fa;
  --scrollbar-track: #f7f8fa;
  --form-shadow: 0 20px 50px rgba(15, 27, 61, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --nav-h: 78px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── DARK THEME (Primary Navy Base & Crisp Text) ────────── */
[data-theme="dark"] {
  --bg-primary: #0F1B3D;
  /* Dark Primary Navy */
  --bg-secondary: #0a122a;
  --bg-card: #15244c;
  --bg-card-hover: #1b2e60;
  --bg-nav: rgba(15, 27, 61, 0.96);
  --accent: #2563eb;
  --accent-dark: #0f1b3d;
  --accent-light: #60a5fa;
  --accent-red: #E63946;
  --accent-red-hover: #d62839;
  --text-primary: #ffffff;
  /* Text on dark */
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.15);
  --border-hover: rgba(255, 255, 255, 0.3);
  --shadow-card: 0 15px 45px rgba(0, 0, 0, 0.4);
  --hero-overlay: linear-gradient(135deg, rgba(15, 27, 61, 0.98) 0%, rgba(10, 18, 42, 0.92) 100%);
  --stats-bar-bg: rgba(21, 36, 76, 0.95);
  --input-bg: #0a122a;
  --scrollbar-track: #0f1b3d;
  --form-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', sans-serif;
  color: var(--text-primary);
}

p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

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

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

ul {
  list-style: none;
}

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 99px;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── TYPOGRAPHY HELPERS & TYPE SCALE ────────────────────── */
.text-gradient {
  color: var(--text-primary);
}

.text-gradient-red {
  color: var(--accent-red);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FF4D5E;
  background: rgba(230, 57, 70, 0.14);
  border: 1px solid rgba(230, 57, 70, 0.35);
  padding: 7px 20px;
  border-radius: 99px;
  margin-bottom: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(230, 57, 70, 0.2);
}

.section-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF4D5E;
  box-shadow: 0 0 10px #FF4D5E;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-desc {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── SCROLL REVEAL & STAGGER ANIMATIONS ───────────────── */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger entrance (~150ms stagger) */
.hero-stats-inner .hero-stat-card:nth-child(1) { transition-delay: 0ms; }
.hero-stats-inner .hero-stat-card:nth-child(2) { transition-delay: 150ms; }
.hero-stats-inner .hero-stat-card:nth-child(3) { transition-delay: 300ms; }
.hero-stats-inner .hero-stat-card:nth-child(4) { transition-delay: 450ms; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.45);
}

.btn-red {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
  color: #fff;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.btn-red:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 40px rgba(220, 38, 38, 0.55), 0 0 25px rgba(29, 78, 216, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background: var(--accent-glow2);
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25);
}

/* ─── HEADER / NAV ──────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

#header.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo img {
  height: 44px;
}

.logo-text-duhok {
  color: #ffffff;
  transition: var(--transition);
}

#header.scrolled .logo-text-duhok {
  color: #1d4ed8;
}

[data-theme="dark"] #header.scrolled .logo-text-duhok {
  color: #ffffff;
}

.logo-text-smile {
  color: #ef4444;
}

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

.mobile-only-menu-item {
  display: none !important;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 99px;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link i {
  display: none;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.25);
}

.nav-link.active {
  color: #ffffff !important;
  background: #ef4444 !important;
}

#header.scrolled .nav-link {
  color: var(--text-primary);
  text-shadow: none;
}

#header.scrolled .nav-link:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

#header.scrolled .nav-link.active {
  color: #ffffff !important;
  background: #ef4444 !important;
}

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

/* ─── THEME TOGGLE ───────────────────────────────────────── */
#theme-toggle {
  display: none !important;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: rotate(20deg);
}

.theme-toggle .moon-icon {
  display: block;
}

.theme-toggle .sun-icon {
  display: none;
}

[data-theme="light"] .theme-toggle .moon-icon {
  display: none;
}

[data-theme="light"] .theme-toggle .sun-icon {
  display: block;
}

/* ─── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 195px);
  padding-bottom: 140px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background3.png');
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
  animation: hero-zoom 14s ease-in-out infinite alternate;
}

[dir="rtl"] .hero-bg {
  transform: scaleX(-1) scale(1.02);
  animation: hero-zoom-rtl 14s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes hero-zoom-rtl {
  from {
    transform: scaleX(-1) scale(1.02);
  }
  to {
    transform: scaleX(-1) scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 27, 61, 0.88) 0%, rgba(10, 18, 42, 0.72) 50%, rgba(15, 27, 61, 0.4) 100%);
}

[dir="rtl"] .hero-overlay {
  background: linear-gradient(to left, rgba(10, 18, 42, 0.94) 0%, rgba(10, 18, 42, 0.82) 42%, rgba(10, 18, 42, 0.25) 85%, rgba(10, 18, 42, 0.15) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 18, 42, 0.4) 40%, var(--bg-primary) 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.28) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: float-orb 9s ease-in-out infinite;
}

.hero-glow-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.24) 0%, transparent 70%);
  bottom: 60px;
  right: 200px;
  animation: float-orb 11s ease-in-out infinite reverse;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 36px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding-top: 60px;
  padding-bottom: 10px;
}

/* ─── HERO TYPOGRAPHY & HEADLINE ───────────────────────── */
.hero-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #60a5fa;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

[dir="rtl"] .hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.01em;
}

.hero-highlight {
  background: linear-gradient(135deg, #ff4d4d 0%, #ef4444 50%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 4px 15px rgba(239, 68, 68, 0.45));
  font-weight: 900;
}

.hero-subtitle {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* ─── FULLY PILL-SHAPED HERO BUTTONS ────────────────────── */
.btn-red {
  background: var(--accent-red);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 15px 32px;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.35);
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.btn-red:hover {
  transform: scale(1.03);
  background: var(--accent-red-hover);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 15px 32px;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #ffffff !important;
}

/* ─── CATEGORY PILLS ────────────────────────────────────── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  position: relative;
  z-index: 3;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 200ms ease;
}

.hero-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.pill-icon {
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

/* ─── STATS SECTION (PRO LUXURY DENTAL CLINIC CARDS) ─────────── */
.hero-stats-bar {
  position: relative;
  margin-top: 30px;
  width: 100%;
  z-index: 10;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* ─── SWISS EXECUTIVE GLASS CAPSULE RIBBON ──────────────── */
.hero-stats-bar {
  display: block !important;
  position: relative;
  z-index: 5;
  margin-top: 36px;
  margin-bottom: 24px;
  width: 100%;
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  background: rgba(15, 27, 61, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  overflow: hidden;
  position: relative;
}

.hero-stats-inner::before {
  display: none;
}

.hero-stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  position: relative;
}

.hero-stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
}

[dir="rtl"] .hero-stat-card:not(:last-child)::after {
  left: 0;
  right: auto;
}
[dir="ltr"] .hero-stat-card:not(:last-child)::after {
  right: 0;
  left: auto;
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.12);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E63946;
  flex-shrink: 0;
  box-shadow: none;
  transition: all 0.25s ease;
  margin: 0;
}

.hero-stat-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.hero-stat-card:hover .hero-stat-icon {
  background: #E63946;
  color: #FFFFFF;
  transform: scale(1.08);
}

.hero-stat-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  white-space: nowrap;
}

[dir="rtl"] .hero-stat-info,
[dir="ltr"] .hero-stat-info {
  flex-direction: row;
  align-items: center;
}

.hero-stat-num-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  direction: ltr;
  letter-spacing: -0.3px;
}

.stat-suffix {
  color: #E63946;
  font-weight: 900;
  margin-left: 1px;
}

.hero-stat-label {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  white-space: nowrap;
}

/* ─── ABOUT / WHY CHOOSE US (LUXURY GLASSMOPHISM & ANIMATIONS) ─── */
.about {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: linear-gradient(145deg, rgba(15, 27, 61, 0.72) 0%, rgba(10, 18, 42, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 38px 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #FF4D5E 50%, #E63946 100%);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  border-color: rgba(230, 57, 70, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(230, 57, 70, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(230, 57, 70, 0.12);
  border: 1.5px solid rgba(230, 57, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF4D5E;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.2);
  animation: float-icon-badge 6s ease-in-out infinite alternate;
}

@keyframes float-icon-badge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #FF4D5E 0%, #E63946 100%);
  border-color: #FF6575;
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.55);
}

.feature-card h3 {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  background: rgba(15, 27, 61, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Tajawal', sans-serif;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  border-color: rgba(255, 77, 94, 0.4);
  color: #ffffff;
  background: rgba(255, 77, 94, 0.1);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, #FF4D5E 0%, #E63946 100%) !important;
  border-color: #FF6575 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.03);
}

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

.service-card {
  background: linear-gradient(170deg, rgba(22, 33, 62, 0.75) 0%, rgba(10, 16, 34, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  border-color: rgba(255, 77, 94, 0.5) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(230, 57, 70, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.service-img-wrapper {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
  background: #0a0f20;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.93) contrast(1.03);
}

.service-card:hover .service-img {
  transform: scale(1.08) !important;
  filter: brightness(1.03) contrast(1.05) !important;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 34, 0.98) 0%, rgba(10, 16, 34, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.service-badge {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

[dir="rtl"] .service-badge {
  right: auto !important;
  left: 14px !important;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.badge-general {
  background: rgba(37, 99, 235, 0.75);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.35);
}

.badge-surgical {
  background: rgba(225, 29, 72, 0.75);
  color: #fecdd3;
  border: 1px solid rgba(254, 202, 202, 0.35);
}

.badge-emergency {
  background: rgba(220, 38, 38, 0.8);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, 0.4);
}

.badge-child {
  background: rgba(217, 119, 6, 0.75);
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, 0.35);
}

.service-info {
  padding: 20px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #ff6b7b;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-btn-primary {
  background: linear-gradient(135deg, #FF4D5E 0%, #E63946 100%);
  color: #ffffff !important;
  padding: 9px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.service-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(230, 57, 70, 0.7);
  color: #ffffff !important;
}

.service-btn-primary .btn-arrow {
  transition: transform 0.3s ease;
}

[dir="rtl"] .service-btn-primary:hover .btn-arrow {
  transform: translateX(-4px);
}

[dir="ltr"] .service-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.service-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 77, 94, 0.35);
  color: #ff7b88 !important;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.service-btn-secondary:hover {
  background: rgba(230, 57, 70, 0.16);
  border-color: #FF4D5E;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.25);
}

/* ─── TEAM ───────────────────────────────────────────────── */
.team {
  padding: 80px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: 20px;
  background: linear-gradient(175deg, #132247 0%, #0c1630 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 20px rgba(14, 165, 233, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.team-card-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38bdf8, #2563eb, transparent);
  opacity: 0.85;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.team-card:hover {
  border-color: rgba(56, 189, 248, 0.65);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 35px rgba(56, 189, 248, 0.28);
}

.team-card:hover .team-card-glow-bar {
  opacity: 1;
  background: linear-gradient(90deg, #38bdf8, #ff4d5e, #38bdf8);
}

[data-theme="light"] .team-card {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 61, 0.12);
  box-shadow: 0 10px 30px rgba(15, 27, 61, 0.08);
}

[data-theme="light"] .team-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 18px 36px rgba(15, 27, 61, 0.15);
}

.team-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 250px;
  overflow: hidden;
  margin: 12px 12px 0 12px;
  border-radius: 14px;
  background: #080f21;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: brightness(0.97);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(12, 22, 48, 0.75) 100%);
  pointer-events: none;
}

.team-card:hover .team-img {
  transform: scale(1.08);
  filter: brightness(1.04);
}

.team-badge-pill {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(12, 22, 48, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 0.72rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 2;
}

.team-card:hover .team-badge-pill {
  transform: scale(1.15) rotate(-10deg);
  background: rgba(255, 77, 94, 0.9);
  color: #ffffff;
  border-color: #ff4d5e;
}

.team-details {
  padding: 14px 14px 16px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.team-doc-name {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

[data-theme="light"] .team-doc-name {
  color: #0F1B3D;
}

.team-doc-spec {
  font-size: 0.8rem;
  color: #38bdf8;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
  min-height: 2.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

[data-theme="light"] .team-doc-spec {
  color: #0284c7;
}

.team-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.team-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: #bae6fd;
  font-size: 0.74rem;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-cta {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border-color: #38bdf8;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.45);
  transform: translateY(-2px);
}

/* ─── BOOKING ─────────────────────────────────────────────── */
.booking {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow2) 0%, transparent 70%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-info .section-tag {
  margin-bottom: 20px;
}

.booking-info h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.booking-info>p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.booking-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(14, 26, 54, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.booking-list-item:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.15);
}

[data-theme="light"] .booking-list-item {
  background: #ffffff;
  border-color: rgba(15, 27, 61, 0.12);
  box-shadow: 0 6px 20px rgba(15, 27, 61, 0.06);
}

.booking-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: grid;
  place-items: center;
  color: #38bdf8;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-list-content h3 {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
}

[data-theme="light"] .booking-list-content h3 {
  color: #0F1B3D;
}

.booking-list-content p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

[data-theme="light"] .booking-list-content p {
  color: #475569;
}

.booking-form-wrapper {
  background: linear-gradient(175deg, #132247 0%, #0c1630 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 24px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 30px rgba(14, 165, 233, 0.12);
  transition: all 0.35s ease;
}

[data-theme="light"] .booking-form-wrapper {
  background: #ffffff;
  border-color: rgba(15, 27, 61, 0.14);
  box-shadow: 0 14px 40px rgba(15, 27, 61, 0.08);
}

.booking-form-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #ff4d5e, #38bdf8);
  opacity: 0.9;
}

.booking-form-header {
  margin-bottom: 24px;
}

.booking-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.booking-form-title {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.01em;
}

[data-theme="light"] .booking-form-title {
  color: #0F1B3D;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

[data-theme="light"] .form-label {
  color: #1e293b;
}

/* Label Icon Badges */
.label-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 0.85rem;
  margin-inline-end: 4px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.label-icon-badge.whatsapp {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.label-icon-badge.cyan {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
  color: #38bdf8;
}

.label-icon-badge.gold {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.3);
  color: #fbbf24;
}

.label-icon-badge.purple {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.form-group:focus-within .label-icon-badge {
  transform: scale(1.1);
  box-shadow: 0 0 12px currentColor;
}

.form-input-wrapper {
  position: relative;
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 13px 18px !important;
  background: rgba(9, 18, 38, 0.85);
  border: 1.5px solid rgba(56, 189, 248, 0.22);
  border-radius: 14px;
  color: #ffffff;
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .form-control {
  background: #f8fafc;
  border-color: rgba(15, 27, 61, 0.15);
  color: #0F1B3D;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control option {
  background: #0c1630;
  color: #ffffff;
  padding: 8px;
}

[data-theme="light"] .form-control option {
  background: #ffffff;
  color: #0F1B3D;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

[data-theme="light"] .form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  border-color: #38bdf8;
  background: rgba(14, 28, 60, 0.95);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2), 0 0 16px rgba(56, 189, 248, 0.25);
  color: #ffffff;
}

[data-theme="light"] .form-control:focus {
  background: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
  color: #0F1B3D;
}

.input-glow-icon {
  display: none !important;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 42px !important;
}

[dir="rtl"] select.form-control {
  background-position: left 16px center;
  padding-left: 42px !important;
  padding-right: 18px !important;
}

[dir="ltr"] select.form-control {
  background-position: right 16px center;
  padding-right: 42px !important;
  padding-left: 18px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  border-radius: 6px;
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(170deg);
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 4px;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 85px;
  padding: 14px 18px !important;
}

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

/* Luxury Submit Button */
.btn-luxury-submit {
  width: 100%;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #0284c7 100%);
  background-size: 200% auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.btn-luxury-submit:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 15px 36px rgba(14, 165, 233, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-luxury-submit:active {
  transform: scale(0.98);
}

.btn-submit-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  direction: ltr !important;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 8px;
}

.testimonial-card {
  background: linear-gradient(175deg, #132247 0%, #0c1630 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 25px rgba(14, 165, 233, 0.12);
  transition: all 0.35s ease;
  direction: rtl;
  text-align: right;
}

[dir="ltr"] .testimonial-card {
  direction: ltr;
  text-align: left;
}

[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(15, 27, 61, 0.14);
  box-shadow: 0 14px 35px rgba(15, 27, 61, 0.08);
}

.testimonial-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #ff4d5e, #38bdf8);
  opacity: 0.9;
}

.testimonial-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.stars-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  padding: 4px 12px;
  border-radius: 999px;
}

.stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 0.85rem;
}

.rating-score {
  color: #fbbf24;
  font-weight: 800;
  font-size: 0.85rem;
}

.verified-patient-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.76rem;
  font-weight: 700;
}

.testimonial-quote-icon {
  font-size: 3.2rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: #38bdf8;
  opacity: 0.3;
  margin-bottom: -6px;
  font-weight: bold;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #f1f5f9;
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 500;
}

[data-theme="light"] .testimonial-text {
  color: #1e293b;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

[data-theme="light"] .testimonial-author {
  border-top-color: rgba(15, 27, 61, 0.08);
}

.author-avatar-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.author-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.author-avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0c1630;
}

.author-info h4 {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
  line-height: 1.25;
}

[data-theme="light"] .author-info h4 {
  color: #0F1B3D;
}

.author-treatment-tag {
  display: inline-block;
  font-size: 0.74rem;
  color: #38bdf8;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 2px 10px;
  border-radius: 999px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(19, 34, 71, 0.9);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  color: #bae6fd;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover,
.carousel-btn:active {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border-color: #38bdf8;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  width: 26px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* ─── LUXURY EXECUTIVE FOOTER ────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #091326 0%, #050b14 100%);
  position: relative;
  padding: 60px 0 0 0;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38bdf8, #ff4d5e, #38bdf8, transparent);
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 20px;
}

.footer-card {
  background: rgba(14, 26, 54, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.footer-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
}

[data-theme="light"] .footer-card {
  background: #ffffff;
  border-color: rgba(15, 27, 61, 0.12);
  box-shadow: 0 8px 24px rgba(15, 27, 61, 0.06);
}

/* Brand Card */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

[data-theme="light"] .brand-title {
  color: #0F1B3D;
}

.brand-accent {
  color: #ff4d5e;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: #38bdf8;
  font-weight: 600;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}

[data-theme="light"] .footer-brand-desc {
  color: #475569;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bae6fd;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-link:hover {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.footer-social-link.whatsapp-glow {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  color: #25d366;
}

.footer-social-link.whatsapp-glow:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

/* Headings */
.footer-heading {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .footer-heading {
  color: #0F1B3D;
  border-bottom-color: rgba(15, 27, 61, 0.08);
}

.footer-heading i {
  color: #38bdf8;
  font-size: 0.88rem;
}

/* Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

[data-theme="light"] .footer-link {
  color: #334155;
}

.footer-link i {
  font-size: 0.7rem;
  color: #38bdf8;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  transform: translateX(-4px);
}

.footer-link:hover i {
  opacity: 1;
  transform: translateX(-2px);
}

[dir="ltr"] .footer-link:hover {
  transform: translateX(4px);
}

[dir="ltr"] .footer-link:hover i {
  transform: translateX(2px);
}

/* Contact Items */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

[data-theme="light"] .footer-contact-text {
  color: #334155;
}

.footer-phone-link {
  color: #38bdf8;
  font-weight: 700;
  text-decoration: none;
  direction: ltr;
  display: inline-block;
}

.footer-map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 110px;
  margin-top: 12px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

/* Footer Bottom Bar */
.footer-bottom-bar {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

[data-theme="light"] .footer-bottom-bar {
  border-top-color: rgba(15, 27, 61, 0.1);
}

.footer-copy-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .footer-copy-text {
  color: #64748b;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  color: #bae6fd;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Desktop defaults for drawer extras */
.mobile-drawer-header,
.mobile-drawer-footer,
.menu-arrow,
.nav-active-dot {
  display: none;
}

.mobile-drawer-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-drawer-links li {
  display: inline-flex;
  align-items: center;
}

/* ─── MOBILE NAV DRAWER (ULTRA PRETTY LUXURY GLASS DESIGN) ───────── */
@media (max-width: 900px) {
  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 380px;
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: start;
  }

  /* ── 3-LINE HAMBURGER & MOBILE DRAWER REDESIGN ── */
  /* ── 3-LINE HAMBURGER & MOBILE DRAWER REDESIGN (FRESH ULTRA-CLEAN LUXURY) ── */
  /* ── 3-LINE HAMBURGER & MOBILE DRAWER REDESIGN (FUTURISTIC LUXURY CAPSULE & FLOATING NUMBERED STRIPS) ── */
  /* ─── ULTRA-MODERN APPLE/TESLA MINIMALIST MOBILE MENU & 2-LINE TRIGGER ─── */
  .mobile-drawer-header {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-drawer-brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #38bdf8;
  }

  .mobile-drawer-brand .brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
  }

  .mobile-drawer-brand .brand-title span {
    color: #38bdf8;
  }

  .mobile-drawer-brand .brand-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 2px 0 0 0;
  }

  .drawer-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .drawer-close-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    color: #38bdf8;
    transform: rotate(90deg);
  }

  .mobile-drawer-links {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 12px 14px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: all 0.25s ease !important;
  }

  .nav-active-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s ease;
  }

  .link-title {
    font-family: 'Tajawal', 'Cairo', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .menu-arrow {
    display: inline-block !important;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.25s ease;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(56, 189, 248, 0.08) !important;
    transform: translateX(-4px) !important;
  }

  .nav-link:hover .link-title,
  .nav-link.active .link-title {
    color: #38bdf8 !important;
  }

  .nav-link.active .nav-active-dot {
    opacity: 1;
    transform: scale(1);
  }

  .nav-link:hover .menu-arrow,
  .nav-link.active .menu-arrow {
    opacity: 1;
    color: #38bdf8 !important;
    transform: translateX(0) !important;
  }

  .mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .drawer-cta-btn {
    width: 100%;
    height: 52px;
    padding: 0 24px;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    transition: all 0.25s ease;
  }

  .drawer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.6);
  }

  .mobile-drawer-contact-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4px;
  }

  .drawer-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 16px;
    border-radius: 99px;
  }

  .drawer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .drawer-social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .drawer-social-row a:hover {
    background: #38bdf8;
    color: #060b1a;
    border-color: #38bdf8;
    transform: translateY(-2px);
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(5, 10, 24, 0.96) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-16px) scale(0.98) !important;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
    z-index: 99998 !important;
    padding: 30px 24px 36px !important;
    margin: 0 !important;
    list-style: none !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }

  .nav-menu.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  /* Hide header hamburger button when menu is open */
  .nav-menu.open ~ .nav-actions .hamburger,
  .nav-menu.open ~ .hamburger {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--i, 1) * 0.04s);
    width: 100%;
    list-style: none;
  }

  .nav-menu.open li {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  /* 2-LINE ULTRA-MINIMALIST HAMBURGER TOGGLE BUTTON */
  .hamburger {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(15, 27, 61, 0.7) !important;
    backdrop-filter: blur(14px) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    position: relative !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.25s ease !important;
  }

  .hamburger span {
    display: block !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .hamburger span:nth-child(1) { width: 20px !important; }
  .hamburger span:nth-child(2) { width: 14px !important; margin-inline-start: auto !important; }

  .hamburger:hover,
  .hamburger.active {
    border-color: #38bdf8 !important;
    background: rgba(14, 165, 233, 0.25) !important;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.4) !important;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg) !important;
    width: 20px !important;
    background: #38bdf8 !important;
  }

  .hamburger.active span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg) !important;
    width: 20px !important;
    background: #38bdf8 !important;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
    width: 22px !important;
    background: #ffffff !important;
  }
}

/* ─── FLOATING MOBILE CTA ───────────────────────────────── */
.mobile-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 200, 170, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
  pointer-events: none;
}

.mobile-floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(0, 200, 170, 0.55);
}

.mobile-floating-cta svg {
  flex-shrink: 0;
  animation: pulse-fab-icon 2.5s infinite;
}

@keyframes pulse-fab-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

@media (max-width: 480px) {
  .mobile-floating-cta {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .mobile-floating-cta span {
    display: none;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  /* Hero & Stats bar repositioning */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .hero-stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 20, 28, 0.95);
    padding: 24px 16px;
    margin-top: auto;
  }

  .hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex: none;
    margin: 0 !important;
  }

  .hero-stat+.hero-stat {
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 16px 12px;
    margin: 0 !important;
  }

  .hero-stat-num-box {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    direction: ltr !important;
    unicode-bidi: isolate;
  }

  .hero-stat-label {
    font-size: 0.76rem;
    line-height: 1.35;
    text-align: center;
  }

  /* Form control size optimization for iOS zoom */
  .form-control {
    font-size: 16px;
  }

  /* Touch-friendly Team cards */
  .team-socials {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
    padding: 12px;
  }

  .team-card:hover .team-img {
    transform: none;
  }
}

@media (max-width: 768px) {

  /* Horizontally scrollable services tabs */
  .services-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 24px;
    margin-left: -24px;
    margin-right: -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-tabs::-webkit-scrollbar {
    display: none;
  }

  .services-tabs::after {
    content: '';
    padding-right: 24px;
    flex-shrink: 0;
  }

  .tab-btn {
    flex-shrink: 0;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .booking-form-wrapper {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-actions .btn-play {
    justify-content: center;
  }

  .hero-actions .btn-play {
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-actions .play-icon {
    width: 32px;
    height: 32px;
  }
}

/* ============================================================
   DUHOK SMILE — Before & After Interactive Modal & Slider
   ============================================================ */
.ba-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 18, 0.9);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.ba-modal-content {
  background: linear-gradient(175deg, #101d3b 0%, #081124 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 26px;
  width: 100%;
  max-width: 880px;
  position: relative;
  padding: 34px 30px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 35px rgba(14, 165, 233, 0.12);
  max-height: 92vh;
  overflow-y: auto;
}

[data-theme="light"] .ba-modal-content {
  background: #ffffff;
  border-color: rgba(15, 27, 61, 0.15);
  box-shadow: 0 20px 60px rgba(15, 27, 61, 0.18);
}

.ba-modal-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #ff4d5e, #38bdf8);
  opacity: 0.9;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 26, 54, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #bae6fd;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.modal-close-btn:hover {
  background: #ff4d5e;
  border-color: #ff4d5e;
  color: #ffffff;
  transform: rotate(90deg) scale(1.08);
}

.ba-modal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 30px;
  align-items: center;
}

.ba-slider-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none; /* Critical: allows smooth touch dragging on iOS/Android without page scroll */
  cursor: ew-resize;
  background: #060c18;
  direction: ltr !important; /* Ensure consistent coordinate math */
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-img-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
  will-change: clip-path;
  pointer-events: none;
}

.ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.9), 0 0 4px rgba(255, 255, 255, 0.9);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border: 2.5px solid #ffffff;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.8), 0 0 14px rgba(56, 189, 248, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  z-index: 11;
  pointer-events: none;
  transition: transform 0.12s ease;
}

.ba-slider-container:active .ba-handle-circle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.95), 0 0 20px rgba(56, 189, 248, 0.8);
}

.ba-label {
  position: absolute;
  bottom: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.ba-label-before {
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ba-label-after {
  left: 12px;
  background: rgba(16, 185, 129, 0.9);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
}

.ba-modal-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  width: 100%;
}

.ba-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14, 26, 54, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ba-nav-btn:hover {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border-color: #38bdf8;
  color: #ffffff;
  transform: scale(1.08);
}

.ba-nav-counter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 0.74rem;
  font-weight: 700;
  color: #38bdf8;
}

.ba-details-column {
  display: flex;
  flex-direction: column;
}

.ba-case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 77, 94, 0.12);
  border: 1px solid rgba(255, 77, 94, 0.3);
  color: #ff6575;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ba-title-text {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

[data-theme="light"] .ba-title-text {
  color: #0F1B3D;
}

.ba-desc-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 16px;
}

[data-theme="light"] .ba-desc-text {
  color: #475569;
}

.ba-feedback-card {
  background: rgba(14, 26, 54, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .ba-feedback-card {
  background: #f8fafc;
  border-color: rgba(15, 27, 61, 0.1);
}

.ba-feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ba-verified-pill {
  font-size: 0.72rem;
  color: #34d399;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ba-feedback-quote {
  font-size: 0.86rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.5;
  margin-bottom: 12px;
}

[data-theme="light"] .ba-feedback-quote {
  color: #334155;
}

.ba-patient-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

[data-theme="light"] .ba-patient-row {
  border-top-color: rgba(15, 27, 61, 0.08);
}

.ba-patient-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.ba-patient-name {
  font-size: 0.84rem;
  font-weight: 800;
  color: #ffffff;
}

[data-theme="light"] .ba-patient-name {
  color: #0F1B3D;
}

.ba-patient-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .ba-patient-sub {
  color: #64748b;
}

.ba-modal-booking-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7, #2563eb);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.ba-modal-booking-cta:hover {
  background: linear-gradient(135deg, #0284c7, #ff4d5e);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 77, 94, 0.4);
}

@media (max-width: 768px) {
  .ba-modal {
    padding: 12px;
  }

  .ba-modal-content {
    padding: 24px 16px 20px 16px;
    border-radius: 22px;
    max-height: 94vh;
  }

  .ba-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-slider-container {
    aspect-ratio: 16 / 11;
  }

  .modal-close-btn {
    top: 10px;
    right: 10px;
  }
}

/* ─── FEATURED CLINIC MANAGER ───────────────────────────── */
.manager-featured {
  margin-bottom: 80px;
}

.manager-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  background: linear-gradient(135deg, rgba(13, 22, 27, 0.95), rgba(9, 15, 19, 0.95));
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.manager-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #d97706, #fbbf24);
}

.manager-img-col {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
}

.manager-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.95);
}

.manager-card:hover .manager-img {
  transform: scale(1.03);
}

.manager-exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(0, 200, 170, 0.3);
}

.manager-exp-badge .exp-num {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.manager-exp-badge .exp-text {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.manager-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manager-tag {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: inline-block;
}

.manager-info-col h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.manager-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.manager-qualifications {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manager-qualifications li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.qual-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.manager-specialties-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.spec-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* RTL styles adjustments */
[dir="rtl"] .manager-exp-badge {
  right: auto;
  left: 20px;
}

[dir="rtl"] .manager-qualifications li {
  text-align: right;
}

[dir="rtl"] .spec-item {
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .manager-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .manager-img-col {
    max-width: 320px;
    margin: 0 auto;
  }

  .specialties-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   VIP FEATURED MANAGER CARD & MODAL STYLES
   ========================================== */
.vip-card-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.vip-card-hover:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 200, 170, 0.15), 0 0 35px rgba(251, 191, 36, 0.2);
}

.vip-glow-indicator {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #0b0f19;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
  letter-spacing: 0.02em;
  z-index: 10;
  text-transform: uppercase;
}

[dir="rtl"] .vip-glow-indicator {
  right: auto;
  left: 25px;
}

.vip-glow-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 8px;
  margin-right: 8px;
  letter-spacing: 0.05em;
}

/* VIP Modal Overlay */
.vip-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vip-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.vip-modal-container {
  position: relative;
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  background: #0d161b;
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 24px;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(251, 191, 36, 0.08);
  z-index: 2;
  display: flex;
  flex-direction: column;
  animation: vipModalEntrance 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(251, 191, 36, 0.2) transparent;
}

@keyframes vipModalEntrance {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.vip-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  z-index: 20;
}

.vip-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fbbf24;
  color: #fbbf24;
}

[dir="rtl"] .vip-close-btn {
  right: auto;
  left: 20px;
}

.vip-modal-body {
  display: grid;
  grid-template-columns: 350px 1fr;
  min-height: 500px;
}

@media (max-width: 900px) {
  .vip-modal-body {
    grid-template-columns: 1fr;
  }
}

/* Left Bio Card */
.vip-bio-card {
  background: #090f13;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

[dir="rtl"] .vip-bio-card {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.vip-img-frame {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  box-shadow: 0 12px 30px rgba(0, 200, 170, 0.2);
  margin-bottom: 20px;
}

.vip-profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #0c151a;
}

.vip-badge-vip {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #0b0f19;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.vip-experience-meta {
  text-align: center;
  margin-top: 12px;
  z-index: 2;
}

.vip-exp-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
}

.vip-exp-lbl {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vip-photo-collage {
  margin-top: auto;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .vip-photo-collage {
    display: none;
  }
}

.collage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(9, 15, 19, 0.9) 0%, rgba(9, 15, 19, 0.2) 100%);
}

/* Right Detailed Card */
.vip-details-card {
  padding: 40px;
}

@media (max-width: 600px) {
  .vip-details-card {
    padding: 24px;
  }
}

.vip-section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.vip-doctor-name {
  font-family: 'Playfair Display', 'Outfit', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.vip-native-name {
  font-family: 'Cairo', 'Kufam', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.vip-doctor-title {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

/* VIP Modal Interactive Tabs & Layout */
.vip-quick-stats {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
}

.vip-stat-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vip-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
}

.vip-stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.vip-cta-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border: none;
  border-radius: 12px;
  color: #0b0f19;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
  transition: all 0.3s ease;
}

.vip-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
  filter: brightness(1.05);
}

/* Tabs System */
.vip-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.vip-tab-trigger {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.vip-tab-trigger span {
  margin-right: 4px;
}

.vip-tab-trigger:hover {
  color: #fff;
}

.vip-tab-trigger.active {
  color: #fbbf24;
}

.vip-tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.vip-tab-panel {
  display: none;
  animation: vipTabFade 0.35s ease forwards;
}

.vip-tab-panel.active {
  display: block;
}

@keyframes vipTabFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline */
.vip-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vip-timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 1.5px solid rgba(251, 191, 36, 0.2);
}

[dir="rtl"] .vip-timeline-item {
  padding-left: 0;
  padding-right: 20px;
  border-left: none;
  border-right: 1.5px solid rgba(251, 191, 36, 0.2);
}

.vip-timeline-dot {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}

[dir="rtl"] .vip-timeline-dot {
  left: auto;
  right: -5px;
}

.vip-timeline-content {
  flex: 1;
}

.vip-timeline-lang {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 1px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.vip-timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0 0 4px 0;
}

/* Clinical Specialties Cards */
.vip-specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .vip-specialties-grid {
    grid-template-columns: 1fr;
  }
}

.vip-spec-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.vip-spec-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(251, 191, 36, 0.15);
  transform: translateY(-2px);
}

.vip-spec-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.vip-spec-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px 0;
}

.vip-spec-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Patent Box */
.vip-patent-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.03), rgba(217, 119, 6, 0.03));
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 16px;
  padding: 24px;
  box-shadow: inset 0 0 15px rgba(251, 191, 36, 0.02);
}

.vip-patent-header {
  margin-bottom: 14px;
}

.vip-patent-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 900;
  background: #fbbf24;
  color: #0b0f19;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.vip-patent-header h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.vip-patent-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.vip-patent-meta {
  font-size: 0.8rem;
  color: #fbbf24;
  font-weight: 600;
}

/* Accessibility contrast overrides for VIP Modal */
.vip-modal-container {
  color: #e2e8f0;
  /* Soft light grey text by default */
}

.vip-timeline-content p {
  color: #e2e8f0 !important;
}

.vip-timeline-content p strong {
  color: #ffffff !important;
}

.vip-spec-card h4 {
  color: #ffffff !important;
}

.vip-spec-card p {
  color: #94a3b8 !important;
}

.vip-patent-desc {
  color: #e2e8f0 !important;
}

.vip-doctor-title {
  color: #fbbf24 !important;
  /* Gold/yellow for the subtitle */
}

/* Premium Featured Manager Card & Elements */
.manager-header-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.manager-tag-icon {
  margin-right: 6px;
  font-size: 1rem;
}

[dir="rtl"] .manager-tag-icon {
  margin-right: 0;
  margin-left: 6px;
}

.manager-name-grad {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #ffffff 30%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px !important;
}

.verified-doctor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbbf24;
  color: #0b0f19;
  font-size: 0.72rem;
  font-weight: 950;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  flex-shrink: 0;
}

.manager-exp-badge {
  animation: expBadgePulse 2.5s infinite ease-in-out;
}

@keyframes expBadgePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 200, 170, 0.4);
  }

  100% {
    transform: scale(1);
  }
}

/* Specialties Chips Grid */
.specialties-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 600px) {
  .specialties-chips-grid {
    grid-template-columns: 1fr;
  }
}

.spec-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.spec-chip-icon {
  font-size: 1.1rem;
}

.vip-card-hover:hover .spec-chip {
  background: rgba(251, 191, 36, 0.02);
  border-color: rgba(251, 191, 36, 0.15);
  color: #fff;
}

.spec-chip:hover {
  background: rgba(251, 191, 36, 0.06) !important;
  border-color: rgba(251, 191, 36, 0.35) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(251, 191, 36, 0.15);
}

/* VIP Pulse Indicator */
.vip-glow-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.vip-glow-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #0b0f19;
  border-radius: 50%;
  position: relative;
}

.vip-glow-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: #0b0f19;
  animation: pulseScale 1.8s infinite ease-out;
}

@keyframes pulseScale {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* ==========================================
/* ============================================================
   EXECUTIVE MEDICAL DIRECTOR LUXURY SPOTLIGHT CARD
   ============================================================ */
.manager-luxury-spotlight {
  max-width: 1060px;
  margin: 0 auto 70px auto;
  width: 100%;
}

.luxury-spotlight-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: linear-gradient(165deg, rgba(20, 30, 58, 0.85) 0%, rgba(10, 16, 34, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.manager-luxury-spotlight:hover .luxury-spotlight-card {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 94, 0.45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 35px rgba(230, 57, 70, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Portrait Area */
.luxury-image-area {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #080d1a;
}

.luxury-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.95);
}

.manager-luxury-spotlight:hover .luxury-img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

.luxury-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 34, 0.95) 0%, rgba(10, 16, 34, 0.2) 50%, transparent 100%);
  pointer-events: none;
}

/* Experience Badge */
.luxury-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(12, 18, 36, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 8px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

[dir="rtl"] .luxury-experience-badge {
  right: auto;
  left: 20px;
}

.manager-luxury-spotlight:hover .luxury-experience-badge {
  border-color: rgba(255, 77, 94, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.3);
}

.luxury-experience-badge .badge-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: #ff6575;
  line-height: 1;
}

.luxury-experience-badge .badge-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Content Area */
.luxury-content-area {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.luxury-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.luxury-title-tag {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ff6575;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.luxury-vip-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  background: rgba(255, 77, 94, 0.15);
  color: #ff4d5e;
  border: 1px solid rgba(255, 77, 94, 0.35);
  padding: 2px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.luxury-name {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.manager-luxury-spotlight:hover .luxury-name {
  color: #ff6575 !important;
}

.luxury-subtitle {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-bottom: 18px;
}

.luxury-statement {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.68;
  margin-bottom: 24px;
}

.luxury-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.focus-tag {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 14px;
  border-radius: 99px;
  transition: all 0.25s ease;
}

.manager-luxury-spotlight:hover .focus-tag {
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.focus-tag:hover {
  background: rgba(255, 77, 94, 0.15) !important;
  border-color: #ff4d5e !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.luxury-cta-wrapper {
  margin-top: 4px;
}

.luxury-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff !important;
  background: linear-gradient(135deg, #FF4D5E 0%, #E63946 100%);
  border: none;
  padding: 11px 26px;
  border-radius: 99px;
  box-shadow: 0 8px 22px rgba(230, 57, 70, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.manager-luxury-spotlight:hover .luxury-button {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.65);
  color: #ffffff !important;
}

.luxury-button .btn-arrow {
  transition: transform 0.3s ease;
}

[dir="rtl"] .manager-luxury-spotlight:hover .luxury-button .btn-arrow {
  transform: translateX(-4px);
}

[dir="ltr"] .manager-luxury-spotlight:hover .luxury-button .btn-arrow {
  transform: translateX(4px);
}

/* Responsive (Spotlight card & full mobile overhaul) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .cases-grid,
  .team-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  body {
    font-size: 15px;
    overflow-x: hidden;
  }

  /* Container & Spacings */
  .container {
    padding: 0 16px;
  }

  section {
    padding: 48px 0 !important;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
    line-height: 1.25;
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Header & Navigation for Mobile */
  #header {
    padding: 0 8px;
  }

  .nav-wrapper {
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .logo img {
    height: 38px !important;
    width: 38px !important;
  }

  .logo-text-duhok,
  .logo-text-smile {
    font-size: 1.05rem !important;
  }

  .nav-actions {
    gap: 6px;
    align-items: center;
  }

  .nav-actions .btn-primary,
  .nav-actions .btn {
    display: none !important;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  /* Hero Section for Mobile */
  .hero {
    padding-top: calc(var(--nav-h) + 24px) !important;
    padding-bottom: 30px !important;
    min-height: auto !important;
  }

  .hero-bg {
    background-image: url('../images/background5.png') !important;
    background-position: center 20% !important;
    background-size: cover !important;
  }

  .hero-overlay {
    background: linear-gradient(165deg, rgba(10, 25, 49, 0.96) 0%, rgba(15, 45, 120, 0.88) 55%, rgba(239, 68, 68, 0.35) 100%) !important;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero h1,
  [dir="rtl"] .hero h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
    max-width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: center !important;
  }

  .hero-actions .btn,
  .btn-smile-primary,
  .btn-smile-secondary {
    width: auto !important;
    padding: 9px 18px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
  }

  .hero-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .hero-pill {
    padding: 7px 14px !important;
    font-size: 0.78rem !important;
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }



  /* Services & Cases */
  .services-grid,
  .cases-grid,
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Team Grid: 2 Members Per Line on Mobile */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .team-card {
    border-radius: 18px !important;
    background: linear-gradient(175deg, #132247 0%, #0c1630 100%) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  }

  .team-card:active {
    transform: scale(0.97) !important;
    border-color: rgba(56, 189, 248, 0.7) !important;
  }

  .team-img-wrapper {
    aspect-ratio: 1 / 1 !important;
    max-height: 175px !important;
    margin: 8px 8px 0 8px !important;
    border-radius: 12px !important;
  }

  .team-badge-pill {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.65rem !important;
    bottom: 6px !important;
    right: 6px !important;
  }

  .team-details {
    padding: 10px 8px 12px 8px !important;
    text-align: center !important;
  }

  .team-doc-name {
    font-size: 0.88rem !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
    font-weight: 800 !important;
  }

  .team-doc-spec {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    min-height: auto !important;
  }

  .team-card-cta {
    padding: 4px 10px !important;
    font-size: 0.68rem !important;
    gap: 4px !important;
  }

  .service-card,
  .case-card,
  .doctor-card,
  .review-card,
  .feature-card {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  /* Doctor Spotlight & VIP Card */
  .luxury-spotlight-card {
    grid-template-columns: 1fr !important;
    border-radius: 20px !important;
  }

  .luxury-image-area {
    min-height: 260px !important;
    max-height: 320px !important;
  }

  .luxury-content-area {
    padding: 24px 18px !important;
  }

  .luxury-name {
    font-size: 1.75rem !important;
  }

  .luxury-subtitle {
    font-size: 0.92rem !important;
  }

  .luxury-focus-tags {
    gap: 6px;
    margin-bottom: 20px;
  }

  .focus-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .luxury-button {
    width: 100%;
    justify-content: center;
  }

  /* Booking Section */
  .booking-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
    /* Prevents auto-zoom on iOS */
    padding: 12px 14px !important;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer-card {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    align-items: center !important;
  }

  /* Modals (VIP Doctor Modal & Cases Modal) */
  .modal-dialog,
  .vip-modal-dialog,
  .case-modal-dialog {
    width: 95% !important;
    max-width: 100% !important;
    margin: 12px auto !important;
    padding: 20px 14px !important;
    max-height: 90vh !important;
    border-radius: 20px !important;
    overflow-y: auto !important;
  }

  .vip-nav-tabs {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .vip-nav-tab {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
    flex: 1 1 auto;
    text-align: center;
  }

  .vip-doctor-header {
    flex-direction: column !important;
    text-align: center;
    gap: 16px !important;
  }

  .vip-doctor-avatar {
    width: 90px !important;
    height: 90px !important;
    margin: 0 auto;
  }

  .vip-doctor-meta h2 {
    font-size: 1.4rem !important;
  }

  /* VIP Doctor Modal Mobile Polish */
  .vip-modal-container {
    width: 95% !important;
    max-width: 100% !important;
    margin: 10px auto !important;
    border-radius: 24px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }

  .vip-modal-body {
    grid-template-columns: 1fr !important;
  }

  .vip-bio-card {
    padding: 24px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-left: none !important;
    border-right: none !important;
  }

  .vip-img-frame {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 16px !important;
  }

  .vip-details-card {
    padding: 20px 16px !important;
  }

  .vip-doctor-name {
    font-size: 1.4rem !important;
    text-align: center;
  }

  .vip-doctor-title {
    text-align: center;
    font-size: 0.86rem !important;
    margin-bottom: 16px !important;
  }

  .vip-tabs-nav {
    justify-content: center;
    gap: 6px !important;
  }

  .vip-tab-trigger {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem !important;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .stat-number {
    font-size: 1.4rem !important;
  }

  .btn {
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }

  .nav-actions {
    gap: 6px;
  }
}

/* ============================================================
   1. HOMEPAGE CLINIC MANAGER LUXURY SPOTLIGHT CARD
   ============================================================ */
.manager-luxury-spotlight {
  margin-bottom: 50px;
  cursor: pointer;
}

.luxury-spotlight-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: linear-gradient(165deg, rgba(14, 23, 42, 0.9) 0%, rgba(6, 10, 22, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 28px !important;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 94, 0.45) !important;
  box-shadow: 0 35px 100px rgba(230, 57, 70, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.luxury-image-area {
  position: relative;
  background: #080d1a;
  overflow: hidden;
}

.luxury-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.4s ease;
}

.luxury-spotlight-card:hover .luxury-img {
  transform: scale(1.03);
}

.luxury-experience-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: linear-gradient(135deg, #FF4D5E, #E63946);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.4);
}

[dir="rtl"] .luxury-experience-badge {
  right: auto;
  left: 14px;
}

.luxury-experience-badge .badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.luxury-experience-badge .badge-lbl {
  font-size: 0.62rem;
  font-weight: 700;
}

.luxury-content-area {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.luxury-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.luxury-title-tag {
  font-size: 0.76rem;
  font-weight: 800;
  color: #ff6575;
  background: rgba(255, 77, 94, 0.14);
  border: 1px solid rgba(255, 77, 94, 0.3);
  padding: 4px 12px;
  border-radius: 99px;
}

.luxury-vip-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.35);
  padding: 4px 10px;
  border-radius: 99px;
}

.luxury-name {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.25;
}

.luxury-subtitle {
  font-size: 0.95rem;
  color: #ff6575;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.luxury-statement {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 18px;
}

.luxury-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.focus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: 0.2s;
}

.focus-tag i {
  color: #ff6575;
}

.luxury-spotlight-card:hover .focus-tag {
  background: rgba(255, 77, 94, 0.08);
  border-color: rgba(255, 77, 94, 0.25);
}

.luxury-cta-wrapper {
  margin-top: auto;
}

.luxury-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #FF4D5E, #E63946);
  padding: 10px 22px;
  border-radius: 99px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  transition: 0.25s;
}

.luxury-spotlight-card:hover .luxury-button {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.6);
}

[dir="rtl"] .luxury-spotlight-card:hover .luxury-button {
  transform: translateX(-4px);
}

@media (max-width: 850px) {
  .luxury-spotlight-card {
    grid-template-columns: 1fr;
  }
  .luxury-image-area {
    height: 240px;
  }
  .luxury-content-area {
    padding: 22px 18px;
  }
  .luxury-name {
    font-size: 1.5rem !important;
  }
}

/* ============================================================
   2. DR. EHSAN MANSOOR — NEW LUXURY EXECUTIVE PROFILE SHEET
   ============================================================ */
.ehsan-modal-overlay,
.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at center, rgba(8, 14, 28, 0.85) 0%, rgba(2, 5, 12, 0.96) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ehsan-backdrop,
.vip-modal-backdrop {
  position: absolute;
  inset: 0;
}

/* Master Executive Sheet Container */
.ehsan-sheet-container,
.grand-vip-suite {
  position: relative;
  z-index: 2;
  width: 95vw;
  max-width: 880px;
  height: 90vh;
  max-height: 860px;
  display: flex !important;
  flex-direction: column !important;
  background: linear-gradient(175deg, #0d1629 0%, #060a15 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 28px !important;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 10px 50px rgba(14, 165, 233, 0.15) !important;
  overflow: hidden !important;
  animation: ehsanModalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ehsanModalSlideUp {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Top Sticky Navigation Bar */
.ehsan-top-bar {
  flex-shrink: 0;
  padding: 14px 20px 10px 20px;
  background: rgba(13, 22, 41, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.ehsan-bar-pill {
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 auto 10px auto;
}

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

.ehsan-bar-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ehsan-verified-icon {
  color: #38bdf8;
  font-size: 1.1rem;
}

.ehsan-bar-title {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.ehsan-close-btn,
.vip-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ehsan-close-btn:hover,
.vip-close-btn:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
}

/* Scrollable Body */
.ehsan-scroll-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 24px 36px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

/* 1. HERO EXECUTIVE CARD */
.ehsan-hero-card {
  position: relative;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04) 0%, rgba(14, 165, 233, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.ehsan-hero-bg-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

[dir="rtl"] .ehsan-hero-bg-glow {
  right: auto;
  left: -40px;
}

.ehsan-hero-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

/* Avatar */
.ehsan-avatar-box {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.ehsan-avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #fbbf24, #2563eb);
  opacity: 0.95;
  filter: blur(1.5px);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

.ehsan-avatar-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 3px solid #0d1629;
  background: #080d1a;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hero Info */
.ehsan-hero-info {
  flex: 1;
}

.ehsan-name {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 6px 0 !important;
  line-height: 1.25;
}

.ehsan-specialty {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

/* Photo Switcher */
.ehsan-photo-toggle-bar {
  display: flex;
  background: rgba(11, 19, 36, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 99px;
  padding: 3px;
  gap: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.ehsan-toggle-btn {
  padding: 6px 16px;
  border-radius: 99px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.ehsan-toggle-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  box-shadow: 0 2px 14px rgba(14, 165, 233, 0.45);
}

/* 1-Row Compact Stats Strip */
.ehsan-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(56, 189, 248, 0.2);
  border-radius: 18px;
  padding: 12px 16px;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ehsan-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ehsan-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #38bdf8;
  line-height: 1.1;
}

.ehsan-stat-num.red {
  color: #38bdf8;
  text-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}

.ehsan-stat-num.gold {
  color: #fbbf24;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.3);
}

.ehsan-stat-txt {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 2px;
}

.ehsan-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

/* VIP CTA Button */
.ehsan-vip-cta-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 99px;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  transition: all 0.25s ease;
}

.ehsan-vip-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #38bdf8 0%, #1d4ed8 100%);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.65);
}

.ehsan-cta-arrow {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

[dir="rtl"] .ehsan-vip-cta-btn:hover .ehsan-cta-arrow {
  transform: translateX(-4px);
}

[dir="ltr"] .ehsan-cta-arrow {
  transform: rotate(180deg);
}

/* 2. STICKY SEGMENTED TABS CONTROLLER */
.ehsan-tabs-nav {
  position: sticky;
  top: -20px;
  z-index: 20;
  display: flex;
  gap: 8px;
  padding: 12px 0 16px 0;
  background: linear-gradient(180deg, #0d1629 80%, rgba(13, 22, 41, 0) 100%);
  overflow-x: auto;
  scrollbar-width: none;
}

.ehsan-tabs-nav::-webkit-scrollbar {
  display: none;
}

.ehsan-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 99px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(15, 27, 61, 0.7);
  color: #94a3b8;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.ehsan-tab-pill:hover {
  background: rgba(14, 165, 233, 0.15);
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.4);
}

.ehsan-tab-pill.active {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(37, 99, 235, 0.25)) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.35);
}

.ehsan-tab-pill.active i {
  color: #38bdf8;
}

/* Tab Panes */
.ehsan-tabs-content {
  margin-top: 4px;
}

.vip-tab-pane {
  display: none;
  animation: ehsanPaneIn 0.25s ease forwards;
}

.vip-tab-pane.active {
  display: block;
}

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

/* TAB 1: PATENT SHOWCASE */
.ehsan-patent-card {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.12) 0%, rgba(10, 18, 38, 0.95) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.ehsan-patent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.ehsan-patent-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.ehsan-patent-tag {
  font-size: 0.68rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ehsan-patent-title {
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.4 !important;
  margin: 12px 0 !important;
}

.ehsan-patent-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ehsan-patent-desc strong {
  color: #38bdf8;
}

/* 4 Bento Tiles */
.ehsan-benefits-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ehsan-bento-tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.ehsan-bento-tile:hover {
  background: rgba(14, 165, 233, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.ehsan-bento-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ehsan-bento-icon.cyan { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.ehsan-bento-icon.gold { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.ehsan-bento-icon.emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.ehsan-bento-icon.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }

.ehsan-bento-text h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 3px 0;
}

.ehsan-bento-text p {
  font-size: 0.74rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

/* TAB 2: IMPLANTS LIST */
.ehsan-implants-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ehsan-implant-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.ehsan-implant-item:hover {
  background: rgba(14, 165, 233, 0.07);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

.ehsan-implant-item.featured-blue {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(56, 189, 248, 0.25);
}

.ehsan-implant-item.featured-gold {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(245, 158, 11, 0.25);
}

.ehsan-implant-item.featured-purple {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(168, 85, 247, 0.25);
}

.ehsan-implant-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.ehsan-implant-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ehsan-implant-num.gold { color: #fbbf24; background: rgba(245, 158, 11, 0.12); }
.ehsan-implant-num.purple { color: #c084fc; background: rgba(168, 85, 247, 0.12); }

.ehsan-implant-title-box {
  flex: 1;
}

.ehsan-implant-title-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.ehsan-implant-sub {
  font-size: 0.64rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.ehsan-implant-sub.highlight { color: #38bdf8; }
.ehsan-implant-sub.gold { color: #fbbf24; }
.ehsan-implant-sub.purple { color: #c084fc; }

.ehsan-implant-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.ehsan-implant-ico.cyan { background: rgba(14, 165, 233, 0.15); color: #38bdf8; }
.ehsan-implant-ico.blue { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }
.ehsan-implant-ico.gold { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.ehsan-implant-ico.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }

.ehsan-implant-item p {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* TAB 3: CERTIFICATES SUITE */
.ehsan-cert-suite {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ehsan-cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ehsan-cert-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 4px;
}

.ehsan-cert-title-row h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.ehsan-cert-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ehsan-filter-btn {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #94a3b8;
  font-family: 'Outfit', 'Tajawal', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.ehsan-filter-btn.active,
.ehsan-filter-btn:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: #38bdf8;
  color: #ffffff;
}

.ehsan-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ehsan-cert-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.ehsan-cert-card:hover {
  background: rgba(14, 165, 233, 0.07);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

.ehsan-cert-seal {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ehsan-cert-card[data-cat="patent"] .ehsan-cert-seal {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.ehsan-cert-card[data-cat="degree"] .ehsan-cert-seal {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.ehsan-cert-card[data-cat="media"] .ehsan-cert-seal {
  background: rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.4);
  color: #fb7185;
}

.ehsan-cert-info {
  flex: 1;
}

.ehsan-cert-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.ehsan-cert-year {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
}

.ehsan-cert-cat {
  font-size: 0.62rem;
  font-weight: 800;
  color: #94a3b8;
}

.ehsan-cert-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 3px 0;
  line-height: 1.35;
}

.ehsan-cert-issuer {
  font-size: 0.74rem;
  color: #38bdf8;
  font-weight: 600;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ehsan-cert-desc {
  font-size: 0.76rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

/* TAB 4: ACADEMIC & MEDIA */
.ehsan-academic-suite {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ehsan-media-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(13, 22, 41, 0.8) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 20px 22px;
  border-radius: 20px;
}

.ehsan-media-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ehsan-media-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 6px;
}

.ehsan-media-chan {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ehsan-media-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.ehsan-media-card p {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

/* Timeline */
.ehsan-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ehsan-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.ehsan-timeline-item:hover {
  background: rgba(14, 165, 233, 0.06);
  border-color: rgba(56, 189, 248, 0.3);
}

.ehsan-timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.14);
  color: #38bdf8;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ehsan-timeline-icon.emerald { background: rgba(16, 185, 129, 0.14); color: #34d399; }
.ehsan-timeline-icon.gold { background: rgba(245, 158, 11, 0.14); color: #fbbf24; }

.ehsan-timeline-content h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.ehsan-timeline-content p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   MOBILE & TABLET OPTIMIZATION (iPhone & Android Native Sheet)
   ============================================================ */
@media (max-width: 768px) {
  .ehsan-modal-overlay,
  .vip-modal {
    padding: 0 !important;
    align-items: flex-end !important;
  }

  .ehsan-sheet-container,
  .grand-vip-suite {
    width: 100vw !important;
    height: 94dvh !important;
    max-height: 94dvh !important;
    border-radius: 28px 28px 0 0 !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
  }

  .ehsan-scroll-body {
    padding: 14px 16px 36px 16px !important;
  }

  .ehsan-hero-card {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .ehsan-hero-top-row {
    gap: 14px !important;
    margin-bottom: 12px !important;
  }

  .ehsan-avatar-box {
    width: 72px !important;
    height: 72px !important;
  }

  .ehsan-name {
    font-size: 1.2rem !important;
  }

  .ehsan-specialty {
    font-size: 0.72rem !important;
  }

  .ehsan-stats-strip {
    padding: 10px 8px !important;
    margin-bottom: 14px !important;
  }

  .ehsan-stat-num {
    font-size: 1.15rem !important;
  }

  .ehsan-stat-txt {
    font-size: 0.62rem !important;
  }

  .ehsan-vip-cta-btn {
    padding: 12px 16px !important;
    font-size: 0.84rem !important;
  }

  .ehsan-tabs-nav {
    top: -14px !important;
    padding: 10px 0 14px 0 !important;
    gap: 6px !important;
  }

  .ehsan-tab-pill {
    padding: 8px 14px !important;
    font-size: 0.76rem !important;
  }

  .ehsan-patent-card {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .ehsan-patent-title {
    font-size: 1.05rem !important;
  }

  .ehsan-patent-desc {
    font-size: 0.82rem !important;
  }

  .ehsan-benefits-bento,
  .ehsan-cert-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .ehsan-implant-item {
    padding: 14px 16px !important;
  }

  .ehsan-implant-head {
    gap: 10px !important;
  }

  .ehsan-implant-title-box h4 {
    font-size: 0.88rem !important;
  }
}

/* ============================================================
   DUHOK SMILE — PREMIUM LUXURY MOTION DESIGN SYSTEM
   Inspired by Apple, Stripe, Vercel, Linear & Framer
   ============================================================ */

:root {
  --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 400ms;
  --duration-normal: 600ms;
  --duration-slow: 800ms;
}

/* ─── GPU ACCELERATION & SMOOTH SCROLL ────────────────── */
html {
  scroll-behavior: smooth !important;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.service-card,
.doctor-card,
.testimonial-card,
.btn,
.nav-link,
.hero-glow-orb,
.luxury-img {
  will-change: transform, opacity;
  transform: translateZ(0);
}

/* ─── PAGE LOAD STAGGERED SEQUENCES ────────────────────── */
@keyframes pageLoadNav {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageLoadFadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageLoadScaleUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes buttonShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 220%;
  }
}

/* Trigger Initial Load Animations */
body.loaded #header {
  animation: pageLoadNav 0.7s var(--ease-apple) both;
}

body.loaded .hero-content .section-tag {
  animation: pageLoadFadeUp 0.7s var(--ease-apple) 0.12s both;
}

body.loaded .hero-content h1 {
  animation: pageLoadFadeUp 0.75s var(--ease-apple) 0.24s both;
}

body.loaded .hero-content .hero-subtitle {
  animation: pageLoadFadeUp 0.75s var(--ease-apple) 0.36s both;
}

body.loaded .hero-content .hero-actions {
  animation: pageLoadFadeUp 0.75s var(--ease-apple) 0.48s both;
}

body.loaded .hero-content .hero-pills {
  animation: pageLoadFadeUp 0.75s var(--ease-apple) 0.6s both;
}

body.loaded .hero-stats-bar {
  animation: pageLoadFadeUp 0.8s var(--ease-apple) 0.75s both;
}

body.loaded .luxury-image-area {
  animation: pageLoadScaleUp 0.85s var(--ease-apple) 0.5s both;
}

/* ─── NAVBAR & MENU INTERACTIONS ─────────────────────── */
#header {
  transition: padding 0.5s var(--ease-apple), background-color 0.5s var(--ease-apple), backdrop-filter 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple), border-color 0.5s var(--ease-apple);
}

#header.scrolled {
  background: var(--bg-nav) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 10px 30px rgba(0, 70, 140, 0.08) !important;
  border-bottom: 1px solid var(--border) !important;
}

.nav-link {
  position: relative;
  transition: color 0.4s var(--ease-apple), transform 0.4s var(--ease-apple);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-apple);
}

[dir="rtl"] .nav-link::after {
  transform-origin: right;
}

.nav-link:hover {
  color: var(--accent) !important;
  transform: translateY(-2px);
  background: transparent !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--accent) !important;
  font-weight: 600;
  background: transparent !important;
}

/* ─── HERO BACKGROUND GRADIENT & PARTICLES ───────────── */
.hero {
  position: relative;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, var(--accent-glow2) 0%, transparent 70%);
  animation: subtleGradientPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes subtleGradientPulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

/* ─── BUTTONS LUXURY INTERACTIONS ────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-apple), box-shadow 0.4s var(--ease-apple), background 0.4s var(--ease-apple), border-color 0.4s var(--ease-apple);
}

/* Passing Shine Light Effect */
.btn-primary::before,
.btn-red::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn-primary:hover::before,
.btn-red:hover::before {
  animation: buttonShimmer 0.85s var(--ease-apple);
}

.btn-primary:hover,
.btn-red:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px var(--accent-glow) !important;
}

.btn-primary:active,
.btn-red:active,
.btn-secondary:active,
.btn:active,
.tab-btn:active {
  transform: scale(0.98) !important;
  transition: transform 0.15s var(--ease-apple) !important;
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s var(--ease-apple), border-color 0.4s var(--ease-apple), transform 0.4s var(--ease-apple);
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-apple);
  z-index: -1;
}

.btn-secondary:hover::after {
  transform: scaleX(1);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary svg,
.btn-secondary i {
  transition: transform 0.4s var(--ease-apple);
}

.btn-secondary:hover svg,
.btn-secondary:hover i {
  transform: translateX(4px);
}

[dir="rtl"] .btn-secondary:hover svg,
[dir="rtl"] .btn-secondary:hover i {
  transform: translateX(-4px);
}

/* ─── SECTION ENTRANCE REVEAL ANIMATIONS ─────────────── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: transform 0.7s var(--ease-apple), opacity 0.7s var(--ease-apple);
  will-change: transform, opacity;
}

.reveal,
.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

[dir="rtl"] .reveal-left {
  transform: translateX(40px);
}

.reveal-right {
  transform: translateX(40px);
}

[dir="rtl"] .reveal-right {
  transform: translateX(-40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ─── CARDS PREMIUM INTERACTIONS ─────────────────────── */
.service-card,
.doctor-card,
.testimonial-card,
.luxury-spotlight-card,
.s-spec-box {
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple), border-color 0.5s var(--ease-apple), background-color 0.5s var(--ease-apple);
}

.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(0, 132, 201, 0.16) !important;
  border-color: var(--accent) !important;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card:hover .service-badge {
  transform: translateY(-2px);
}

.service-card:hover svg,
.service-card:hover i {
  transform: scale(1.15) rotate(5deg);
  color: var(--accent);
  transition: transform 0.4s var(--ease-apple), color 0.4s var(--ease-apple);
}

.testimonial-card:hover,
.testimonial-slide:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 45px rgba(0, 70, 140, 0.12) !important;
}

.luxury-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 132, 201, 0.2);
}

.luxury-spotlight-card:hover .luxury-img {
  transform: scale(1.04);
}

/* ─── IMAGES & ZOOM REVEALS ───────────────────────────── */
img {
  transition: transform 0.6s var(--ease-apple), opacity 0.6s var(--ease-apple);
}

.service-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-img-wrapper img:hover {
  transform: scale(1.05);
}

/* ─── FORM INPUT FOCUS & SUBMIT BUTTON ───────────────── */
input,
textarea,
select {
  transition: border-color 0.4s var(--ease-apple), box-shadow 0.4s var(--ease-apple), background-color 0.4s var(--ease-apple);
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px var(--accent-glow) !important;
  background-color: var(--bg-primary) !important;
}

/* ─── ICONS & MICRO-INTERACTIONS ─────────────────────── */
.icon-hover,
.social-link,
.theme-toggle,
.play-icon {
  transition: transform 0.4s var(--ease-apple), color 0.4s var(--ease-apple), background-color 0.4s var(--ease-apple), box-shadow 0.4s var(--ease-apple);
}

.social-link:hover,
.theme-toggle:hover {
  transform: translateY(-3px) scale(1.1) rotate(5deg) !important;
  color: var(--accent) !important;
  box-shadow: 0 8px 25px var(--accent-glow) !important;
}

/* ─── FOOTER LINK UNDERLINE ANIMATION ───────────────── */
.footer-links a,
.footer a {
  position: relative;
  transition: color 0.4s var(--ease-apple);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-apple);
}

[dir="rtl"] .footer-links a::after {
  transform-origin: right;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

/* ─── ACCESSIBILITY: REDUCED MOTION ──────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-bg,
  .hero-glow-orb,
  .hero-gradient-overlay {
    animation: none !important;
  }
}

/* ─── MOBILE MEDIA QUERIES (OPTIMIZED FOR CLEAN PHONE FOLD & SCROLL) ─── */
@media (max-width: 900px) {
  .hero {
    padding-top: calc(var(--nav-h) + 205px) !important;
    padding-bottom: 60px !important;
    min-height: auto !important;
  }

  .hero-bg,
  [dir="rtl"] .hero-bg {
    background-image: url('../images/background5.png') !important;
    background-position: center 20% !important;
    background-size: cover !important;
    transform: none !important;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(15, 27, 61, 0.75) 0%, rgba(15, 27, 61, 0.88) 100%) !important;
  }

  .hero-content {
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding-top: 40px !important;
    padding-bottom: 10px !important;
  }

  .hero h1,
  [dir="rtl"] .hero h1 {
    font-family: 'Tajawal', sans-serif !important;
    font-size: clamp(1.5rem, 5.4vw, 2.1rem) !important;
    font-weight: 900 !important;
    line-height: 1.32 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45) !important;
  }

  .hero-subtitle {
    font-family: 'Tajawal', 'Cairo', sans-serif !important;
    font-size: 0.94rem !important;
    font-weight: 500 !important;
    line-height: 1.68 !important;
    margin-bottom: 22px !important;
    max-width: 95% !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
  }

  /* Hero Action Buttons */
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: center !important;
    margin-top: 24px !important;
    margin-bottom: 16px !important;
  }

  .hero-actions .btn,
  .btn-red,
  .btn-secondary {
    width: auto !important;
    padding: 11px 22px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
  }

  /* Treatment Pills - 2 lines with 3 items per line (3x2 grid) */
  .hero-pills {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px 6px !important;
    margin-top: 16px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
  }

  .hero-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 6px 4px !important;
    font-size: 0.76rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 999px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .hero-pill .pill-icon {
    width: 12px !important;
    height: 12px !important;
  }

  /* Mobile Stats Bar - Swiss Single Glass Capsule Ribbon */
  .hero-stats-bar {
    display: block !important;
    position: relative !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    z-index: 5 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .hero-stats-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-around !important;
    background: rgba(15, 27, 61, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 999px !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
    padding: 8px 6px !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .hero-stat-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 2px !important;
    padding: 4px 6px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    flex: 1 !important;
    position: relative !important;
  }

  .hero-stat-card:not(:last-child)::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 15% !important;
    bottom: 15% !important;
    width: 1px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%) !important;
  }

  [dir="ltr"] .hero-stat-card:not(:last-child)::after {
    right: 0 !important;
    left: auto !important;
  }
  [dir="rtl"] .hero-stat-card:not(:last-child)::after {
    left: 0 !important;
    right: auto !important;
  }

  [dir="ltr"] .hero-stat-card,
  [dir="rtl"] .hero-stat-card {
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-stat-icon {
    display: none !important;
  }

  .hero-stat-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    width: 100% !important;
  }

  .hero-stat-num-box {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    line-height: 1 !important;
    direction: ltr !important;
    letter-spacing: -0.3px !important;
  }

  .stat-suffix {
    color: #FF4D5E !important;
    font-weight: 900 !important;
    margin-left: 1px !important;
  }

  .hero-stat-label {
    font-size: 0.68rem !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 2px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  /* Mobile Why Choose Us Cards - Ultra Executive Horizontal Compact Pods */
  .about {
    padding: 60px 0 !important;
  }

  .features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .feature-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 16px 16px !important;
    background: linear-gradient(145deg, rgba(15, 27, 61, 0.8) 0%, rgba(10, 18, 42, 0.92) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
  }

  .feature-card::before {
    height: 2px !important;
  }

  .feature-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    background: rgba(230, 57, 70, 0.14) !important;
    border: 1px solid rgba(230, 57, 70, 0.3) !important;
    color: #FF4D5E !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: none !important;
  }

  .feature-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .feature-card h3 {
    font-family: 'Outfit', 'Tajawal', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
  }

  .feature-card p {
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
  }

  /* Mobile Services Section - Minimalist Red Outline Badges (Centered Balanced Layout) */
  .services {
    padding: 60px 0 !important;
  }

  .services-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 6px !important;
    width: 100% !important;
    max-width: 410px !important;
    margin: 0 auto 24px auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .services-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .tab-btn {
    padding: 8px 6px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
    background: rgba(15, 27, 61, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.25s ease !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Equal balanced proportions for Row 1 (3 items) and Row 2 (2 items) */
  .services-tabs .tab-btn:nth-child(1),
  .services-tabs .tab-btn:nth-child(2),
  .services-tabs .tab-btn:nth-child(3) {
    flex: 1 1 calc(33.33% - 6px) !important;
    max-width: calc(33.33% - 4px) !important;
  }

  .services-tabs .tab-btn:nth-child(4),
  .services-tabs .tab-btn:nth-child(5) {
    flex: 0 1 calc(44% - 6px) !important;
    max-width: 165px !important;
  }

  .tab-btn.active {
    background: rgba(230, 57, 70, 0.16) !important;
    border: 1.5px solid #FF4D5E !important;
    color: #FF4D5E !important;
    box-shadow: 0 0 16px rgba(230, 57, 70, 0.4), inset 0 0 10px rgba(230, 57, 70, 0.15) !important;
    font-weight: 800 !important;
  }

  .services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .service-card {
    border-radius: 18px !important;
    background: linear-gradient(170deg, rgba(22, 33, 62, 0.9) 0%, rgba(10, 16, 34, 0.98) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    overflow: hidden !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4) !important;
  }

  .service-img-wrapper {
    height: 135px !important;
  }

  .service-badge {
    top: 10px !important;
    right: 10px !important;
    padding: 4px 10px !important;
    font-size: 0.64rem !important;
  }

  [dir="rtl"] .service-badge {
    right: auto !important;
    left: 10px !important;
  }

  .service-info {
    padding: 16px 16px 18px 16px !important;
  }

  .service-title {
    font-size: 1.08rem !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
  }

  .service-desc {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin-bottom: 14px !important;
  }

  .service-card-actions {
    padding-top: 12px !important;
    gap: 8px !important;
  }

  .service-btn-primary {
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
    border-radius: 10px !important;
  }

  .service-btn-secondary {
    padding: 7px 12px !important;
    font-size: 0.75rem !important;
    border-radius: 10px !important;
  }

  /* Executive Director Spotlight Card Mobile Overhaul */
  .manager-luxury-spotlight {
    margin: 0 auto 50px auto !important;
  }

  .luxury-spotlight-card {
    grid-template-columns: 1fr !important;
    border-radius: 22px !important;
  }

  .luxury-image-area {
    min-height: unset !important;
    height: 310px !important;
  }

  .luxury-img {
    object-position: center 10% !important;
  }

  .luxury-experience-badge {
    bottom: 14px !important;
    right: 14px !important;
    padding: 6px 12px !important;
    border-radius: 12px !important;
  }

  [dir="rtl"] .luxury-experience-badge {
    right: auto !important;
    left: 14px !important;
  }

  .luxury-experience-badge .badge-num {
    font-size: 1.15rem !important;
  }

  .luxury-experience-badge .badge-lbl {
    font-size: 0.58rem !important;
  }

  .luxury-content-area {
    padding: 24px 20px 28px 20px !important;
  }

  .luxury-name {
    font-size: 1.6rem !important;
    margin-bottom: 4px !important;
  }

  .luxury-subtitle {
    font-size: 0.88rem !important;
    margin-bottom: 14px !important;
  }

  .luxury-statement {
    font-size: 0.84rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
  }

  .luxury-focus-tags {
    gap: 6px !important;
    margin-bottom: 22px !important;
  }

  .focus-tag {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }

  .luxury-button {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 18px !important;
    font-size: 0.82rem !important;
  }
}

/* ============================================================
   ULTRA PRETTY DENTAL SPA EMERALD & MINT LIGHT THEME SYSTEM
   ============================================================ */
[data-theme="light"] {
  --bg-primary: #0A2540;
  --bg-secondary: #0F345C;
  --bg-card: #0F345C;
  --bg-card-hover: #143F6D;
  --bg-nav: rgba(7, 25, 44, 0.96);
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.15);
  --border-hover: rgba(56, 189, 248, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Full Executive Navy Blue Theme (#0A2540 Canvas Background, #0F345C Elevated Cards, #FFFFFF Typography, #0066FF CTAs) */
[data-theme="light"] *,
[data-theme="light"] *::before,
[data-theme="light"] *::after {
  text-shadow: none !important;
}

/* Light Theme Body & Main Canvas (Deep Executive Navy Blue #0A2540) */
[data-theme="light"] body {
  background-color: #0A2540 !important;
  color: #FFFFFF !important;
}

[data-theme="light"] section {
  background-color: #0A2540 !important;
}

/* Alternate Section Background for Deep Contrast (#071D33 Deeper Navy) */
[data-theme="light"] .services,
[data-theme="light"] .team,
[data-theme="light"] .before-after-cases,
[data-theme="light"] .testimonials,
[data-theme="light"] .booking-section {
  background-color: #071D33 !important;
}

/* Light Theme Hero Section (#0A2540 Deep Navy Gradient) */
[data-theme="light"] .hero {
  background: linear-gradient(135deg, #051324 0%, #0A2540 50%, #0F345C 100%) !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .hero-bg {
  filter: brightness(0.95) contrast(1.08) saturate(1.1) hue-rotate(-20deg) !important;
  opacity: 0.85 !important;
}

[data-theme="light"] .hero-overlay,
[data-theme="light"] [dir="rtl"] .hero-overlay,
[data-theme="light"] [dir="ltr"] .hero-overlay {
  display: block !important;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.5) 0%, rgba(7, 25, 44, 0.3) 50%, rgba(15, 52, 92, 0.5) 100%) !important;
  mix-blend-mode: soft-light !important;
  pointer-events: none !important;
}

/* Hero Photo Bottom Dissolve seamlessly into #0A2540 Executive Navy Canvas */
[data-theme="light"] .hero::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: -1px !important;
  left: 0 !important;
  right: 0 !important;
  height: 160px !important;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 37, 64, 0.4) 30%, rgba(10, 37, 64, 0.85) 70%, #0A2540 100%) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

[data-theme="light"] .hero-glow-orb,
[data-theme="light"] .hero-glow-orb-1,
[data-theme="light"] .hero-glow-orb-2 {
  display: none !important;
  background: transparent !important;
}

/* High-Contrast Hero Typography */
[data-theme="light"] .hero h1,
[data-theme="light"] .hero-content h1 {
  color: #FFFFFF !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8) !important;
}

[data-theme="light"] .hero-highlight,
[data-theme="light"] .hero h1 span,
[data-theme="light"] .hero-content h1 span {
  color: #38BDF8 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85) !important;
}

[data-theme="light"] .hero-desc,
[data-theme="light"] .hero-subtitle {
  color: #E2E8F0 !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .hero-pill {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* Section Tag Badges (#0066FF Cyan-Blue Accent) */
[data-theme="light"] .hero-tag,
[data-theme="light"] .section-tag,
[data-theme="light"] .service-badge,
[data-theme="light"] .ba-tag {
  background: rgba(0, 102, 255, 0.22) !important;
  color: #38BDF8 !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  font-weight: 700 !important;
}

[data-theme="light"] .hero-tag::before,
[data-theme="light"] .section-tag::before {
  background: #38BDF8 !important;
}

/* Floating Statistics Bar: Elevated Navy Card (#0F345C) */
[data-theme="light"] .hero-stats-bar {
  background: #0F345C !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35) !important;
}

[data-theme="light"] .hero-stat-number,
[data-theme="light"] .hero-stat-num-box,
[data-theme="light"] .hero-stat-num {
  color: #38BDF8 !important;
  font-weight: 900 !important;
}

[data-theme="light"] .hero-stat-label {
  color: #CBD5E1 !important;
  font-weight: 600 !important;
}

[data-theme="light"] .hero-stat-icon {
  background: rgba(0, 102, 255, 0.22) !important;
  color: #38BDF8 !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
}

[data-theme="light"] .hero-stat-icon svg {
  fill: #38BDF8 !important;
  color: #38BDF8 !important;
}

/* Main Navigation Header: Executive Deep Blue Bar (#07192C) */
[data-theme="light"] #header {
  background: #07192C !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

[data-theme="light"] #header .logo-text-duhok {
  color: #FFFFFF !important;
  font-weight: 900 !important;
}

[data-theme="light"] #header .nav-link {
  color: #E2E8F0 !important;
  font-weight: 700 !important;
}

[data-theme="light"] #header .nav-link:hover {
  color: #38BDF8 !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="light"] #header .nav-link.active,
[data-theme="light"] #header.scrolled .nav-link.active {
  color: #FFFFFF !important;
  background: #0066FF !important;
  border-radius: 8px !important;
}

[data-theme="light"] #header .theme-toggle {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

[data-theme="light"] #header.scrolled {
  background: rgba(7, 25, 44, 0.98) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-theme="light"] #header.scrolled .logo-text-duhok {
  color: #FFFFFF !important;
}

[data-theme="light"] #header.scrolled .nav-link {
  color: #E2E8F0 !important;
}

/* Action Buttons & CTAs (#0066FF Electric Royal Blue) */
[data-theme="light"] .btn-primary,
[data-theme="light"] .hero-actions .btn-primary,
[data-theme="light"] .booking-btn-submit,
[data-theme="light"] .ba-modal-booking-cta {
  background: linear-gradient(135deg, #1A75FF 0%, #0066FF 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4) !important;
}

[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .hero-actions .btn-primary:hover,
[data-theme="light"] .booking-btn-submit:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #0066FF 100%) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5) !important;
}

[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 700 !important;
}

[data-theme="light"] .btn-secondary:hover {
  background: #0066FF !important;
  border-color: #0066FF !important;
  color: #FFFFFF !important;
}

/* Headings & Section Titles (#FFFFFF Crisp White) */
[data-theme="light"] .section-title,
[data-theme="light"] .brand-title,
[data-theme="light"] .footer-heading,
[data-theme="light"] .luxury-title,
[data-theme="light"] .ehsan-patent-title {
  color: #FFFFFF !important;
  font-weight: 900 !important;
}

[data-theme="light"] .section-desc,
[data-theme="light"] .luxury-desc,
[data-theme="light"] .ehsan-patent-desc {
  color: #CBD5E1 !important;
}

/* Card Containers: Elevated Navy Cards (#0F345C) with Royal Blue Top Accent */
[data-theme="light"] .feature-card,
[data-theme="light"] .service-card,
[data-theme="light"] .team-card,
[data-theme="light"] .ba-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .booking-form-wrapper,
[data-theme="light"] .modal-dialog,
[data-theme="light"] .ehsan-modal-content {
  background: #0F345C !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-top: 3px solid #0066FF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  border-radius: 20px !important;
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .service-card:hover,
[data-theme="light"] .team-card:hover {
  background: #143F6D !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
  border-top-color: #38BDF8 !important;
  transform: translateY(-4px) !important;
}

/* Typography Inside Cards */
[data-theme="light"] .service-title,
[data-theme="light"] .team-doc-name,
[data-theme="light"] .ba-title,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .booking-form-title,
[data-theme="light"] .ba-case-title,
[data-theme="light"] #modal-doc-name {
  color: #FFFFFF !important;
  font-weight: 800 !important;
}

[data-theme="light"] .service-desc,
[data-theme="light"] .feature-card p,
[data-theme="light"] .team-bio,
[data-theme="light"] .ba-desc,
[data-theme="light"] .testimonial-text,
[data-theme="light"] .booking-list-content p,
[data-theme="light"] .ba-case-desc {
  color: #CBD5E1 !important;
  line-height: 1.6 !important;
}

[data-theme="light"] .team-doc-spec {
  color: #38BDF8 !important;
  font-weight: 700 !important;
}

/* Icons (#38BDF8 Electric Cyan) */
[data-theme="light"] .service-icon,
[data-theme="light"] .feature-icon,
[data-theme="light"] .team-icon,
[data-theme="light"] i,
[data-theme="light"] .fa {
  color: #38BDF8 !important;
}

[data-theme="light"] .service-icon,
[data-theme="light"] .feature-icon,
[data-theme="light"] .team-icon {
  background: rgba(0, 102, 255, 0.22) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
}

[data-theme="light"] .service-img-wrapper {
  background: #07192C !important;
}

[data-theme="light"] .service-overlay {
  background: linear-gradient(to top, rgba(15, 52, 92, 0.98) 0%, rgba(15, 52, 92, 0.4) 60%, transparent 100%) !important;
}

/* Form Controls & Inputs */
[data-theme="light"] .form-label {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

[data-theme="light"] .form-control {
  background: #07192C !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .form-control:focus {
  border-color: #38BDF8 !important;
  background: #07192C !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25) !important;
}

[data-theme="light"] .form-control::placeholder,
[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
  color: #94A3B8 !important;
  opacity: 1 !important;
}

[data-theme="light"] select.form-control option {
  background: #07192C !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .booking-list-item {
  background: #07192C !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-theme="light"] .booking-list-content h3 {
  color: #FFFFFF !important;
}

/* Light Theme Footer (#051324 Deeper Navy) */
[data-theme="light"] footer {
  background: #051324 !important;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="light"] .footer-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

[data-theme="light"] footer .brand-title,
[data-theme="light"] footer .footer-heading {
  color: #FFFFFF !important;
}

[data-theme="light"] .footer-brand-desc,
[data-theme="light"] .footer-link,
[data-theme="light"] .footer-copy-text {
  color: #CBD5E1 !important;
}

[data-theme="light"] .footer-link:hover {
  color: #38BDF8 !important;
}

/* Image Borders, Avatars & Color Filters */
[data-theme="light"] .logo img {
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
}

[data-theme="light"] .team-img,
[data-theme="light"] .service-img-wrapper img,
[data-theme="light"] .ba-img-wrapper img {
  filter: contrast(1.05) saturate(1.08) !important;
  transition: filter 0.3s ease, transform 0.3s ease !important;
}

[data-theme="light"] .team-card:hover .team-img,
[data-theme="light"] .service-card:hover .service-img-wrapper img {
  filter: contrast(1.1) saturate(1.15) !important;
}

[data-theme="light"] .testimonial-author img,
[data-theme="light"] .author-avatar img,
[data-theme="light"] .ba-patient-avatar {
  border: 2px solid #38BDF8 !important;
}

[data-theme="light"] #modal-doc-creds {
  background: #07192C !important;
  color: #CBD5E1 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Category & Filter Buttons */
[data-theme="light"] .filter-btn,
[data-theme="light"] .category-btn {
  background: #0F345C !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-weight: 700 !important;
}

[data-theme="light"] .filter-btn.active,
[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .category-btn.active,
[data-theme="light"] .category-btn:hover {
  background: linear-gradient(135deg, #1A75FF 0%, #0066FF 100%) !important;
  color: #FFFFFF !important;
  border-color: #0066FF !important;
}

[data-theme="light"] .slider-arrow,
[data-theme="light"] .carousel-control {
  background: #0F345C !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

[data-theme="light"] .slider-arrow:hover,
[data-theme="light"] .carousel-control:hover {
  background: #0066FF !important;
  border-color: #0066FF !important;
  color: #FFFFFF !important;
}

/* Mobile Menu Navigation */
[data-theme="light"] .hamburger span {
  background: #FFFFFF !important;
}

@media (max-width: 991px) {
  [data-theme="light"] .nav-menu {
    background: #07192C !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  }
}

/* Modals & Dialog Structure */
[data-theme="light"] .modal-header,
[data-theme="light"] .modal-footer {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="light"] .modal-close,
[data-theme="light"] .close-btn,
[data-theme="light"] .btn-close {
  color: #FFFFFF !important;
  opacity: 0.9 !important;
}

[data-theme="light"] .modal-close:hover,
[data-theme="light"] .close-btn:hover {
  color: #38BDF8 !important;
}

/* Rating Stars */
[data-theme="light"] .star,
[data-theme="light"] .stars i,
[data-theme="light"] .fa-star,
[data-theme="light"] .testimonial-stars i {
  color: #F59E0B !important;
}

/* Before & After Interactive Sliders */
[data-theme="light"] .ba-handle {
  background: #0066FF !important;
  border: 2px solid #FFFFFF !important;
}

[data-theme="light"] .ba-badge,
[data-theme="light"] .ba-label {
  background: #051324 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Footer Social Icons & Dividers */
[data-theme="light"] .social-icon,
[data-theme="light"] .social-link,
[data-theme="light"] .footer-social-link {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

[data-theme="light"] .social-icon:hover,
[data-theme="light"] .social-link:hover,
[data-theme="light"] .footer-social-link:hover {
  background: #0066FF !important;
  border-color: #0066FF !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Floating Action Buttons */
[data-theme="light"] .back-to-top,
[data-theme="light"] .scroll-top {
  background: #0F345C !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="light"] .back-to-top:hover,
[data-theme="light"] .scroll-top:hover {
  background: #0066FF !important;
  border-color: #0066FF !important;
  color: #FFFFFF !important;
}

[data-theme="light"] .whatsapp-float {
  background: #25D366 !important;
  color: #FFFFFF !important;
}

/* Dividers & Accent Lines */
[data-theme="light"] hr,
[data-theme="light"] .divider {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* ============================================================
   BEFORE & AFTER SHOWCASE SECTION STYLES
   ============================================================ */
.before-after-showcase {
  background: radial-gradient(circle at 50% 10%, rgba(14, 165, 233, 0.08), transparent 70%), var(--bg-primary, #040912);
}

.case-showcase-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.case-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.5) !important;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65), 0 0 25px rgba(14, 165, 233, 0.15) !important;
}

[data-theme="light"] .before-after-showcase {
  background: radial-gradient(circle at 50% 10%, rgba(0, 150, 136, 0.06), transparent 70%), #f8fafc !important;
}

[data-theme="light"] .case-showcase-card {
  background: #ffffff !important;
  border-color: rgba(203, 213, 225, 0.8) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}

[data-theme="light"] .case-showcase-card:hover {
  border-color: var(--accent, #00c8aa) !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12) !important;
}

[data-theme="light"] .case-showcase-card h3 {
  color: #0f172a !important;
}

[data-theme="light"] .case-showcase-card p {
  color: #475569 !important;
}