/* =============================================
   MAGIC CLEAN - Custom Dark Elegant Theme
   Sophisticated dark design with cyan/mint accents
   Rubik + Playfair Display typography
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --cyan: #00AEEF;
  --cyan-dark: #0071BC;
  --cyan-light: #75D5FA;
  --navy: #03002f;
  --navy-light: #0a0a4a;
  --mint: #00ff88;
  --mint-dark: #00cc6a;

  /* Dark Theme Surfaces */
  --surface-900: #0b0c10;
  --surface-800: #111318;
  --surface-700: #181a21;
  --surface-600: #1f222b;
  --surface-500: #272b36;
  --surface-400: #323744;
  --surface-300: #3e4455;

  /* Neutrals (inverted for dark theme) */
  --white: #f0f1f5;
  --black: #0b0c10;
  --gray-900: #e8e9ed;
  --gray-800: #d0d2d8;
  --gray-700: #b8bac2;
  --gray-600: #9a9daa;
  --gray-500: #7c8092;
  --gray-400: #5e6374;
  --gray-300: #3e4355;
  --gray-200: #272b36;
  --gray-100: #1a1d26;
  --gray-50: #111318;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;

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

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 16px;
  --radius-3xl: 20px;
  --radius-full: 9999px;

  /* Shadows (dark theme - use subtle glows) */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 30px rgba(0, 0, 0, 0.5);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1440px;
  --container-padding: 1.5rem;

  /* Component Tokens (used by components.css) */
  --bg-card: var(--surface-800);
  --bg-card-hover: var(--surface-700);
  --bg-secondary: var(--surface-700);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(40, 240, 255, 0.2);
  --text-primary: var(--white);
  --text-secondary: var(--gray-700);
  --text-muted: var(--gray-600);
  --gradient-brand: linear-gradient(135deg, var(--cyan), var(--mint));
  --shadow-glow-cyan: 0 0 15px rgba(40, 240, 255, 0.15);
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-5xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-7xl); }
}

p {
  margin-bottom: var(--space-4);
}

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

/* ===== SECTION BOX - rounded container theme ===== */
.section-box {
  background: var(--surface-800);
  border-radius: var(--radius-3xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .section-box {
    padding: var(--space-20);
  }
}

.section-box-dark {
  background: var(--surface-700);
  color: var(--white);
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.section-label::before {
  content: '\2727  ';
}

.section-label::after {
  content: '  \2727';
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: var(--text-5xl);
  }
}

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

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

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

.top-bar-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-300);
}

.top-bar-item svg {
  color: var(--cyan);
}

.top-bar-item a:hover {
  color: var(--cyan);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--gray-300);
}

.top-bar-right svg {
  color: var(--cyan);
}

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

/* ===== HEADER ===== */
.site-header {
  background-color: var(--surface-800);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  background-color: rgba(17, 19, 24, 0.95);
  backdrop-filter: blur(12px);
}

.site-header.scrolled .logo-img {
  height: 85px;
  margin-bottom: -15px;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4)) brightness(1.1);
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              margin-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .logo-img {
    height: 100px;
    margin-bottom: -20px;
  }
  .site-header.scrolled .logo-img {
    height: 65px;
    margin-bottom: -8px;
  }
}

/* Desktop Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--gray-800);
  padding: var(--space-3) var(--space-5);
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-item.has-dropdown .nav-link svg {
  transition: transform var(--transition-fast);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface-600);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

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

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

.dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--gray-800);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan);
}

/* ===== MEGA MENU ===== */
.nav-item.has-megadropdown {
  position: static;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: calc(100% - var(--space-8));
  max-width: 880px;
  background: var(--surface-700);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  padding: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

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

.nav-item.has-megadropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
}

.mega-divider {
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #7c3aed 20%, #a855f7 80%, transparent 100%);
  border-radius: 2px;
  opacity: 0.6;
}

.mega-column {
  display: flex;
  flex-direction: column;
}

.mega-column-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-column-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
}

.mega-column-icon svg {
  width: 24px;
  height: 24px;
}

.mega-column-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.mega-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  flex: 1;
}

.mega-service-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--gray-400);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.mega-service-item:hover {
  background: rgba(124, 58, 237, 0.1);
  color: var(--white);
  transform: translateX(4px);
}

