/* =================================================================
   EUREKA RIDGE DENTISTRY - Premium Dental Website Stylesheet
   ================================================================= */

:root {
  /* Colors - Teal/Modern Medical Palette */
  --primary: #0d4f4f;
  --primary-dark: #083636;
  --primary-light: #1a7a7a;
  --secondary: #1a365d;
  --accent: #38b2ac;
  --accent-light: #4fd1c5;
  --accent-soft: #81e6d9;
  --gold: #d69e2e;
  --gold-light: #ecc94b;
  --success: #48bb78;
  --warning: #ed8936;
  --error: #fc8181;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f7fafc;
  --cream: #faf9f7;
  --light-gray: #edf2f7;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #a0aec0;
  --gray-500: #718096;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;
  --dark: #0a0a0f;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(13, 79, 79, 0.95) 0%, rgba(26, 54, 93, 0.9) 100%);
  --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--off-white) 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, hsla(170, 80%, 70%, 0.15) 0px, transparent 50%), radial-gradient(at 80% 0%, hsla(220, 80%, 80%, 0.1) 0px, transparent 50%), radial-gradient(at 0% 50%, hsla(160, 70%, 85%, 0.15) 0px, transparent 50%);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: 5rem;
  --space-section-mobile: 3rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --container-padding: 1.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 60px rgba(56, 178, 172, 0.2);
  --shadow-glow-gold: 0 0 60px rgba(214, 158, 46, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-overlay: 500;

  /* Header */
  --header-height: 80px;
  --topbar-height: 40px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--gold));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes revealImg {
  from { clip-path: inset(0 0 0 100%); }
  to   { clip-path: inset(0 0 0 0); }
}

