:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --cyan: #3b82f6;
  --cyan-light: #eff6ff;
  --teal: #1d4ed8;
  --navy: #1e3a5f;
  --navy-dark: #0f2744;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #ffedd5;
  --yellow: #fbbf24;
  --green: #22c55e;
  --green-light: #dcfce7;
  --purple: #8b5cf6;
  --purple-light: #ede9fe;
  --pink: #ec4899;
  --dark: #0f172a;
  --gray-900: #111827;
  --gray-800: #1e293b;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, rgba(30,58,95,0.75) 0%, rgba(37,99,235,0.65) 50%, rgba(30,64,175,0.70) 100%);
  --gradient-accent: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #1d4ed8 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #8b5cf6 100%);
  --gradient-red: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --red: #dc2626;
  --red-dark: #b91c1c;
  --gradient-text: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(37,99,235,0.4);
  --shadow-glow-orange: 0 0 30px rgba(249,115,22,0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child elements */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.5); }
}

.float {
  animation: float 4s ease-in-out infinite;
}

.float-subtle {
  animation: float-subtle 3s ease-in-out infinite;
}

/* Shimmer effect for CTAs */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  pointer-events: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--gray-600);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.2;
  font-weight: 800;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-yellow {
  color: var(--yellow);
}

.btn-teal {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-header.light .section-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,99,235,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.45);
}

.btn-cta {
  background: var(--gradient-red);
  color: var(--white);
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(220,38,38,0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,38,38,0.5);
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: inherit;
  border-radius: inherit;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
  transition: opacity 0.3s;
}

.btn-glow:hover::before {
  opacity: 0.7;
}

.btn-package {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  margin-top: 24px;
}

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

.btn-package.featured {
  background: var(--orange);
}

