/* ============================
   SPARKLE TITLE PRO - STYLESHEET
   Colors from Logo: Navy #1a3a6b | Gold #f0a500
   ============================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2347;
  --navy-light: #2a5298;
  --gold: #f0a500;
  --gold-light: #ffc107;
  --gold-dark: #c8860a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #e8edf5;
  --mid-gray: #8a95a3;
  --dark-gray: #2d3748;
  --shadow-sm: 0 2px 8px rgba(26, 58, 107, 0.1);
  --shadow-md: 0 8px 24px rgba(26, 58, 107, 0.15);
  --shadow-lg: 0 16px 48px rgba(26, 58, 107, 0.2);
  --shadow-gold: 0 8px 32px rgba(240, 165, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Light Mode Defaults */
  --bg-primary: #f8f9fc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --text-primary: #1a2744;
  --text-secondary: #4a5568;
  --text-muted: #8a95a3;
  --border-color: #e2e8f0;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --nav-text: #1a2744;
}

.dark-mode {
  --bg-primary: #0a1628;
  --bg-secondary: #0f1f3d;
  --bg-card: #152040;
  --text-primary: #e8edf5;
  --text-secondary: #b0bec5;
  --text-muted: #6b7a8d;
  --border-color: #1e3a5f;
  --nav-bg: rgba(10, 22, 40, 0.97);
  --nav-text: #e8edf5;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.4s, color 0.4s;
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== GLITTER CANVAS ===== */
#glitter-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--navy), var(--gold)); border-radius: 4px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transition: left 0.4s ease;
  z-index: 0;
}
.btn-primary:hover::before { left: 0; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26,58,107,0.1), rgba(240,165,0,0.1));
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.gold-text { color: var(--gold); }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  margin: 0 auto 20px;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 16px;
}
.nav-logo img {
  height: 76px;
  width: auto;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--nav-text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }
.nav-link:hover, .nav-link.active { color: var(--navy); }
.dark-mode .nav-link:hover, .dark-mode .nav-link.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 5px 10px;
  transition: var(--transition);
  cursor: pointer;
}
.dark-mode .theme-toggle { background: var(--bg-card); }
.toggle-icon { font-size: 0.75rem; color: var(--text-secondary); }
.toggle-icon.sun { color: var(--gold); }
.toggle-icon.moon { color: var(--navy); }
.dark-mode .toggle-icon.moon { color: var(--gold-light); }
.toggle-slider {
  width: 36px; height: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50px;
  position: relative;
  transition: var(--transition);
}
.toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.dark-mode .toggle-slider::after { transform: translateX(16px); }
.dark-mode .toggle-slider { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--nav-text);
  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); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown-wrap {
  position: relative;
}
.nav-chevron {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  vertical-align: middle;
}
.nav-dropdown-wrap:hover .nav-chevron,
.nav-dropdown-wrap.open .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 540px;
  background: var(--nav-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.25), 0 4px 16px rgba(26, 58, 107, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
  overflow: hidden;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  border-radius: 16px 16px 0 0;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 10px;
}
.nav-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav-drop-item i {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26,58,107,0.1), rgba(240,165,0,0.08));
  border: 1px solid rgba(26,58,107,0.12);
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.nav-drop-item:hover {
  background: linear-gradient(135deg, rgba(26,58,107,0.08), rgba(240,165,0,0.06));
  color: var(--navy);
  transform: translateX(3px);
}
.nav-drop-item:hover i {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-color: var(--navy);
}
/* Dark mode dropdown */
.dark-mode .nav-dropdown {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
}
.dark-mode .nav-drop-item { color: var(--text-secondary); }
.dark-mode .nav-drop-item i {
  background: rgba(26,58,107,0.3);
  border-color: rgba(240,165,0,0.15);
  color: var(--gold);
}
.dark-mode .nav-drop-item:hover { color: var(--gold); }
.dark-mode .nav-drop-item:hover i {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 8s ease; }
.hero-section:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(26, 58, 107, 0.65) 50%,
    rgba(10, 22, 40, 0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 165, 0, 0.2);
  border: 1px solid rgba(240, 165, 0, 0.5);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 2px 4px 16px rgba(0,0,0,0.4);
  animation: fadeInLeft 0.9s ease 0.3s both;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeInLeft 1s ease 0.5s both;
}
.brand-name {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.brand-sparkle {
  color: var(--gold);
  font-size: 1.2rem;
  animation: sparkleRotate 3s ease-in-out infinite;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeInLeft 1s ease 0.6s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.3;
}
.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(26,58,107,0.1), rgba(240,165,0,0.05));
  border: 1px solid rgba(26,58,107,0.2);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.dark-mode .feature-pill { color: var(--gold-light); border-color: rgba(240,165,0,0.2); background: rgba(240,165,0,0.05); }