.mega-service-icon {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  opacity: 0.6;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-service-item:hover .mega-service-icon {
  color: #a855f7;
  opacity: 1;
}

.mega-column-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #a855f7;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.mega-column-cta:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--white);
}

.mega-column-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.mega-column-cta:hover svg {
  transform: translateX(3px);
}

/* ===== SERVICE AREAS MEGA MENU ===== */
.mega-locations-grid {
  grid-template-columns: 1.1fr auto 1.4fr auto 1fr;
}

.mega-location-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  flex: 1;
}

.mega-location-items-2col {
  grid-template-columns: repeat(2, 1fr);
}

.mega-location-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  color: var(--gray-400);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.mega-location-item:hover {
  background: rgba(0, 174, 239, 0.1);
  color: var(--white);
  transform: translateX(4px);
}

.mega-location-item svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.mega-location-item:hover svg {
  opacity: 1;
}

.mega-location-item.featured {
  font-weight: 600;
  color: var(--gray-700);
}

.mega-location-item.featured svg {
  color: #a855f7;
  opacity: 0.8;
}

.mega-promo-card {
  margin-top: var(--space-6);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(0, 174, 239, 0.15);
  border-radius: var(--radius-lg);
}

.mega-promo-card p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.mega-promo-card a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}

.mega-promo-card a:hover {
  color: var(--white);
}

.mega-promo-card a svg {
  width: 14px;
  height: 14px;
}

/* Mobile location grid */
.mobile-dropdown .mobile-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.mobile-dropdown .mobile-location-grid a {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

@media (max-width: 1023px) {
  .mega-locations-grid {
    grid-template-columns: 1fr;
  }

  .mega-locations-grid .mega-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.2), transparent);
  }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.search-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--surface-500);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.search-btn:hover {
  background: var(--surface-400);
}

@media (min-width: 1024px) {
  .search-btn {
    display: flex;
  }
}

/* Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--surface-800);
  z-index: 1001;
  padding: var(--space-8);
  overflow-y: auto;
  transition: right var(--transition-base);
}

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

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  color: var(--gray-700);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--white);
}

.mobile-nav-link:hover {
  color: var(--cyan);
}

.mobile-dropdown {
  display: none;
  padding-bottom: var(--space-4);
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--gray-700);
}

.mobile-dropdown a:hover {
  color: var(--cyan);
}

.mobile-dropdown-header {
  display: block;
  padding: var(--space-4) var(--space-4) var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--space-2);
}

.mobile-dropdown-header:first-child {
  border-top: none;
  margin-top: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-dark {
  background: var(--surface-500);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--surface-400);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.btn-lg {
  padding: 18px 40px;
  font-size: var(--text-base);
}

/* Offset button (VWash "Order Now" style) */
.btn-offset-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 18px 40px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-4);
  position: relative;
}

.btn-offset-submit:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 0 var(--space-6);
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .hero {
    padding: 0 var(--space-10);
    margin-top: var(--space-8);
  }
}

.hero-slider-wrapper {
  position: relative;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
}

@property --wash-progress {
  syntax: '<percentage>';
  initial-value: 105%;
  inherits: false;
}

@property --wash-edge {
  syntax: '<percentage>';
  initial-value: 140%;
  inherits: false;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: scale(1);
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  animation: heroKenBurns 8s ease-in-out forwards;
}

.hero-slide.slide-out {
  opacity: 1;
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black var(--wash-progress),
    rgba(0,0,0,0.6) calc(var(--wash-progress) + 8%),
    rgba(0,0,0,0.2) calc(var(--wash-edge) - 8%),
    transparent var(--wash-edge),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    black 0%,
    black var(--wash-progress),
    rgba(0,0,0,0.6) calc(var(--wash-progress) + 8%),
    rgba(0,0,0,0.2) calc(var(--wash-edge) - 8%),
    transparent var(--wash-edge),
    transparent 100%
  );
  animation: pressureWashAway 1.8s cubic-bezier(0.35, 0, 0.55, 1) forwards;
}

@keyframes pressureWashAway {
  0%   { --wash-progress: 105%; --wash-edge: 140%; }
  100% { --wash-progress: -40%; --wash-edge: -5%; }
}