.btn-package.featured:hover {
  background: var(--orange-dark);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1e3a5f;
  z-index: 1001;
  padding: 6px 0;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-left a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.top-bar-left a:hover {
  color: white;
}

.top-bar-left svg {
  width: 16px;
  height: 16px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar-right a:hover {
  color: white;
}

.top-bar-right a svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
  box-sizing: content-box;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2px 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }
  .top-bar {
    display: none;
  }
  
  .header {
    top: 0 !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }
  
  .nav {
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .nav-center {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 4;
    gap: 0;
    margin: 0;
    padding: 20px 0 10px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 12px;
  }
  
  .nav-center.active {
    display: flex;
  }
  
  .nav-center a {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-center a::after {
    display: none;
  }
  
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: var(--gray-50);
    margin: 8px 0;
    border-radius: var(--radius-sm);
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown-menu a {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .nav .btn-cta {
    display: none;
  }
  
  .hero {
    padding-top: 0px !important;
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-image {
    object-position: center top;
    height: 100%;
  }
  
  .hero-bg {
    height: 100%;
  }
  
  .hero-bg picture {
    width: 100%;
    height: 100%;
  }
  
  .hero-content {
    padding: 100px 0 200px;
  }
  
  .hero-sub {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-tag {
    font-size: 0.75rem;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .testimonials-row {
    grid-template-columns: 1fr;
  }
  
  .locations-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

.logo img {
  height: 80px;
}

.nav-center {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 30px;
}

.nav-center a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-center a:hover {
  color: var(--primary);
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  margin-top: 12px;
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-700);
  font-weight: 500;
  transition: all 0.2s;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.3) contrast(1.1);
  transform: translateY(0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,40,60,0.5) 0%, rgba(0,40,60,0.2) 30%, rgba(0,40,60,0.2) 70%, rgba(0,40,60,0.5) 100%),
    var(--gradient-hero);
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(37,99,235,0.3) 0%, transparent 50%, rgba(249,115,22,0.2) 100%);
  mix-blend-mode: overlay;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bubble {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; top: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 40px; height: 40px; left: 20%; top: 70%; animation-delay: 1s; }
.bubble:nth-child(3) { width: 60px; height: 60px; left: 35%; top: 40%; animation-delay: 2s; }
.bubble:nth-child(4) { width: 100px; height: 100px; left: 50%; top: 80%; animation-delay: 3s; }
.bubble:nth-child(5) { width: 50px; height: 50px; left: 65%; top: 25%; animation-delay: 4s; }
.bubble:nth-child(6) { width: 70px; height: 70px; left: 75%; top: 60%; animation-delay: 5s; }
.bubble:nth-child(7) { width: 45px; height: 45px; left: 85%; top: 35%; animation-delay: 6s; }
.bubble:nth-child(8) { width: 90px; height: 90px; left: 5%; top: 55%; animation-delay: 7s; }
.bubble:nth-child(9) { width: 55px; height: 55px; left: 45%; top: 15%; animation-delay: 2.5s; }
.bubble:nth-child(10) { width: 35px; height: 35px; left: 90%; top: 75%; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 200px 0 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.35rem;
  margin-bottom: 36px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.trust-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.animate-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-float {
  animation: floatIn 0.6s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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

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

.transformation {
  padding: 100px 0;
  background: var(--white);
}

.transformation-header {
  text-align: center;
  margin-bottom: 60px;
}

.transformation-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 16px;
  margin-bottom: 16px;
}

.transformation-header p {
  color: var(--gray-500);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.problem-solution-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-item {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ps-problem,
.ps-solution {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
}

.ps-problem {
  background: #fef2f2;
  color: #991b1b;
}

.ps-solution {
  background: #f0fdf4;
  color: #166534;
}

.ps-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.ps-x {
  background: #fecaca;
  color: #dc2626;
}

.ps-check {
  background: #bbf7d0;
  color: #16a34a;
}

.ps-arrow {
  padding: 0 16px;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
}

.transformation-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 700px) {
  .ps-item {
    flex-direction: column;
  }
  
  .ps-problem,
  .ps-solution {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
  }
  
  .ps-arrow {
    padding: 8px 0;
    font-size: 1.2rem;
    transform: rotate(90deg);
  }
}

.social-proof {
  background: var(--gray-50);
  padding: 60px 0;
}

.social-proof-header {
  text-align: center;
  margin-bottom: 40px;
}

.social-proof-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 10px;
}

.social-proof-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-weight: 700;
}

.testimonial-author span {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.social-proof-cta {
  text-align: center;
}

@media (max-width: 900px) {
  .testimonials-row {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.amenities {
  padding: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2744 100%);
}

.amenities-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.amenities-left {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.amenities-left .section-tag {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  width: auto;
  display: inline-block;
}

.amenities-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin: 16px 0;
  line-height: 1.2;
}

.amenities-left p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}

.amenities-left .btn-cta {
  width: auto;
}

.amenities-right {
  background: rgba(255,255,255,0.05);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
}

.amenity-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(30, 58, 95, 0.3) 100%);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.amenity-pill:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(30, 58, 95, 0.4) 100%);
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, 0.5);
}

.amenity-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenity-pill-icon svg {
  stroke: white;
}

.amenity-pill:nth-child(1) .amenity-pill-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.amenity-pill:nth-child(2) .amenity-pill-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

.amenity-pill:nth-child(3) .amenity-pill-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.amenity-pill:nth-child(4) .amenity-pill-icon {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.amenity-pill:nth-child(5) .amenity-pill-icon {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.amenity-pill:nth-child(6) .amenity-pill-icon {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.amenity-pill-text strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.amenity-pill-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .amenities-split {
    grid-template-columns: 1fr;
  }
  
  .amenities-left {
    padding: 60px 30px;
    text-align: center;
    align-items: center;
  }
  
  .amenities-left p {
    max-width: 100%;
  }
  
  .amenities-right {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .amenities-right {
    grid-template-columns: 1fr;
  }
  
  .amenities-left h2 {
    font-size: 2rem;
  }
}

.benefit-text strong {
  display: block;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.benefit-text span {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .benefits-split-inner {
    grid-template-columns: 1fr;
  }
  
  .benefits-image {
    height: 300px;
  }
  
  .benefits-content {
    padding: 50px 30px;
  }
}

@media (max-width: 900px) {
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .ps-problem h2,
  .ps-solution h2 {
    font-size: 1.8rem;
  }
}

.how-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
}

.how-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.how-banner-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.how-banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.how-banner-steps {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  padding: 12px 20px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.mini-step-num {
  width: 28px;
  height: 28px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.mini-arrow {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .how-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .how-banner-steps {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }
  
  .how-step {
    padding: 8px 12px;
    font-size: 0.85rem;
    gap: 6px;
  }
  
  .how-step-num {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
  
  .how-arrow {
    font-size: 1rem;
    margin: 0 2px;
  }
}

@media (max-width: 480px) {
  .how-banner-steps {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .mini-step {
    padding: 12px 24px;
    font-size: 0.9rem;
    gap: 8px;
    width: auto;
    min-width: 160px;
    justify-content: center;
  }
  
  .mini-step-num {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  
  .mini-arrow {
    transform: rotate(90deg);
    font-size: 1.2rem;
    margin: 0;
  }
}

.packages {
  padding: 100px 0;
  background: var(--gradient-accent);
}

.wash-menu {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.wash-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(37,99,235,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139,92,246,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.wash-menu .section-header h2,
.wash-menu .section-header p {
  color: var(--white);
}

.wash-menu .section-tag {
  background: rgba(249,115,22,0.2);
  color: var(--orange);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wash-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.wash-packages-row-2 {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.wash-packages-row-2 .wash-card {
  flex: 1 1 340px;
  max-width: 360px;
}

.wash-card {
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 340px;
}

.wash-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.wash-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: glowRotate 8s linear infinite;
  pointer-events: none;
}

@keyframes glowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wash-graphene {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4c1d95 60%, #581c87 100%);
  box-shadow: 0 20px 60px rgba(139,92,246,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.wash-diamond {
  background: linear-gradient(135deg, #1e3a5f 0%, #4c1d95 40%, #be185d 100%);
  box-shadow: 0 15px 50px rgba(190,24,93,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.wash-platinum {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 50%, #ea580c 100%);
  box-shadow: 0 15px 50px rgba(234,88,12,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.wash-gold {
  background: linear-gradient(135deg, #854d0e 0%, #ca8a04 50%, #eab308 100%);
  box-shadow: 0 15px 50px rgba(202,138,4,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.wash-basic {
  background: linear-gradient(135deg, #155e75 0%, #0891b2 50%, #22d3ee 100%);
  box-shadow: 0 15px 50px rgba(8,145,178,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.wash-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}

.wash-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.wash-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wash-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.wash-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.price-box {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-box.featured {
  background: rgba(255,255,255,0.95);
  border: 2px solid var(--white);
}

.price-box.single-only {
  background: rgba(255,255,255,0.9);
}

.price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.price-box.featured .price-label,
.price-box.single-only .price-label {
  color: var(--gray-600);
}

.price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.price-box.featured .price-value,
.price-box.single-only .price-value {
  color: var(--dark);
}

.price-value small {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
}

.price-divider {
  display: none;
}

.wash-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.wash-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 14px;
  height: 14px;
}

.graphene-icon { background: #22c55e; color: white; }
.diamond-icon { background: #2563eb; color: white; }
.fire-icon { background: #f97316; color: white; }
.rain-icon { background: #fbbf24; color: white; }
.tire-icon { background: #2563eb; color: white; }
.weather-icon { background: #a855f7; color: white; }
.foam-icon { background: #2563eb; color: white; }
.rinse-icon { background: #3b82f6; color: white; }
.blower-icon { background: #64748b; color: white; }
.dry-icon { background: #2563eb; color: white; }

.btn-wash {
  background: var(--white);
  color: var(--dark);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-wash:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.wash-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

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

.packages-grid.single-wash-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.single-wash-grid .package-card {
  padding: 24px 16px;
}

.single-wash-grid .package-pricing {
  justify-content: center;
  margin-bottom: 16px;
}

.single-wash-grid .price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.single-wash-grid .price-amount small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
}

.package-highlight {
  text-align: center;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.unlimited-club {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark) 100%);
}

.unlimited-club .section-header h2,
.unlimited-club .section-header p {
  color: var(--white);
}

.unlimited-club .section-tag {
  background: rgba(249,115,22,0.2);
  color: var(--orange);
}

.packages-grid.unlimited-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.unlimited-grid .package-card {
  padding: 28px 20px;
}

.unlimited-grid .package-pricing {
  justify-content: center;
  margin-bottom: 16px;
}

.unlimited-grid .price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.unlimited-grid .price-amount small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}

.unlimited-club .packages-note {
  color: var(--gray-400);
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}

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

.package-card.popular {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

.package-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 8px 24px;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}

.package-top {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.package-card[data-tier="express"] .package-icon { color: var(--primary); }
.package-card[data-tier="premium"] .package-icon { color: var(--orange); }
.package-card[data-tier="ultimate"] .package-icon { color: var(--purple); }
.package-card[data-tier="basic"] .package-icon { color: var(--cyan); }
.package-card[data-tier="gold"] .package-icon { color: #d4a534; }
.package-card[data-tier="platinum"] .package-icon { color: var(--orange); }
.package-card[data-tier="diamond"] .package-icon { color: var(--pink); }
.package-card[data-tier="graphene"] .package-icon { color: var(--purple); }

.package-top h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.package-tagline {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.package-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.price-option {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: var(--radius);
  background: var(--gray-100);
}

.price-option.featured {
  background: var(--primary-light);
}

.package-card[data-tier="premium"] .price-option.featured {
  background: var(--orange-light);
}

.package-card[data-tier="ultimate"] .price-option.featured {
  background: var(--purple-light);
}

.price-type {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
}

.price-amount small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
}

.price-divider {
  color: var(--gray-400);
  font-size: 0.85rem;
}

.package-perks {
  list-style: none;
}

.package-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.package-perks li:last-child {
  border-bottom: none;
}

.package-perks svg {
  color: var(--green);
  flex-shrink: 0;
}

.packages-note {
  text-align: center;
  margin-top: 40px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.experience {
  padding: 100px 0;
  background: var(--gray-50);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-content .section-tag {
  margin-bottom: 16px;
}

.experience-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.experience-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--gray-600);
}

.experience-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.experience-visual {
  position: relative;
}

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

.experience-image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.badge-stars {
  display: block;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.experience-badge span:last-child {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
}

.reviews {
  padding: 100px 0;
  background: var(--white);
}

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

.review-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
}

.author-location {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.author-location::before {
  content: '•';
  margin-right: 8px;
}

.locations {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

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

.location-card:hover .location-video-bg video {
  transform: scale(1.05);
}

.location-card.new {
  box-shadow: 0 0 0 3px var(--green), var(--shadow-lg);
}

.location-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.location-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.location-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.85) 40%, rgba(15, 23, 42, 0.5) 100%);
}

.location-info {
  position: relative;
  z-index: 5;
  padding: 28px;
  width: 100%;
}

.location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.location-address,
.location-hours {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.location-address svg,
.location-hours svg {
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 12px;
  background: rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.location-card:hover .location-link {
  background: var(--yellow);
  color: var(--navy-dark);
}

.dog-wash-feature {
  margin-top: 48px;
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fdba74 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.dog-wash-image {
  position: relative;
  min-height: 320px;
}

.dog-wash-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dog-wash-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.dog-wash-tag {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
}

.dog-wash-content h3 {
  font-size: 1.8rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.dog-wash-content p {
  color: var(--gray-800);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dog-wash-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  margin-bottom: 24px;
}

.dog-wash-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--navy-dark);
  font-weight: 500;
}

.dog-wash-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.dog-wash-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.faq {
  padding: 30px 0 60px;
  background: var(--gray-50);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2rem;
  color: var(--navy-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  color: var(--primary);
  border-bottom: 1px solid var(--gray-200);
}

.faq-item p {
  padding: 16px 24px 20px;
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-header h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .dog-wash-feature {
    grid-template-columns: 1fr;
  }
  
  .dog-wash-image {
    min-height: 220px;
  }
  
  .dog-wash-content {
    padding: 28px;
  }
  
  .dog-wash-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dog-wash-content {
    flex-direction: column;
    text-align: center;
  }
  
  .dog-wash-feature {
    padding: 32px 24px;
  }
  
  .dog-wash-text h3 {
    justify-content: center;
  }
}

.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 50%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-bubbles .bubble {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.cta-bubbles .bubble:nth-child(1) { width: 120px; height: 120px; left: 5%; top: 20%; }
.cta-bubbles .bubble:nth-child(2) { width: 60px; height: 60px; left: 15%; top: 70%; }
.cta-bubbles .bubble:nth-child(3) { width: 80px; height: 80px; right: 20%; top: 30%; }
.cta-bubbles .bubble:nth-child(4) { width: 50px; height: 50px; right: 10%; top: 60%; }
.cta-bubbles .bubble:nth-child(5) { width: 100px; height: 100px; left: 40%; top: 75%; }

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: var(--dark);
  padding: 80px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4,
.footer-cta h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-nav a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: color 0.2s;
}

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

.footer-nav p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

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

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

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-contact a,
.footer-contact p {
  color: var(--white);
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.gift-cards {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gift-cards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.gift-cards-content .section-tag {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.gift-cards-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gift-cards-content p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.gift-card-preview {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(30,58,95,0.3);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.gift-card-preview:hover {
  transform: rotate(0deg) scale(1.02);
}

.gift-card-logo img {
  height: 160px;
  margin-bottom: 12px;
}

.gift-card-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
  letter-spacing: 1px;
}

@media (max-width: 800px) {
  .gift-cards-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .gift-card-preview {
    max-width: 340px;
    margin: 0 auto;
    transform: rotate(0);
    padding: 30px 50px;
    aspect-ratio: 1.6 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .gift-card-logo img {
    height: 100px;
    margin-bottom: 8px;
  }
  
  .gift-card-amount {
    font-size: 1.4rem;
  }
}

@media (max-width: 1200px) {
  .packages-grid.single-wash-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .packages-grid.unlimited-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .wash-packages {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wash-packages-row-2 {
    flex-direction: column;
    align-items: center;
  }
  
  .wash-packages-row-2 .wash-card {
    flex: 0 1 100%;
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .packages-grid.single-wash-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
  
  .package-card.popular {
    transform: none;
  }
  
  .package-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .steps-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .step-connector {
    transform: rotate(90deg);
  }
  
  .step-card {
    max-width: 320px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .feature-card:nth-child(2) {
    border-right: none;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
  
  .packages-grid.single-wash-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .packages-grid.unlimited-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .single-wash-grid .package-card h3,
  .unlimited-grid .package-card h3 {
    font-size: 1.2rem;
  }
  
  .wash-packages {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .wash-packages-row-2 .wash-card {
    width: 100%;
  }
  
  .wash-card h3 {
    font-size: 1.2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-sub {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    border-right: none;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    margin-bottom: 16px;
  }
}

/* Location Pages - Clean Design */
.loc-hero-simple {
  position: relative;
  padding: 180px 0 80px;
  color: white;
  background: url('images/florida-drive.jpg') center center / cover no-repeat;
}

.loc-hero-tamiami {
  background: url('images/tamiami-hero.png') center center / cover no-repeat;
}

.loc-hero-threeoaks {
  background: url('images/threeoaks-hero.png') center center / cover no-repeat;
}

.loc-hero-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 95, 0.85) 40%, rgba(30, 58, 95, 0.4) 70%, rgba(30, 58, 95, 0.15) 100%);
}

.loc-hero-simple .container {
  position: relative;
  z-index: 1;
}

.loc-hero-text {
  max-width: 600px;
}

.loc-hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
}

.loc-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.loc-back:hover {
  color: white;
}

.loc-hero-simple .loc-back {
  margin-bottom: 32px;
}

.loc-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.loc-label {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
}

.loc-new-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
}

.loc-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.loc-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 540px;
}

.loc-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  background: transparent;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.loc-info {
  padding: 80px 0;
  background: white;
}

.loc-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.loc-info-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

a.loc-info-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

a.loc-info-card-link:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

a.loc-info-card-link:hover .loc-info-icon {
  transform: scale(1.1);
}

a.loc-info-card-link .loc-info-note {
  color: var(--primary);
  font-weight: 600;
}

.loc-info-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  margin: 0 auto 20px;
}

.loc-info-icon.icon-address { background: #2563eb; }
.loc-info-icon.icon-hours { background: #22c55e; }
.loc-info-icon.icon-services { background: #f97316; }

.loc-info-card h3 {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.loc-info-card p {
  font-size: 1.1rem;
  color: var(--navy-dark);
  line-height: 1.6;
  font-weight: 600;
}

.loc-info-note {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 400;
}

.loc-services {
  padding: 80px 0;
  background: var(--white);
}

.loc-services-header {
  text-align: center;
  margin-bottom: 48px;
}

.loc-services-header h2 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.loc-services-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

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

.loc-service-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.loc-service-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.loc-service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.loc-service-item h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.loc-service-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.loc-map {
  padding: 80px 0;
  background: var(--gray-50);
}

.loc-map h2 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
  text-align: center;
}

.loc-map > .container > p {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.loc-map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.loc-map-embed iframe {
  display: block;
}

.loc-dog-wash {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 50%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
}

.loc-dog-wash::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.loc-dog-wash-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.loc-dog-wash-img img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(249, 115, 22, 0.25);
  border: 4px solid white;
}

.loc-exclusive-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.loc-dog-wash-content h2 {
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.loc-dog-wash-content > p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.loc-dog-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.loc-dog-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-dark);
  font-weight: 600;
}

.loc-dog-features svg {
  color: var(--green);
  flex-shrink: 0;
}

.loc-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
}

.loc-cta-content {
  text-align: center;
  color: white;
}

.loc-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: white;
}

.loc-cta-content > p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.loc-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.loc-cta .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.loc-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 900px) {
  .loc-hero-simple {
    padding: 130px 0 60px;
  }
  
  .loc-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .loc-hero-text h1 {
    font-size: 2.2rem;
  }
  
  .loc-hero-image {
    display: none;
  }
  
  .loc-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .loc-info-card {
    padding: 28px 20px;
  }
  
  .loc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .loc-dog-wash-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .loc-dog-wash-img img {
    margin: 0 auto;
  }
  
  .loc-dog-features {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .loc-cta-content h2 {
    font-size: 2rem;
  }
  
  .loc-hero-btns {
    flex-direction: column;
  }
  
  .loc-hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .loc-services-grid {
    grid-template-columns: 1fr;
  }
  
  .loc-service-item {
    padding: 24px 20px;
  }
}

/* Contact Section on Location Pages */
.loc-contact-section {
  padding: 60px 0;
  background: var(--gray-50);
}

.loc-contact-box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.loc-contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-contact-text {
  flex: 1;
}

.loc-contact-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.loc-contact-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin: 0;
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 50%, var(--teal) 100%);
  padding: 200px 0 100px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 400' preserveAspectRatio='xMidYMax slice'%3E%3Cdefs%3E%3ClinearGradient id='skyGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='0.08'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23skyGrad)' d='M0 400V280h18v-30h12v-45h8v-25h14v25h10v-60h6v-35h10v35h8v60h12v-80h8v-40h12v40h6v80h16v-50h10v-70h8v-30h12v30h10v70h8v50h20v-40h14v-55h10v-35h8v35h12v55h10v40h18v-65h12v-45h10v-25h14v25h8v45h10v65h22v-35h16v-75h10v-50h12v-30h10v30h8v50h12v75h14v35h24v-55h10v-85h8v-45h14v-30h10v30h12v45h10v85h8v55h20v-45h12v-60h10v-40h14v40h8v60h10v45h26v-70h14v-50h10v-35h12v35h8v50h12v70h18v-40h10v-80h12v-55h14v-35h10v35h8v55h10v80h12v40h22v-30h16v-65h10v-45h12v45h8v65h14v30h20v-50h12v-40h10v-25h14v25h8v40h10v50h24v-35h14v-55h10v-40h12v40h8v55h12v35h18v-45h10v-70h12v-50h14v50h8v70h10v45h26v-60h12v-45h10v-30h14v30h8v45h10v60h20v-25h12v-35h10v35h8v25h52V400H0z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.04' d='M0 400V320h25v-45h15v-30h20v-50h12v50h18v30h22v-65h10v-40h15v40h12v65h28v-35h18v-55h12v-25h20v25h15v55h25v35h30v-50h15v-70h18v-45h22v45h12v70h20v50h35v-40h12v-60h18v-35h25v35h15v60h22v40h28v-55h18v-75h15v-50h20v50h12v75h25v55h32v-45h15v-65h18v-40h22v40h12v65h20v45h30v-35h18v-55h15v-40h25v40h12v55h22v35h28v-50h15v-70h18v-45h20v45h12v70h25v50h35v-60h18v-50h15v-35h22v35h12v50h20v60h28v-40h15v-30h18v30h12v40h75V400H0z'/%3E%3C/svg%3E");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
}

.contact-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.contact-hero h1 .text-white {
  color: var(--white);
}

.contact-hero h1 .text-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact-hero-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact-hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-hero-icon:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.contact-hero-icon:hover svg {
  background: rgba(255,255,255,0.2);
}

.contact-hero-icon svg {
  width: 32px;
  height: 32px;
  padding: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  box-sizing: content-box;
}

.contact-hero-icon span {
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-content {
  padding: 80px 0;
  background: var(--gray-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-section h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-section > p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.contact-form-wrapper {
  min-height: 400px;
}

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

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.contact-sidebar .contact-card {
  padding: 20px;
}

.contact-sidebar .contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-sidebar .contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-icon.icon-address {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.contact-icon.icon-hours {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}

.contact-icon.icon-services {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}

.contact-icon.icon-phone {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}

.contact-quick-links {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.contact-quick-links h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.contact-quick-links .btn {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.contact-quick-links .btn:last-child {
  margin-bottom: 0;
}

.contact-quick-links .btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.contact-location-link {
  display: block;
  padding: 12px 16px;
  margin: 8px 0;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  color: var(--gray-600);
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.contact-location-link:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  text-decoration: none;
}

.contact-location-link strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.contact-location-address {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact-location-phone {
  display: block;
  font-size: 0.9rem;
}

.contact-location-phone a {
  color: var(--primary);
  font-weight: 600;
}

.contact-locations-card h3 {
  margin-bottom: 16px;
}

.contact-location-block {
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.contact-location-block:last-of-type {
  margin-bottom: 0;
}

.contact-location-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-link {
  display: block;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info-link:hover {
  text-decoration: underline;
}

.contact-hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-hours-note svg {
  color: var(--green);
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 120px;
}

.contact-cta-box h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-cta-box p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-cta-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-cta-links .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-form-section {
    padding: 28px;
  }
  
  .contact-cta-box {
    position: static;
  }
  
  .loc-contact-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .loc-contact-text h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    padding: 130px 0 60px;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .contact-hero-icons {
    gap: 24px;
  }
  
  .contact-hero-icon svg {
    width: 24px;
    height: 24px;
    padding: 10px;
  }
  
  .contact-hero-icon span {
    font-size: 0.8rem;
  }
}

/* About Page Styles */
.about-hero-enhanced {
  position: relative;
  padding: 200px 0 100px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 50%, var(--teal) 100%);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
}

.about-hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero-content h1 .text-white {
  color: white;
  -webkit-text-fill-color: white;
}

.about-hero-content h1 .text-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-content > p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 32px 48px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.15);
}

.about-stat-item {
  text-align: center;
}

.about-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-text {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.about-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}

.about-mission {
  padding: 100px 0;
  background: var(--white);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-content h2 {
  font-size: 2.2rem;
  color: var(--navy-dark);
  margin-bottom: 20px;
  margin-top: 12px;
}

.about-mission-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-mission-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.mission-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy-dark) 100%);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-feature h3 {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.mission-feature p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
}

.about-eco-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-eco-header h2 {
  font-size: 2.2rem;
  color: var(--navy-dark);
  margin: 12px 0 16px;
}

.about-eco-header > p {
  font-size: 1.15rem;
  color: var(--gray-600);
}

.about-eco-content .eco-features li {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: 60px;
}

.about-eco-content .eco-features li svg {
  position: absolute;
  left: 20px;
  top: 24px;
}

.about-eco-content .eco-features li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-eco-content .eco-features li strong {
  font-size: 1.05rem;
  color: var(--navy-dark);
}

.about-eco-content .eco-features li span {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.about-eco {
  padding: 80px 0;
  background: var(--gray-50);
}

.about-eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eco-tag {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-eco-content h2 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.about-eco-content > p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.eco-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.eco-stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.eco-stat-label {
  font-size: 1.2rem;
  color: var(--gray-600);
  font-weight: 500;
}

.eco-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eco-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.5;
}

.eco-features li svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-eco-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-cta {
  padding: 80px 0;
  background: var(--gradient-accent);
  text-align: center;
}

.about-cta-content h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.about-cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .about-eco-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-eco-image {
    order: -1;
  }
  
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 32px;
  }
  
  .about-stat-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .about-hero-enhanced {
    padding: 120px 0 60px;
  }
  
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .about-hero-content > p {
    font-size: 1.1rem;
  }
  
  .about-stat-num {
    font-size: 2rem;
  }
  
  .mission-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .mission-feature-icon {
    margin: 0 auto;
  }
}

/* ADA Accessibility Widget */
.ada-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: var(--font-family);
}

.ada-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.ada-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.ada-toggle svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.ada-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  padding: 20px;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.ada-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ada-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.ada-panel-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
}

.ada-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
}

.ada-close:hover {
  color: var(--navy-dark);
}

.ada-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ada-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #f9fafb;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.ada-option:hover {
  background: #f3f4f6;
}

.ada-option.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: white;
}

.ada-option-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ada-option-info svg {
  width: 20px;
  height: 20px;
}

.ada-option span {
  font-size: 0.9rem;
  font-weight: 600;
}

.ada-option-toggle {
  width: 40px;
  height: 22px;
  background: #d1d5db;
  border-radius: 11px;
  position: relative;
  transition: all 0.2s ease;
}

.ada-option.active .ada-option-toggle {
  background: rgba(255,255,255,0.4);
}

.ada-option-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.ada-option.active .ada-option-toggle::after {
  left: 20px;
}

/* Accessibility mode styles */
body.ada-high-contrast > *:not(.ada-widget) {
  filter: contrast(1.4);
}

.ada-widget {
  filter: none !important;
}

body.ada-large-text {
  font-size: 120%;
}

body.ada-large-text h1 {
  font-size: 3rem !important;
}

body.ada-large-text h2 {
  font-size: 2.2rem !important;
}

body.ada-large-text p, 
body.ada-large-text span,
body.ada-large-text a {
  font-size: 1.15rem !important;
}

body.ada-highlight-links a {
  outline: 3px solid #fbbf24 !important;
  outline-offset: 2px;
}

body.ada-readable-font {
  font-family: Arial, Helvetica, sans-serif !important;
}

body.ada-readable-font * {
  font-family: inherit !important;
}

@media (max-width: 768px) {
  .ada-widget {
    bottom: 15px;
    left: 15px;
  }
  
  .ada-toggle {
    width: 44px;
    height: 44px;
  }
  
  .ada-toggle svg {
    width: 24px;
    height: 24px;
  }
  
  .ada-panel {
    width: 260px;
  }
}