.feature-pill i { color: var(--gold); }
.feature-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.about-image { position: relative; }
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
  width: 100%; height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.1), rgba(240,165,0,0.1));
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-stat-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--gold);
  animation: float 3s ease-in-out infinite;
}
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }

/* ============================
   COVERAGE SECTION
   ============================ */
.coverage-section { background: var(--bg-secondary); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.coverage-states-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dark-mode .coverage-states-title { color: var(--gold-light); }
.coverage-states-title i { color: var(--gold); }
.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.state-badge {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: default;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.state-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transition: left 0.3s ease;
}
.state-badge:hover::before { left: 0; }
.state-badge span { position: relative; z-index: 1; }
.state-badge:hover { transform: scale(1.1) translateY(-2px); box-shadow: var(--shadow-gold); }
.coverage-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(240,165,0,0.1), rgba(26,58,107,0.05));
  border: 1px solid rgba(240,165,0,0.3);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.coverage-note i { color: var(--gold); flex-shrink: 0; }
.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.map-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--navy));
  opacity: 0.3;
  filter: blur(20px);
  animation: pulseGlow 3s ease-in-out infinite;
  z-index: 0;
}
.map-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s ease;
  filter: saturate(1.2) brightness(1.05);
}
.map-wrapper:hover .map-img { transform: scale(1.03) rotate(1deg); }
.map-overlay-text {
  position: absolute;
  bottom: 16px; right: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
}
.map-states-count {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

/* ============================
   PRODUCTS SECTION
   ============================ */
.products-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.products-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
/* 3D Flip House */
.products-house-wrapper { perspective: 1200px; }
.house-flip-container {
  position: relative;
  width: 100%;
  height: 420px;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.house-flip-container.flipped { transform: rotateY(180deg); }
.house-flip-front, .house-flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.house-flip-front img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(26,58,107,0.4));
}
.house-flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-back-content {
  text-align: center;
  color: var(--white);
  padding: 40px;
}
.flip-back-content i { color: var(--gold); margin-bottom: 20px; display: block; }
.flip-back-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.flip-back-content p { color: var(--gold-light); font-weight: 600; letter-spacing: 2px; }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  cursor: default;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.05), rgba(240,165,0,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover::after { opacity: 1; }
.product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: var(--transition);
}
.product-card:hover .product-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: rotate(5deg) scale(1.1);
}
.product-icon i { color: var(--white); font-size: 1.1rem; }
.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ===== STATS ===== */
.stats-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  overflow: hidden;
  margin-bottom: 80px;
}
.stats-bg-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="1" height="60" x="30" fill="rgba(255,255,255,0.03)"/><rect width="60" height="1" y="30" fill="rgba(255,255,255,0.03)"/></svg>');
  pointer-events: none;
}
.stats-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover {
  background: rgba(240,165,0,0.15);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.stat-card .stat-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(240,165,0,0.2), rgba(240,165,0,0.1));
  border: 1px solid rgba(240,165,0,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.stat-card .stat-icon i { color: var(--gold); font-size: 1.2rem; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}
.stat-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}
.stat-card .stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 500;
}

/* ===== INSURANCE ===== */
.insurance-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 60px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.insurance-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.insurance-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.insurance-img-wrapper img {
  width: 100%; height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insurance-img-wrapper:hover img { transform: scale(1.05); }
.insurance-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,0.15), rgba(26,58,107,0.1));
  pointer-events: none;
}
.insurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.insurance-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.insurance-desc { color: var(--text-secondary); margin-bottom: 12px; font-size: 1rem; }
.insurance-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0;
}
.insurance-amount .dollar {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.insurance-amount .amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.insurance-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================
   PLACE AN ORDER SECTION
   ============================ */
.order-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.order-bg-anim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,58,107,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(240,165,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.order-hero {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.order-hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 4px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}
.order-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
  animation: float 3s ease-in-out infinite;
}
.order-icon-wrap i { color: var(--gold); font-size: 2rem; }
.order-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.order-subtext { color: var(--text-secondary); margin-bottom: 36px; font-size: 1rem; line-height: 1.7; }
.order-email-wrapper { margin-bottom: 40px; }
.order-email-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(26,58,107,0.08), rgba(240,165,0,0.05));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 30px;
  transition: var(--transition);
  cursor: pointer;
}
.order-email-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.order-email-card > i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.order-email-card:hover > i { color: var(--white); }
.order-email-info { text-align: left; }
.order-email-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: var(--transition);
}
.order-email-card:hover .order-email-label { color: rgba(255,255,255,0.7); }
.order-email-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.dark-mode .order-email-link { color: var(--gold-light); }
.order-email-card:hover .order-email-link { color: var(--white); }
.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.order-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 14px 18px;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  transition: var(--transition);
}
.order-step:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.step-text { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; line-height: 1.3; text-align: left; }
.order-step-arrow { color: var(--gold); font-size: 1rem; }