/* Spray particle overlay for pressure wash effect */
.wash-spray {
  position: absolute;
  top: 0;
  left: 105%;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 4px 8px at 20% 15%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(ellipse 3px 6px at 60% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 5px 4px at 35% 40%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(ellipse 3px 7px at 75% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 4px 5px at 15% 65%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(ellipse 6px 3px at 50% 80%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(ellipse 3px 5px at 85% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(ellipse 4px 6px at 40% 90%, rgba(255,255,255,0.6) 0%, transparent 100%);
}

.wash-spray.active {
  animation: sprayMove 1.8s cubic-bezier(0.35, 0, 0.55, 1) forwards;
}

@keyframes sprayMove {
  0%   { left: 105%; opacity: 0; }
  5%   { opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { left: -10%; opacity: 0; }
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(3, 0, 47, 0.4) 70%,
    rgba(40, 240, 255, 0.05) 100%
  );
  z-index: 1;
}

/* Vignette overlay for depth */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* ===== HERO ANIMATED MASK ===== */
.hero-mask {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-3xl);
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

/* Animated gradient border */
.hero-mask-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-3xl);
  padding: 2px;
  background: conic-gradient(
    from var(--mask-angle, 0deg),
    transparent 0%,
    var(--cyan) 10%,
    transparent 20%,
    transparent 50%,
    rgba(40, 240, 255, 0.3) 60%,
    transparent 70%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: rotateMaskBorder 6s linear infinite;
  opacity: 0.4;
}

@keyframes rotateMaskBorder {
  to { --mask-angle: 360deg; }
}

@property --mask-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Corner accent marks */
.hero-mask-corner {
  display: none;
}

.hero-mask-corner::before,
.hero-mask-corner::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-mask-corner-tl { top: 16px; left: 16px; }
.hero-mask-corner-tl::before { width: 24px; height: 2px; top: 0; left: 0; }
.hero-mask-corner-tl::after { width: 2px; height: 24px; top: 0; left: 0; }

.hero-mask-corner-tr { top: 16px; right: 16px; }
.hero-mask-corner-tr::before { width: 24px; height: 2px; top: 0; right: 0; }
.hero-mask-corner-tr::after { width: 2px; height: 24px; top: 0; right: 0; }

.hero-mask-corner-bl { bottom: 16px; left: 16px; }
.hero-mask-corner-bl::before { width: 24px; height: 2px; bottom: 0; left: 0; }
.hero-mask-corner-bl::after { width: 2px; height: 24px; bottom: 0; left: 0; }

.hero-mask-corner-br { bottom: 16px; right: 16px; }
.hero-mask-corner-br::before { width: 24px; height: 2px; bottom: 0; right: 0; }
.hero-mask-corner-br::after { width: 2px; height: 24px; bottom: 0; right: 0; }

/* Animated shine sweep */
.hero-mask-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(40, 240, 255, 0.02) 45%,
    rgba(40, 240, 255, 0.04) 50%,
    rgba(40, 240, 255, 0.02) 55%,
    transparent 70%
  );
  animation: heroShine 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes heroShine {
  0% { left: -100%; }
  40% { left: 150%; }
  100% { left: 150%; }
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  max-width: 650px;
  pointer-events: auto;
}

@media (min-width: 480px) {
  .hero-content {
    padding: var(--space-8);
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-16) var(--space-20);
  }
}

.hero-slider {
  min-height: 620px;
}

.hero-slide {
  min-height: 620px;
}

@media (min-width: 768px) {
  .hero-slider {
    min-height: 600px;
  }
  .hero-slide {
    min-height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero-slider {
    min-height: 680px;
  }
  .hero-slide {
    min-height: 680px;
  }
}

.hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5), 0 -1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 480px) {
  .hero-label {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
  }
}

.hero-label::before {
  content: '\2727  ';
}

.hero-label::after {
  content: '  \2727';
}

.hero-title {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.4);
}

@media (min-width: 480px) {
  .hero-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--text-6xl);
  }
}

.hero-description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  max-width: 540px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (min-width: 480px) {
  .hero-description {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-8);
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: var(--text-lg);
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero Navigation - VWash style thin arrows, no background */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-nav:hover svg {
  color: var(--cyan);
}

.hero-nav svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  stroke-width: 1.5;
  transition: color var(--transition-fast);
}