.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-scale,
.reveal-img {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in      { transform: translateY(30px); }
.fade-in-left  { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.fade-in-scale { transform: scale(0.92); }
.reveal-img {
  transform: scale(1.08);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visible.fade-in,
.visible.fade-in-left,
.visible.fade-in-right,
.visible.fade-in-scale,
.visible.reveal-img {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.section-header .section-tag,
.section-header .section-title,
.section-header .section-desc {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible .section-tag  { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.fade-in.visible .section-title { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.fade-in.visible .section-desc { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-sm);
  padding: var(--space-sm) 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.top-bar-link,
.top-bar-address {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition-base);
}

.top-bar-link:hover {
  opacity: 1;
  color: var(--accent-soft);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar-review {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gold-light);
  font-weight: 500;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  top: 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

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

.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.logo-tagline {
  font-size: var(--text-xs);
  color: var(--gray-400);
  font-weight: 500;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--gray-600);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(56, 178, 172, 0.08);
}

.dropdown-arrow {
  transition: var(--transition-base);
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  min-width: 700px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.dropdown-column h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown-column a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: var(--transition-base);
}

.dropdown-column a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  color: var(--primary);
  transition: var(--transition-base);
}

.header-phone:hover {
  background: var(--accent);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

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

.header-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.header-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(56, 178, 172, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 178, 172, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-light);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-base);
}

.btn-block {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  padding-top: calc(var(--topbar-height) + var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary-light) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: var(--space-lg);
  width: fit-content;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
  color: var(--white);
}
.hero__title .highlight {
  display: block;
  color: var(--accent-light);
}
.hero__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--space-xl);
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.hero__actions .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.hero__actions .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-item {
  display: flex;
  flex-direction: column;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-number::after {
  content: '+';
  font-size: var(--text-2xl);
  color: var(--accent-light);
}
.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* Hero Visual */
.hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__right-image {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ===== HERO ENTRANCE ===== */
.hero__label { animation: slideUp 0.6s ease both; animation-delay: 0.1s; }
.hero__title { animation: slideUp 0.6s ease both; animation-delay: 0.2s; }
.hero__text  { animation: slideUp 0.6s ease both; animation-delay: 0.3s; }
.hero__actions { animation: slideUp 0.6s ease both; animation-delay: 0.4s; }
.hero__stats { animation: slideUp 0.6s ease both; animation-delay: 0.5s; }
.hero__right-image { animation: fadeInScale 0.8s ease both; animation-delay: 0.3s; }

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  padding: var(--space-section) 0;
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.mission-content .section-title {
  margin-bottom: var(--space-lg);
}

.mission-text {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.mission-text.highlight {
  color: var(--accent);
  font-weight: 600;
  font-size: var(--text-lg);
}

.mission-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  color: var(--white);
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: var(--off-white);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trust-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  color: var(--white);
  flex-shrink: 0;
}

.trust-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.trust-content p {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--space-section) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--gray-500);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(56, 178, 172, 0.1) 0%, rgba(56, 178, 172, 0.05) 100%);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  font-size: var(--text-sm);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--accent);
  font-size: var(--text-sm);
}

.service-link svg {
  transition: var(--transition-base);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  position: relative;
  padding: var(--space-2xl) 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.promo-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.promo-text h2 {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.promo-text p {
  opacity: 0.9;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase-section {
  padding: var(--space-section) 0;
  background: var(--off-white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.showcase-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.showcase-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.showcase-icon {
  color: var(--accent);
  opacity: 0.8;
}

.showcase-info {
  padding: var(--space-lg);
}

.showcase-info h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.showcase-info p {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--space-section) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-main-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-main-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--accent);
}

.exp-text {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.about-secondary-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.about-secondary-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-content .section-title {
  margin-bottom: var(--space-lg);
}

.about-text {
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.credential svg {
  color: var(--success);
}

.about-cta {
  display: flex;
  gap: var(--space-md);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: var(--space-section) 0;
  background: var(--off-white);
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: var(--space-xl);
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - var(--space-xl) * 2 / 3);
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.review-header {
  margin-bottom: var(--space-lg);
}

.review-stars {
  display: flex;
  gap: var(--space-xs);
}

.review-stars svg {
  color: #fbbf24;
}

.review-text {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
}

.author-info strong {
  display: block;
  color: var(--primary);
}

.author-info span {
  font-size: var(--text-sm);
  color: var(--gray-400);
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.review-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--primary);
  transition: var(--transition-base);
}

.review-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.review-dots {
  display: flex;
  gap: var(--space-sm);
}

.review-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--gray-200);
  border-radius: 50%;
  transition: var(--transition-base);
}

.review-dots .dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   FINANCE SECTION
   ============================================ */
.finance-section {
  padding: var(--space-section) 0;
  background: var(--white);
}

.finance-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.finance-card {
  background: var(--off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.finance-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.finance-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--white);
  margin: 0 auto var(--space-lg);
}

.finance-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.finance-card p {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.insurance-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.insurance-badge {
  padding: var(--space-xs) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gray-600);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--space-section) 0;
  background: var(--off-white);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  transition: var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: var(--space-xl);
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--space-section) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-desc {
  font-size: var(--text-lg);
  color: var(--gray-500);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: grid;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 178, 172, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.contact-text p {
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-text a {
  color: var(--accent);
  font-weight: 600;
}

.contact-form-wrapper {
  background: var(--off-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  height: 400px;
}

.map-container {
  height: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary);
  color: var(--white);
}

.footer-main {
  padding: var(--space-3xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
  color: var(--accent);
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: var(--z-fixed);
  padding: var(--space-sm);
}

.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  color: var(--gray-600);
  font-size: var(--text-xs);
  font-weight: 500;
  transition: var(--transition-base);
}

.mobile-bar-item:hover {
  color: var(--accent);
}

.mobile-bar-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: 0 var(--space-sm);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 100px;
  right: var(--space-lg);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.floating-btn.call {
  background: var(--success);
  color: var(--white);
}

.floating-btn.book {
  background: var(--accent);
  color: var(--white);
  flex-direction: column;
  gap: 0;
}

.floating-btn.book span {
  font-size: var(--text-xs);
  font-weight: 600;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: var(--z-fixed);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__right {
    display: none;
  }

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

  .about-grid,
  .contact-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  .main-header {
    top: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-md);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
    z-index: var(--z-sticky);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .dropdown {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-2xl));
    min-height: 0;
  }

  .hero__title {
    font-size: var(--text-5xl);
  }

  .hero__stats {
    flex-wrap: wrap;
  }

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

  .reviews-track {
    flex-direction: column;
  }

  .review-card {
    flex: 0 0 auto;
  }

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

@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__actions {
    flex-direction: column;
  }

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

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

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .mobile-bottom-bar {
    display: flex;
    justify-content: space-around;
  }

  .floating-cta {
    display: none;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .showcase-grid,
  .finance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__title,
  .section-title {
    font-size: var(--text-3xl);
  }

  .service-card,
  .finance-card {
    padding: var(--space-lg);
  }
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.video-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}
.video-modal__close:hover {
  background: rgba(255,255,255,0.3);
}
.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: var(--accent);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.video-play-btn:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}
.video-play-btn__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   FORM VALIDATION STATES
   ============================================ */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error) !important;
  background: #fff5f5;
}
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: var(--success) !important;
  background: #f0fdf4;
}

/* ============================================
   SELECT ENHANCEMENT
   ============================================ */
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  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='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ============================================
   FOCUS VISIBLE
   ============================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   REVIEW CARD QUOTE
   ============================================ */
.review-card {
  position: relative;
}
.review-card::after {
  content: '\201C';
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-accent);
  color: rgba(56, 178, 172, 0.08);
  pointer-events: none;
}

/* ============================================
   CTA DECORATIVE BLOBS
   ============================================ */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 178, 172, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.cta-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214, 158, 46, 0.1) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

/* ============================================
   SECTION TAG (Ghost Style)
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(56, 178, 172, 0.1);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  width: fit-content;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}