/* ============================
   TESTIMONIAL SECTION
   ============================ */
.testimonial-section { background: var(--bg-secondary); }
.testimonial-carousel-wrapper { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding-bottom: 10px;
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars i { color: var(--gold); font-size: 1rem; }
.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.testi-role { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testi-btn {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testi-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--navy);
  transform: scale(1.3);
}
.dark-mode .testi-dot.active { background: var(--gold); }

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section { position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg-img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(26,58,107,0.85));
}
.contact-section .container { position: relative; z-index: 1; }
.light-tag { color: rgba(240,165,0,0.9); border-color: rgba(240,165,0,0.5); background: rgba(240,165,0,0.1); }
.light-title { color: var(--white) !important; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
}
.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.contact-card:hover {
  background: rgba(240,165,0,0.1);
  border-color: rgba(240,165,0,0.4);
  transform: translateX(8px);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i { color: var(--white); font-size: 1.1rem; }
.contact-card-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-card-content a, .contact-card-content p {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.3s;
}
.contact-card-content a:hover { color: var(--gold-light); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrapper > i {
  position: absolute;
  left: 16px;
  color: var(--gold);
  font-size: 0.9rem;
  z-index: 1;
}
.input-wrapper input, .input-wrapper textarea {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.textarea-wrapper { align-items: flex-start; }
.textarea-wrapper > i { top: 15px; }
.input-wrapper textarea { resize: vertical; min-height: 100px; }
.input-wrapper input:focus, .input-wrapper textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.15);
}
.dark-mode .input-wrapper input:focus, .dark-mode .input-wrapper textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.15);
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(26,107,58,0.1), rgba(26,107,58,0.05));
  border: 1px solid rgba(26,107,58,0.3);
  color: #2e7d32;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.85); }
.footer-top { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 40px;
}
.footer-logo {
  height: 60px; width: auto;
  border-radius: 8px;
  margin-bottom: 16px;
  background: white;
  padding: 4px;
}
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links h4, .footer-contact h4, .footer-services h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li, .footer-services li {
  margin-bottom: 10px;
}
.footer-links a, .footer-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links i, .footer-services i { color: var(--gold); font-size: 0.7rem; }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact ul li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-dev { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.mitra-link {
  color: var(--gold);
  font-weight: 700;
  transition: color 0.3s;
}
.mitra-link:hover { color: var(--gold-light); text-decoration: underline; }

/* ============================
   SCROLL TO TOP BUTTON
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}
@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.3); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid, .coverage-grid, .products-layout, .insurance-content { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-img-wrapper img { height: 350px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(16px);
    gap: 4px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .hamburger { display: flex; }
  .nav-link { padding: 10px 16px; font-size: 0.95rem; }
  /* Mobile dropdown — inline accordion */
  .nav-dropdown-wrap { width: 100%; }
  .nav-dropdown-trigger { width: 100%; display: flex; justify-content: space-between; }
  .nav-dropdown {
    position: static;
    transform: none !important;
    width: 100%;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid var(--border-color);
    margin-top: 4px;
    backdrop-filter: none;
  }
  .nav-dropdown-wrap:hover .nav-dropdown { opacity: 0; visibility: hidden; transform: none; pointer-events: none; }
  .nav-dropdown-wrap.open .nav-dropdown { opacity: 1; visibility: visible; pointer-events: all; transform: none; }
  .nav-dropdown-inner { grid-template-columns: 1fr; gap: 1px; padding: 6px; }
  .nav-drop-item { font-size: 0.85rem; padding: 9px 12px; }
  .hero-content { padding: 0 16px; padding-top: 90px; }
  .section-padding { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:last-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .order-hero { padding: 40px 24px; }
  .order-steps { flex-direction: column; }
  .order-step { max-width: 100%; min-width: auto; width: 100%; }
  .order-step-arrow { transform: rotate(90deg); }
  .insurance-section { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card:last-child { grid-column: span 1; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== HERO TYPING CURSOR ===== */
@keyframes blink-cursor {
  0%, 100% { border-right-color: var(--gold); }
  50%       { border-right-color: transparent; }
}

.typing-cursor {
  border-right: 3px solid var(--gold);
  padding-right: 4px;
  animation: blink-cursor 0.75s step-end infinite;
  white-space: nowrap;
}