.hero-nav-prev {
  left: 0;
}

.hero-nav-next {
  right: 0;
}

@media (max-width: 1024px) {
  .hero-nav-prev {
    left: 8px;
  }
  .hero-nav-next {
    right: 8px;
  }
}

/* ===== SERVICE BAR ===== */
.services-bar {
  padding: var(--space-16) 0;
}

.services-bar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .services-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-bar-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--surface-800);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
}

.service-bar-card:hover {
  border-color: rgba(40, 240, 255, 0.2);
  box-shadow: 0 4px 20px rgba(40, 240, 255, 0.06);
  transform: translateY(-2px);
}

.service-bar-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, rgba(40, 240, 255, 0.12), rgba(40, 240, 255, 0.04));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.service-bar-card:hover .service-bar-icon {
  background: var(--cyan);
}

.service-bar-icon svg {
  color: var(--cyan);
  transition: color var(--transition-fast);
}

.service-bar-card:hover .service-bar-icon svg {
  color: var(--navy);
}

.service-bar-text h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--white);
}

a.service-bar-card {
  text-decoration: none;
  color: inherit;
}

.service-bar-text p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

.service-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-base);
}

.service-bar-card:hover .service-bar-link {
  opacity: 1;
  transform: translateX(0);
}

.service-bar-link svg {
  transition: transform var(--transition-fast);
}

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

@media (max-width: 1023px) {
  .service-bar-link {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.about-grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

/* Before/After Slider */
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: var(--shadow-xl);
}

.before-after-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.before-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Realistic dirt overlay — SVG noise + gradient splotches */
.dirt-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.35' numOctaves='3' stitchTiles='stitch' seed='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='800' height='800' filter='url(%23d)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 800px 800px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.75;
}

.dirt-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 160px 120px at 15% 20%, rgba(60, 40, 10, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 240px 160px at 35% 55%, rgba(70, 50, 15, 0.4) 0%, transparent 65%),
    radial-gradient(ellipse 120px 180px at 60% 30%, rgba(55, 38, 12, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 200px 100px at 25% 80%, rgba(65, 45, 10, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 140px 140px at 75% 70%, rgba(50, 35, 8, 0.3) 0%, transparent 65%),
    radial-gradient(ellipse 80px 70px at 45% 15%, rgba(80, 55, 20, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 180px 80px at 10% 50%, rgba(60, 40, 12, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 100px 160px at 80% 40%, rgba(55, 40, 15, 0.3) 0%, transparent 65%),
    radial-gradient(ellipse 220px 140px at 50% 90%, rgba(70, 48, 12, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 90px 90px at 90% 15%, rgba(60, 42, 10, 0.4) 0%, transparent 70%);
  mix-blend-mode: multiply;
}

.dirt-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40px 120px at 20% 35%, rgba(50, 35, 10, 0.4) 0%, transparent 80%),
    radial-gradient(ellipse 30px 100px at 40% 60%, rgba(60, 42, 12, 0.35) 0%, transparent 75%),
    radial-gradient(ellipse 50px 140px at 65% 25%, rgba(55, 38, 10, 0.3) 0%, transparent 80%),
    radial-gradient(ellipse 36px 110px at 85% 50%, rgba(50, 35, 8, 0.35) 0%, transparent 75%),
    radial-gradient(circle 16px at 30% 45%, rgba(70, 50, 15, 0.5) 0%, transparent 100%),
    radial-gradient(circle 12px at 55% 20%, rgba(65, 45, 12, 0.45) 0%, transparent 100%),
    radial-gradient(circle 20px at 70% 65%, rgba(60, 40, 10, 0.4) 0%, transparent 100%),
    radial-gradient(circle 10px at 15% 70%, rgba(75, 55, 18, 0.5) 0%, transparent 100%),
    radial-gradient(circle 14px at 45% 80%, rgba(55, 38, 10, 0.45) 0%, transparent 100%),
    radial-gradient(circle 24px at 80% 30%, rgba(60, 42, 12, 0.4) 0%, transparent 100%);
  mix-blend-mode: multiply;
}

.before-image-wrapper .before-image {
  filter: saturate(0.85) brightness(0.92);
}

.after-image {
  z-index: 1;
}

/* Slider handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 10;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.slider-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--surface-600);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 11;
}

.slider-handle-btn svg {
  color: var(--white);
}

/* Slider labels */
.slider-label {
  position: absolute;
  bottom: var(--space-4);
  z-index: 5;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.6);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.slider-label-before {
  left: var(--space-4);
}

.slider-label-after {
  right: var(--space-4);
}

/* About Content */
.about-content .section-title {
  margin-bottom: var(--space-4);
}

.about-content > p {
  font-size: var(--text-lg);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
}

.about-features {
  margin-bottom: var(--space-8);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.about-feature svg {
  width: 18px;
  height: 18px;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-feature span {
  font-size: var(--text-base);
  color: var(--gray-800);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-phone {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-phone-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(40, 240, 255, 0.15), rgba(40, 240, 255, 0.05));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-phone-icon svg {
  color: var(--cyan);
}

.about-phone-text {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.about-phone-number {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.about-phone-number:hover {
  color: var(--cyan);
}

/* ===== OUR SERVICES SECTION (Dark, intricate design) ===== */
.services-section {
  padding: 0 0 var(--space-16);
}

.services-layout {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-12);
    align-items: center;
  }
}

.services-left .section-label {
  color: var(--mint);
}

.services-left .section-title {
  color: var(--white);
  font-size: var(--text-3xl);
}

@media (min-width: 768px) {
  .services-left .section-title {
    font-size: var(--text-4xl);
  }
}

.services-left > p {
  color: var(--gray-400);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* Service Info Card (slider card overlay) */
.service-info-slider {
  position: relative;
}

.service-info-card {
  background: var(--cyan);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  color: var(--navy);
}

@media (min-width: 768px) {
  .service-info-card {
    padding: var(--space-8);
  }
}

.service-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.service-info-counter {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-info-nav {
  display: flex;
  gap: var(--space-2);
}

.service-nav-btn {
  width: 40px;
  height: 40px;
  background: rgba(3, 0, 47, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--transition-fast);
}

.service-nav-btn:hover {
  background: rgba(3, 0, 47, 0.25);
}

.service-info-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
}

.service-info-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.service-info-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--navy);
}

.service-info-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.service-info-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
}

.service-info-feature svg {
  color: var(--navy);
  flex-shrink: 0;
}

/* Service Image Slider */
.service-image-slider {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 400px;
}

@media (min-width: 768px) {
  .service-image-slider {
    min-height: 500px;
  }
}

.service-image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-image-slide.active {
  position: relative;
  opacity: 1;
}

.service-image-slide img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

@media (min-width: 768px) {
  .service-image-slide img {
    min-height: 500px;
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--surface-700);
  padding: var(--space-5) 0;
  overflow: hidden;
}

/* Marquee bar inside How It Works box */
.marquee-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: var(--space-2) 0;
  overflow: hidden;
  z-index: 5;
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  gap: 0;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  padding: 0 var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .marquee-item {
    font-size: var(--text-base);
    padding: 0 var(--space-4);
  }
}

.marquee-star {
  display: flex;
  align-items: center;
  padding: 0 var(--space-2);
  color: var(--cyan);
}

.marquee-star svg {
  width: 16px;
  height: 16px;
}

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

/* ===== WORKSHOP & GALLERY ===== */
.gallery-section {
  padding: var(--space-16) 0;
}

.gallery-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.gallery-circles-row2 {
  margin-top: var(--space-8);
}

.gallery-circle {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.gallery-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-circle:hover img {
  transform: scale(1.08);
}

.gallery-circle-side {
  width: 260px;
  height: 260px;
  border: 3px solid rgba(255, 255, 255, 0.08);
}

.gallery-circle-center {
  width: 380px;
  height: 380px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
}

/* Center circle overlay */
.gallery-circle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 12, 16, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.gallery-circle-center:hover .gallery-circle-overlay {
  opacity: 1;
}

.gallery-circle-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.gallery-circle-cat {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.gallery-circle-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.gallery-circle-link:hover {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

/* Responsive gallery */
@media (max-width: 1023px) {
  .gallery-circle-side {
    width: 180px;
    height: 180px;
  }
  .gallery-circle-center {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .gallery-circles {
    flex-direction: column;
    gap: var(--space-4);
  }
  .gallery-circle-side {
    width: 200px;
    height: 200px;
  }
  .gallery-circle-center {
    width: 260px;
    height: 260px;
  }
  .gallery-circles-row2 {
    margin-top: var(--space-4);
  }
  .gallery-circle-overlay {
    opacity: 1;
  }
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  padding: 0 0 var(--space-16);
}

.how-it-works-section .container {
  max-width: 100%;
  padding: 0 var(--space-4);
}

/* The video box */
.how-it-works-box {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .how-it-works-box {
    min-height: 780px;
  }
}

@media (min-width: 1200px) {
  .how-it-works-box {
    min-height: 850px;
  }
}

/* Heading content inside the box */
.how-it-works-top {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 120px;
  margin-bottom: var(--space-6);
}

.how-it-works-top .section-label {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.how-it-works-top .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.how-it-works-top p {
  max-width: 640px;
  margin: 0 auto var(--space-8);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Stats row */
.process-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

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

.process-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.process-stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.how-it-works-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.how-it-works-video,
.how-it-works-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-it-works-video {
  z-index: 1;
}

.how-it-works-fallback {
  z-index: 0;
}

.how-it-works-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 0.75) 55%,
    rgba(0, 0, 0, 0.9) 78%,
    rgba(0, 0, 0, 0.97) 100%
  );
  z-index: 2;
}

.how-it-works-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--space-6) var(--space-10);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .how-it-works-content {
    padding: 0 var(--space-10) var(--space-12);
  }
}

/* Steps grid at the bottom */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
  }
}

.step-item {
  text-align: center;
  padding: var(--space-1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-1);
  transition: all var(--transition-base);
}

.step-item:hover .step-icon {
  background: var(--cyan);
  border-color: var(--cyan);
}

.step-icon svg {
  color: var(--white);
  transition: color var(--transition-fast);
}

.step-item:hover .step-icon svg {
  color: var(--navy);
}

.step-number {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--cyan);
  margin-right: 4px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.step-text {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 220px;
  margin: 0 auto;
}

.step-connector {
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 var(--space-2);
}

.step-connector svg {
  width: 34px;
  height: 34px;
}

@media (min-width: 1024px) {
  .step-connector {
    display: flex;
    padding-top: var(--space-8);
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 0 0 var(--space-16);
}

.pricing-grid {
  display: grid;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-16);
  }
}

.pricing-content .section-title {
  font-size: var(--text-3xl);
}

@media (min-width: 768px) {
  .pricing-content .section-title {
    font-size: var(--text-4xl);
  }
}

.pricing-content > p {
  font-size: var(--text-lg);
  color: var(--gray-700);
  margin-bottom: var(--space-8);
}

/* Pricing slider wrapper */
.pricing-slider-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.pricing-slider-nav {
  width: 48px;
  height: 48px;
  background: var(--surface-600);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--white);
  z-index: 5;
}

.pricing-slider-nav:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}

.pricing-slider {
  width: 100%;
  overflow: visible;
  padding-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
}

/* Pricing cards */
.pricing-card {
  background: var(--surface-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: visible;
  transition: all var(--transition-base);
  margin-bottom: var(--space-8);
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  width: 100%;
}

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

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(40, 240, 255, 0.06);
  border-color: rgba(40, 240, 255, 0.15);
}

.pricing-card.featured {
  background: var(--surface-600);
  border-color: rgba(40, 240, 255, 0.15);
}

.pricing-card-inner {
  padding: var(--space-10) var(--space-10) var(--space-12);
}

@media (min-width: 768px) {
  .pricing-card-inner {
    padding: var(--space-12) var(--space-12) var(--space-16);
  }
}

/* Popular ribbon */
.pricing-ribbon {
  position: absolute;
  top: 20px;
  right: -8px;
  background: var(--mint);
  color: var(--navy);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.pricing-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  border: 4px solid transparent;
  border-top-color: var(--mint-dark);
  border-right-color: var(--mint-dark);
}

.pricing-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(40, 240, 255, 0.12);
  color: var(--cyan);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.pricing-card.featured .pricing-badge {
  background: rgba(40, 240, 255, 0.15);
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
}

.pricing-card.featured .pricing-title {
  color: var(--white);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
}

.pricing-price sup {
  font-size: var(--text-lg);
  vertical-align: super;
}

.pricing-card.featured .pricing-price {
  color: var(--white);
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-6);
  margin-bottom: var(--space-6);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.pricing-card.featured .pricing-feature {
  color: var(--gray-300);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--mint);
  flex-shrink: 0;
}

/* Offset Book Now button (VWash "Order Now" style) */
.pricing-book-btn {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 36px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 12px rgba(40, 240, 255, 0.15);
  transition: all var(--transition-base);
  white-space: nowrap;
  z-index: 5;
}

.pricing-book-btn:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.pricing-book-btn svg {
  width: 16px;
  height: 16px;
}

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

@media (max-width: 767px) {
  .contact-section .section-box {
    padding: var(--space-6);
  }
}

.contact-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-image {
  min-height: 350px;
  overflow: hidden;
}

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

.contact-form-wrapper {
  background: var(--surface-700);
  padding: var(--space-8);
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: var(--space-10);
  }
}

.contact-form-wrapper .section-title {
  color: var(--white);
  margin-bottom: var(--space-8);
}

/* CTA Buttons (call/text) */
.contact-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.btn-cta-call,
.btn-cta-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 16px 28px;
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-cta-call {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: var(--white);
}

.btn-cta-call:hover {
  background: linear-gradient(135deg, #6d28d9, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
  color: var(--white);
}

.btn-cta-text {
  background: rgba(0, 174, 239, 0.1);
  border: 2px solid rgba(0, 174, 239, 0.3);
  color: var(--cyan);
}

.btn-cta-text:hover {
  background: rgba(0, 174, 239, 0.2);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.2);
  color: var(--white);
}

.btn-cta-call svg,
.btn-cta-text svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-cta-secondary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.contact-cta-secondary a {
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.contact-cta-secondary a:hover {
  color: var(--cyan);
}

@media (max-width: 767px) {
  .contact-cta-group {
    flex-direction: column;
  }

  .btn-cta-call,
  .btn-cta-text {
    width: 100%;
    justify-content: center;
  }
}

.contact-form {
  display: grid;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: var(--gray-500);
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 0 0 var(--space-16);
}

.testimonials-grid {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: var(--space-12);
  }
}

.testimonials-intro h3 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.testimonials-intro > p {
  font-size: var(--text-lg);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
}

.testimonials-rating {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.rating-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: var(--mint);
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-count {
  font-size: var(--text-sm);
  color: var(--gray-500);
  display: block;
  margin-top: var(--space-1);
}

/* Testimonial house sparkle design */
.testimonial-design {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-design-inner {
  position: relative;
  width: 220px;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonial-design-inner {
    width: 280px;
    height: 280px;
  }
}

.testimonial-house-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--cyan);
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(40, 240, 255, 0.15));
}

.testimonial-content blockquote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .testimonial-content blockquote {
    font-size: var(--text-2xl);
  }
}

.testimonial-author {
  font-weight: 600;
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sparkle animation for testimonials */
.sparkle-container {
  position: absolute;
  inset: 0;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: sparkleAnim 2s ease-in-out infinite;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.2);
}

.sparkle::before,
.sparkle::after {
  content: '';
  position: absolute;
  background: var(--white);
}

.sparkle::before {
  width: 2px;
  height: 16px;
  left: 3px;
  top: -4px;
  border-radius: 2px;
}

.sparkle::after {
  width: 16px;
  height: 2px;
  left: -4px;
  top: 3px;
  border-radius: 2px;
}

.sparkle-1 { top: 30%; left: 32%; animation-delay: 0s; }
.sparkle-2 { top: 32%; right: 32%; animation-delay: 0.4s; }
.sparkle-3 { top: 45%; left: 30%; animation-delay: 0.8s; }
.sparkle-4 { top: 48%; right: 30%; animation-delay: 1.2s; }
.sparkle-5 { bottom: 30%; left: 34%; animation-delay: 0.6s; }
.sparkle-6 { bottom: 32%; right: 32%; animation-delay: 1s; }
.sparkle-7 { top: 36%; left: 46%; animation-delay: 1.4s; }
.sparkle-8 { bottom: 28%; left: 48%; animation-delay: 0.2s; }

@keyframes sparkleAnim {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: var(--space-16) 0;
}

.blog-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.blog-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--surface-800);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.02);
}

.blog-card-content {
  padding: var(--space-8);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-3);
}

.blog-card-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: var(--radius-full);
}

.blog-card-category {
  background: var(--mint);
  color: var(--navy);
  padding: 2px 10px;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.blog-card h4 a:hover {
  color: var(--cyan);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-800);
  transition: color var(--transition-fast);
}

.blog-card-link:hover {
  color: var(--cyan);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--surface-800);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--gray-400);
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
  line-height: 1.6;
}

.footer-phone {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-2);
}

.footer-phone:hover {
  color: var(--cyan);
}

.footer-email {
  color: var(--gray-400);
  display: block;
  margin-bottom: var(--space-6);
}

.footer-email:hover {
  color: var(--cyan);
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  background: var(--surface-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--cyan);
  color: var(--navy);
}

.footer-column h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

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

.footer-links a {
  color: var(--gray-400);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-6) 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.footer-credit {
  margin-top: var(--space-2);
}

.footer-credit a {
  color: var(--cyan);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--mint);
}

/* ===== SERVICE ACCORDIONS ===== */
.service-accordion {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  background: var(--surface-800);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--white);
}

.accordion-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(0, 255, 136, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 24px;
  height: 24px;
}

.accordion-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.service-accordion.active .accordion-toggle {
  transform: rotate(180deg);
  background: var(--cyan);
  color: var(--navy);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 var(--space-6) var(--space-6);
}

.service-accordion.active .accordion-content {
  max-height: 2000px;
}

.accordion-description {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.accordion-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.accordion-card h4 {
  color: var(--cyan);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.accordion-card h4 svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.accordion-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-card li {
  color: var(--text-secondary);
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
  font-size: var(--text-sm);
}

.accordion-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
}

.accordion-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.6;
}

.accordion-faq {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-5);
}

.accordion-faq h4 {
  color: var(--white);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.accordion-faq-item {
  margin-bottom: var(--space-4);
}

.accordion-faq-item:last-child {
  margin-bottom: 0;
}

.accordion-faq-item strong {
  color: var(--white);
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.accordion-faq-item p {
  color: var(--text-secondary);
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.accordion-cta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.accordion-price {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.1));
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 600;
}

.accordion-price span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: var(--text-sm);
}

/* Service page hero */
.services-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-hero-bg video,
.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(3,0,47,0.5) 70%, rgba(40,240,255,0.05) 100%);
  z-index: 1;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-12) var(--space-4);
  max-width: 800px;
}

.services-hero .breadcrumb {
  margin-bottom: var(--space-4);
}

.services-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.services-hero p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* Services section styling */
.services-page-section {
  padding: var(--space-16) 0;
}

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.services-intro p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
}

/* Why choose section */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.why-choose-card {
  background: var(--surface-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  border-color: rgba(0, 174, 239, 0.3);
  transform: translateY(-3px);
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(0, 255, 136, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.why-choose-icon svg {
  width: 28px;
  height: 28px;
}

.why-choose-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

/* Page CTA section */
.page-cta-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--surface-800) 0%, var(--surface-900) 100%);
}

.page-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-cta-content p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.page-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.page-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
}

.page-cta-phone svg {
  color: var(--cyan);
}

.page-cta-phone a {
  color: var(--cyan);
  font-size: var(--text-xl);
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-cta-phone a:hover {
  color: var(--mint);
}

@media (max-width: 768px) {
  .accordion-header {
    padding: var(--space-4);
  }

  .accordion-title {
    font-size: var(--text-lg);
    gap: var(--space-3);
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
  }

  .accordion-icon svg {
    width: 20px;
    height: 20px;
  }

  .accordion-content-inner {
    padding: 0 var(--space-4) var(--space-5);
  }

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

  .services-hero {
    min-height: 350px;
    padding-top: 100px;
  }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-cyan { color: var(--cyan); }
