﻿/* =============================================================================
   ServicePlatform Public Site â€” Soft UI + Glassmorphism Design System
   Premium Â· Mobile-first Â· Conversion-focused
   ============================================================================= */

:root {
  --sp-primary: #0ea5e9;
  --sp-primary-dark: #0284c7;
  --sp-primary-soft: rgba(14, 165, 233, 0.12);
  --sp-accent: #f59e0b;
  --sp-accent-dark: #d97706;
  --sp-accent-soft: rgba(245, 158, 11, 0.12);
  --sp-success: #22c55e;
  --sp-success-dark: #16a34a;
  --sp-danger: #ef4444;
  --sp-dark: #0f172a;
  --sp-dark-soft: #1e293b;
  --sp-navy-950: #0f172a;
  --sp-navy-900: #1e293b;
  --sp-gray-50: #f8fafc;
  --sp-gray-500: #64748b;
  --sp-gray-600: #475569;
  --sp-surface: rgba(255, 255, 255, 0.55);
  --sp-surface-2: rgba(241, 245, 249, 0.72);
  --sp-surface-solid: #f4f7fb;
  --sp-border: rgba(15, 23, 42, 0.06);
  --sp-border-glass: rgba(255, 255, 255, 0.55);
  --sp-text: #1e293b;
  --sp-text-muted: #64748b;
  --sp-white: #ffffff;
  --sp-bg-base: #eef2f7;
  --sp-bg-mesh-1: rgba(14, 165, 233, 0.09);
  --sp-bg-mesh-2: rgba(245, 158, 11, 0.06);
  --sp-bg-mesh-3: rgba(99, 102, 241, 0.04);
  --sp-radius: 1.125rem;
  --sp-radius-lg: 1.5rem;
  --sp-radius-xl: 2rem;
  --sp-radius-2xl: 2.5rem;
  --sp-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --sp-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.03);
  --sp-shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.04);
  --sp-shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 40px rgba(15, 23, 42, 0.06);
  --sp-glass: rgba(255, 255, 255, 0.68);
  --sp-glass-strong: rgba(255, 255, 255, 0.82);
  --sp-glass-dark: rgba(15, 23, 42, 0.72);
  --sp-glass-blur: 20px;
  --sp-glass-blur-lg: 32px;
  --sp-glass-border: rgba(255, 255, 255, 0.52);
  --sp-glass-border-dark: rgba(255, 255, 255, 0.1);
  --sp-glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --sp-glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), var(--sp-glass-highlight);
  --sp-glass-shadow-hover: 0 20px 56px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  --sp-header-h: 72px;
  --sp-mobile-bar-h: 68px;
  --sp-font: 'Inter', system-ui, -apple-system, sans-serif;
  --sp-font-display: 'Inter', system-ui, sans-serif;
  --sp-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --sp-transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --sp-transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --sp-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --sp-space-1: 0.25rem;
  --sp-space-2: 0.5rem;
  --sp-space-3: 0.75rem;
  --sp-space-4: 1rem;
  --sp-space-5: 1.25rem;
  --sp-space-6: 1.5rem;
  --sp-space-8: 2rem;
  --sp-space-10: 2.5rem;
  --sp-space-12: 3rem;
  --sp-section-y: 5rem;
  --sp-text-xs: 0.75rem;
  --sp-text-sm: 0.875rem;
  --sp-text-base: 1rem;
  --sp-text-lg: 1.125rem;
  --sp-text-xl: 1.25rem;
  --sp-text-2xl: 1.5rem;
  --sp-text-3xl: 1.875rem;
  --sp-text-4xl: 2.25rem;
  --sp-focus-ring: 0 0 0 3px rgba(14, 165, 233, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sp-font);
  color: var(--sp-text);
  background: var(--sp-bg-base);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: var(--sp-mobile-bar-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 8% -8%, var(--sp-bg-mesh-1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 8%, var(--sp-bg-mesh-2), transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 100%, var(--sp-bg-mesh-3), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, var(--sp-bg-base) 45%, #f1f5f9 100%);
}

@media (min-width: 992px) {
  body { padding-bottom: 0; }
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--sp-primary); text-decoration: none; transition: color var(--sp-transition); }
a:hover { color: var(--sp-primary-dark); }

/* â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.display-title {
  font-family: var(--sp-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--sp-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--sp-text-muted);
  font-size: 1.0625rem;
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.btn-sp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), background var(--sp-transition);
  min-height: 48px;
  white-space: nowrap;
}

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

.btn-sp-primary {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95) 0%, rgba(2, 132, 199, 0.98) 100%);
  color: var(--sp-white);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-sp-primary:hover {
  color: var(--sp-white);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sp-accent {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.98) 100%);
  color: var(--sp-dark);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-sp-accent:hover {
  color: var(--sp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-sp-success {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.95) 0%, rgba(34, 197, 94, 0.98) 100%);
  color: var(--sp-white);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-sp-success:hover { color: var(--sp-white); transform: translateY(-2px); }

.btn-sp-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sp-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-sp-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--sp-white);
}

.btn-sp-outline-dark {
  background: var(--sp-glass);
  color: var(--sp-dark);
  border: 1px solid var(--sp-glass-border);
  backdrop-filter: blur(var(--sp-glass-blur));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur));
  box-shadow: var(--sp-glass-shadow);
}

.btn-sp-outline-dark:hover {
  background: var(--sp-glass-strong);
  color: var(--sp-dark);
  box-shadow: var(--sp-glass-shadow-hover);
}

.btn-sp-lg { padding: 1rem 2rem; font-size: 1rem; min-height: 54px; }
.btn-sp-sm { padding: 0.625rem 1.125rem; font-size: 0.875rem; min-height: 42px; }

.btn-sp-block { width: 100%; }

/* Bootstrap overrides */
.btn-primary {
  background: linear-gradient(135deg, var(--sp-primary) 0%, var(--sp-primary-dark) 100%);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--sp-primary-dark) 0%, #0369a1 100%);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.4);
}

.btn-outline-primary {
  color: var(--sp-primary);
  border-color: var(--sp-primary);
  border-radius: 999px;
  font-weight: 600;
}

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

.text-primary { color: var(--sp-primary) !important; }

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: background var(--sp-transition), box-shadow var(--sp-transition), backdrop-filter var(--sp-transition);
}

.site-header .navbar {
  min-height: var(--sp-header-h);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: background var(--sp-transition), box-shadow var(--sp-transition), backdrop-filter var(--sp-transition), border-color var(--sp-transition);
  background: rgba(255, 255, 255, 0.62) !important;
  backdrop-filter: blur(var(--sp-glass-blur-lg)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--sp-glass-blur-lg)) saturate(180%);
  border-bottom: 1px solid var(--sp-glass-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-header .navbar-brand {
  color: var(--sp-dark) !important;
}

.site-header .navbar-brand span {
  color: var(--sp-dark);
}

.site-header .nav-link:not(.btn-book) {
  color: var(--sp-text) !important;
}

.site-header .nav-link:not(.btn-book):hover,
.site-header .nav-link:not(.btn-book):focus {
  color: var(--sp-primary) !important;
}

.site-header .navbar-toggler {
  border-color: var(--sp-border);
}

.site-header--over-hero .navbar {
  background: rgba(255, 255, 255, 0.55) !important;
  box-shadow: none;
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.site-header--scrolled .navbar {
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--sp-dark) !important;
  --site-logo-width: 211px;
  --site-logo-height: 45px;
}

.navbar-brand img {
  width: var(--site-logo-width);
  height: var(--site-logo-height);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    width: min(var(--site-logo-width), 52vw);
    height: auto;
    aspect-ratio: 211 / 45;
  }
}

.navbar-brand--icon-only {
  gap: 0;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem !important;
  border-radius: 0.5rem;
  transition: background var(--sp-transition), color var(--sp-transition);
}

.nav-link:hover { background: rgba(14, 165, 233, 0.08); }

.navbar .nav-link.btn-book {
  background: linear-gradient(135deg, var(--sp-primary) 0%, var(--sp-primary-dark) 100%);
  color: var(--sp-white) !important;
  border-radius: 999px;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}

.navbar .nav-link.btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .header-actions { display: none; }
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--sp-accent);
  color: var(--sp-dark);
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.header-call-btn:hover {
  color: var(--sp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

/* Mobile offcanvas menu */
.mobile-nav-offcanvas {
  background: var(--sp-dark);
  color: var(--sp-white);
  max-width: 320px;
}

.mobile-nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.875rem 0 !important;
  font-size: 1.0625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-offcanvas .nav-link:hover {
  color: var(--sp-white) !important;
  background: transparent;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.hero-premium {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sp-dark);
  padding-top: var(--sp-header-h);
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-premium:hover .hero-premium__bg { transform: scale(1); }

.hero-premium__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.65) 50%, rgba(14, 165, 233, 0.25) 100%);
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero-shape--1 {
  width: 400px; height: 400px;
  background: var(--sp-primary);
  top: -100px; right: -100px;
}

.hero-shape--2 {
  width: 300px; height: 300px;
  background: var(--sp-accent);
  bottom: 10%; left: -80px;
  animation-delay: -4s;
}

.hero-shape--3 {
  width: 200px; height: 200px;
  background: var(--sp-success);
  top: 40%; right: 20%;
  animation-delay: -8s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-premium__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 5rem;
}

.hero-premium__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-premium__grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-premium__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--sp-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-premium__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-premium__slide-lead {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sp-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.hero-badge--emergency {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.hero-badge--rating {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.hero-trust-item strong { color: var(--sp-white); }

.hero-illustration {
  display: none;
  position: relative;
}

@media (min-width: 992px) {
  .hero-illustration { display: block; }
}

.hero-illustration svg {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.3));
  animation: heroSvgFloat 6s ease-in-out infinite;
}

@keyframes heroSvgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Legacy carousel hero fallback */
.hero-carousel .hero-slide {
  min-height: 100svh;
  min-height: 100vh;
  padding-top: var(--sp-header-h);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* â”€â”€ Trust Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-trust {
  background: var(--sp-white);
  padding: 5rem 0;
  position: relative;
}

.section-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sp-border), transparent);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.trust-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--sp-surface);
  border-radius: var(--sp-radius-lg);
  border: 1px solid var(--sp-border);
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.trust-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-shadow);
}

.trust-stat__number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--sp-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.trust-stat__label {
  font-size: 0.875rem;
  color: var(--sp-text-muted);
  font-weight: 500;
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.trust-feature {
  padding: 2rem;
  border-radius: var(--sp-radius-lg);
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.trust-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-shadow);
  border-color: rgba(14, 165, 233, 0.2);
}

.trust-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0.04) 100%);
  color: var(--sp-primary);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.trust-feature__title {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.trust-feature__text {
  color: var(--sp-text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* â”€â”€ Service Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-services { padding: 5rem 0; background: var(--sp-surface); }

.service-card-premium {
  position: relative;
  background: var(--sp-white);
  border-radius: var(--sp-radius-lg);
  border: 1px solid var(--sp-border);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

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

.service-card-premium__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sp-dark) 0%, #1e3a5f 100%);
}

.service-card-premium__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-premium:hover .service-card-premium__media img {
  transform: scale(1.08);
}

.service-card-premium__icon {
  position: absolute;
  bottom: -20px;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--sp-primary);
  box-shadow: var(--sp-shadow);
  z-index: 2;
}

.service-card-premium__body {
  padding: 2rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-premium__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card-premium__text {
  color: var(--sp-text-muted);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-premium__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sp-border);
}

.service-card-premium__price {
  font-weight: 800;
  color: var(--sp-primary);
  font-size: 1.0625rem;
}

/* â”€â”€ Emergency Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-emergency {
  padding: 4rem 0;
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
  position: relative;
  overflow: hidden;
}

.section-emergency::before {
  content: '';
  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.04'%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");
}

.section-emergency__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .section-emergency__inner { grid-template-columns: 1fr auto; }
}

.section-emergency__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fecaca;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.section-emergency__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--sp-white);
  margin-bottom: 0.75rem;
}

.section-emergency__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 540px;
  margin-bottom: 0;
}

.section-emergency__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-emergency-call {
  background: var(--sp-white);
  color: #991b1b;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.btn-emergency-call:hover { color: #7f1d1d; transform: translateY(-2px); }

/* â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-testimonials {
  padding: 5rem 0;
  background: var(--sp-dark);
  color: var(--sp-white);
  overflow: hidden;
}

.section-testimonials .section-eyebrow { color: var(--sp-accent); }
.section-testimonials .section-title { color: var(--sp-white); }
.section-testimonials .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1.5rem;
}

.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-slide {
  flex: 0 0 min(100%, 380px);
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .testimonial-slide { flex: 0 0 calc(50% - 0.75rem); }
}

@media (min-width: 1200px) {
  .testimonial-slide { flex: 0 0 calc(33.333% - 1rem); }
}

.testimonial-card-premium {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sp-radius-lg);
  padding: 2rem;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: transform var(--sp-transition), background var(--sp-transition);
}

.testimonial-card-premium:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-card-premium__stars {
  color: var(--sp-accent);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.testimonial-card-premium__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card-premium__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card-premium__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card-premium__name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-card-premium__role {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--sp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--sp-transition);
}

.testimonial-nav-btn:hover { background: rgba(255, 255, 255, 0.15); }

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sp-radius);
  margin-top: 2rem;
}

.google-review-badge--dark {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  margin-top: 0;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.google-review-badge__rating {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.3;
}

.google-review-badge__count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.testimonials-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  text-align: center;
}

.cta-strip--featured {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding: 0.875rem 1.25rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-strip--featured .btn-sp {
  min-height: 48px;
  padding: 0.75rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
}

.cta-strip--featured .btn-sp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.home-section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* â”€â”€ Areas Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-areas {
  padding: 5rem 0;
  background: var(--sp-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 576px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

.area-card {
  padding: 1rem 1.25rem;
  border-radius: var(--sp-radius);
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--sp-transition), border-color var(--sp-transition), box-shadow var(--sp-transition);
}

.area-card:hover {
  transform: translateY(-2px);
  border-color: var(--sp-primary);
  box-shadow: var(--sp-shadow-sm);
}

.area-card i { color: var(--sp-primary); }

.areas-map-visual {
  position: relative;
  background: linear-gradient(135deg, var(--sp-surface) 0%, #e0f2fe 100%);
  border-radius: var(--sp-radius-xl);
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--sp-border);
  overflow: hidden;
}

.areas-map-visual__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--sp-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.3);
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
}

/* â”€â”€ Booking CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-booking-cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 52%, #0ea5e9 100%);
  color: var(--sp-white);
}

.section-booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14) 0%, transparent 38%),
    radial-gradient(circle at 85% 78%, rgba(245, 158, 11, 0.18) 0%, transparent 34%);
}

.section-booking-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.section-booking-cta > .container {
  position: relative;
  z-index: 1;
}

.booking-cta-content__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-accent);
  margin-bottom: 0.75rem;
}

.booking-cta-content__title {
  font-family: var(--sp-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--sp-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.booking-cta-content__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  max-width: 540px;
  margin-bottom: 0;
}

.section-booking-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .section-booking-cta__inner { grid-template-columns: 1fr 1fr; }
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  color: var(--sp-text);
  box-shadow: var(--sp-shadow-sm);
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.booking-step:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: var(--sp-shadow);
}

.booking-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sp-white);
  color: var(--sp-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.booking-cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  font-size: var(--sp-text-sm);
  color: rgba(255, 255, 255, 0.88);
}

.booking-cta-trust i {
  color: var(--sp-accent);
  font-size: 1.125rem;
}

.booking-cta-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--sp-shadow-lg);
}

.booking-cta-card .section-title { color: var(--sp-dark); font-size: 1.5rem; }

/* â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-faq { padding: 5rem 0; background: var(--sp-surface); }

.faq-search {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid var(--sp-border);
  border-radius: 999px;
  font-size: 0.9375rem;
  background: var(--sp-white);
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition);
}

.faq-search input:focus {
  outline: none;
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.faq-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-text-muted);
}

.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--sp-transition);
}

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

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--sp-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--sp-transition);
}

.faq-item__question:hover { color: var(--sp-primary); }

.faq-item__question i {
  transition: transform var(--sp-transition);
  color: var(--sp-primary);
  flex-shrink: 0;
}

.faq-item__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
}

.faq-item__icon {
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 1rem;
  color: var(--sp-primary);
}

.faq-item__icon--minus {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-item.open .faq-item__icon--plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.open .faq-item__icon--minus {
  opacity: 1;
  transform: rotate(0);
}

.faq-item.open .faq-item__question i { transform: none; }

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

.faq-item.open .faq-item__answer {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}

.faq-item__answer p { color: var(--sp-text-muted); margin: 0; }

.faq-item.hidden { display: none; }

/* â”€â”€ Forms â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.form-premium .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.form-premium .form-control,
.form-premium .form-select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sp-border);
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition);
}

.form-premium .form-control:focus,
.form-premium .form-select:focus {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.form-card-premium {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--sp-shadow);
}

.section-form { padding: 5rem 0; }

/* â”€â”€ Contact CTA Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.5rem;
}

.cta-strip--inline { padding: 1.5rem 0 0; justify-content: flex-start; }

/* â”€â”€ Page sections (CMS) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.page-section { position: relative; }

.page-section--intro {
  padding: 5rem 0;
  background: var(--sp-white);
}

.google-review-badge--light {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
}

.google-review-badge--light .small { color: var(--sp-text-muted) !important; }

.page-section--intro .trust-features { margin-top: 0; }

.google-review-badge--light {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
}

.google-review-badge--light .small { color: var(--sp-text-muted) !important; }

main > .page-section:first-child { margin-top: 0; }

main:not(:has(.hero-premium)):not(:has(.page-hero--inner)) { padding-top: var(--sp-header-h); }

/* â”€â”€ Inner page hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.page-hero {
  background: linear-gradient(135deg, var(--sp-dark) 0%, #1e3a5f 100%);
  padding: calc(var(--sp-header-h) + 3rem) 0 3rem;
  color: var(--sp-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--inner {
  text-align: left;
  padding-bottom: 4rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.6;
}

.page-hero__breadcrumb {
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
  justify-content: flex-start;
}

.page-hero__breadcrumb .breadcrumb-item,
.page-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.page-hero__breadcrumb .breadcrumb-item a:hover { color: var(--sp-white); }

.page-hero__breadcrumb .breadcrumb-item.active { color: rgba(255, 255, 255, 0.9); }

.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
}

.page-hero__content { max-width: 720px; }

.page-hero--inner .page-hero__subtitle { margin-left: 0; text-align: left; }

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* â”€â”€ Blog â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-blog { padding: 5rem 0; }

.blog-card-premium {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  overflow: hidden;
  height: 100%;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

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

.blog-card-premium__img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.blog-card-premium__body { padding: 1.5rem; }

.blog-card-premium__title {
  color: var(--sp-dark);
}

.blog-card-premium__title:hover {
  color: var(--sp-primary);
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--sp-radius);
}

/* â”€â”€ Service detail â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.service-detail-sidebar {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-xl);
  padding: 2rem;
  box-shadow: var(--sp-shadow);
  position: sticky;
  top: calc(var(--sp-header-h) + 1.5rem);
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.site-footer {
  background: var(--sp-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  margin-top: 0 !important;
}

.site-footer h5, .site-footer h6 {
  color: var(--sp-white);
  font-weight: 700;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--sp-transition);
}

.site-footer a:hover { color: var(--sp-white) !important; }

.footer-brand { margin-bottom: 1.5rem; }

.footer-brand img {
  width: 188px;
  height: 40px;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.footer-contact-item i {
  color: var(--sp-primary);
  margin-top: 0.2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: background var(--sp-transition), transform var(--sp-transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

/* â”€â”€ Mobile Action Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sp-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .mobile-action-bar { display: none; }
}

.mobile-action-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sp-white);
  transition: background var(--sp-transition);
  min-height: 52px;
}

.mobile-action-bar__btn i { font-size: 1.25rem; }

.mobile-action-bar__btn--call { color: var(--sp-accent); }
.mobile-action-bar__btn--whatsapp { color: var(--sp-success); }
.mobile-action-bar__btn--book { color: var(--sp-primary); }

.mobile-action-bar__btn:active { background: rgba(255, 255, 255, 0.08); }

/* â”€â”€ Scroll animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.75s var(--sp-ease-out), transform 0.75s var(--sp-ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* â”€â”€ SVG Divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}

.section-divider--dark path { fill: var(--sp-dark); }
.section-divider--light path { fill: var(--sp-surface); }
.section-divider--white path { fill: var(--sp-white); }

/* â”€â”€ Error page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page__icon {
  font-size: 4rem;
  color: var(--sp-primary);
  margin-bottom: 1.5rem;
}

/* â”€â”€ Utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.text-gradient {
  background: linear-gradient(135deg, var(--sp-primary) 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--sp-glass);
  backdrop-filter: blur(var(--sp-glass-blur));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur));
  border: 1px solid var(--sp-glass-border);
  border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-glass-shadow);
}

.glass-card--dark {
  background: var(--sp-glass-dark);
  border-color: var(--sp-glass-border-dark);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* â”€â”€ Home: scroll cue & quick nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
  transition: color var(--sp-transition);
}

.hero-scroll-cue:hover { color: var(--sp-white); }

.hero-scroll-cue i {
  animation: scrollBounce 2s ease-in-out infinite;
  font-size: 1.25rem;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.home-quick-nav {
  background: var(--sp-white);
  border-bottom: 1px solid var(--sp-border);
  padding: 0.75rem 0;
  position: sticky;
  top: var(--sp-header-h);
  z-index: 1020;
  box-shadow: var(--sp-shadow-sm);
}

.page-section:has(.hero-carousel) + .home-quick-nav,
.page-section:has(.hero-premium) + .home-quick-nav {
  margin-top: 0;
}

.home-quick-nav__track {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .home-quick-nav__track {
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: visible;
    gap: 0.75rem;
  }
}

.home-quick-nav__track::-webkit-scrollbar { display: none; }

.home-quick-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition), color var(--sp-transition);
}

.home-quick-nav__link i {
  color: inherit;
  font-size: 0.95em;
}

.home-quick-nav__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.home-quick-nav__link--primary {
  color: var(--sp-primary);
  border-color: #e2e8f0;
}

.home-quick-nav__link--primary:hover {
  color: var(--sp-primary-dark);
  border-color: rgba(14, 165, 233, 0.35);
}

.home-quick-nav__link--accent {
  color: var(--sp-accent-dark);
  border-color: #e2e8f0;
}

.home-quick-nav__link--accent:hover {
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.35);
}

.home-quick-nav__link--danger {
  color: #dc2626;
  border-color: #e2e8f0;
}

.home-quick-nav__link--danger:hover {
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.3);
}

/* â”€â”€ Home: how it works â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-how-it-works {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--sp-surface) 0%, var(--sp-white) 100%);
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .how-it-works-grid { grid-template-columns: repeat(3, 1fr); }
}

.how-it-works-card {
  position: relative;
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.how-it-works-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sp-shadow-lg);
}

.how-it-works-card__step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--sp-primary);
  opacity: 0.5;
}

.how-it-works-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--sp-primary);
}

.how-it-works-card__title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.how-it-works-card__text {
  color: var(--sp-text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* â”€â”€ Booking page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.page-hero--booking {
  text-align: left;
}

.page-hero--booking .page-hero__subtitle {
  margin-left: 0;
}

.booking-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.booking-hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--sp-radius);
  padding: 1rem 0.75rem;
  text-align: center;
}

.booking-hero-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sp-white);
}

.booking-hero-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-page .section-form { padding-top: 0; }

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--sp-surface);
  border-radius: var(--sp-radius-lg);
  border: 1px solid var(--sp-border);
}

.booking-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex: 0 0 auto;
  opacity: 0.45;
  transition: opacity var(--sp-transition);
}

.booking-progress__step.is-active,
.booking-progress__step.is-complete {
  opacity: 1;
}

.booking-progress__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sp-surface-2);
  border: 2px solid var(--sp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
  transition: background var(--sp-transition), border-color var(--sp-transition), color var(--sp-transition);
}

.booking-progress__step.is-active .booking-progress__num,
.booking-progress__step.is-complete .booking-progress__num {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  color: var(--sp-white);
}

.booking-progress__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sp-text-muted);
}

.booking-progress__line {
  flex: 1;
  height: 2px;
  background: var(--sp-border);
  margin: 0 0.5rem;
  margin-bottom: 1.25rem;
  max-width: 60px;
}

.booking-form-section {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

.booking-form-section__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  float: none;
  width: 100%;
}

.booking-form-section__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sp-primary);
  color: var(--sp-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  flex-shrink: 0;
}

.booking-form-section__hint {
  color: var(--sp-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.service-picker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  padding: 1rem 0.75rem;
  background: var(--sp-surface);
  border: 2px solid var(--sp-border);
  border-radius: var(--sp-radius);
  cursor: pointer;
  transition: border-color var(--sp-transition), background var(--sp-transition), transform var(--sp-transition), box-shadow var(--sp-transition);
}

.service-picker__item:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-2px);
}

.service-picker__item.is-selected {
  border-color: var(--sp-primary);
  background: rgba(14, 165, 233, 0.06);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.service-picker__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--sp-primary);
}

.service-picker__name {
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--sp-text);
}

.service-picker__price {
  font-size: 0.75rem;
  color: var(--sp-text-muted);
  font-weight: 500;
}

.booking-service-preview {
  padding: 0.875rem 1rem;
  background: rgba(14, 165, 233, 0.08);
  border-radius: var(--sp-radius);
  font-size: 0.875rem;
  color: var(--sp-text);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-text-muted);
  pointer-events: none;
  z-index: 2;
}

.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
  padding-left: 2.75rem;
}

.booking-form-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--sp-border);
  margin-top: 0.5rem;
}

.booking-form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--sp-text-muted);
  margin-bottom: 1rem;
}

.booking-sidebar {
  position: sticky;
  top: calc(var(--sp-header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-sidebar__card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--sp-shadow-sm);
}

.booking-sidebar__card--highlight {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-color: rgba(14, 165, 233, 0.2);
  text-align: center;
}

.booking-sidebar__card--muted {
  background: var(--sp-surface);
  display: flex;
  align-items: flex-start;
}

.booking-sidebar__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.booking-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-sidebar__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--sp-text-muted);
  margin-bottom: 0.625rem;
}

.booking-sidebar__list li i {
  color: var(--sp-success);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.booking-sidebar__stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sp-primary);
  line-height: 1;
}

.booking-sidebar__stat-label {
  font-size: 0.875rem;
  color: var(--sp-text-muted);
}

/* â”€â”€ Inner Pages: About, FAQ, Contact â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.page-section--inner { padding: 0; }

/* Premium inner pages — ambient cursor + soft background (About, Services, Blog, FAQs, Gallery, Contact) */
.ambient-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ambient-page__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-page__ambient.is-ready .ambient-page__blob-wrap {
  opacity: 1;
}

/* Cursor layers — soft multi-depth tactile glow */
.ambient-page__cursor-layer {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: left, top, transform, opacity;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambient-page.is-cursor-active .ambient-page__cursor-layer {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambient-page__cursor-layer--core {
  width: 120px;
  height: 120px;
  z-index: 4;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(14, 165, 233, 0.35) 22%,
    rgba(14, 165, 233, 0.08) 55%,
    transparent 72%);
  filter: blur(10px);
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
}

.ambient-page__cursor-layer--glow {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  z-index: 3;
  background: radial-gradient(circle,
    rgba(14, 165, 233, 0.2) 0%,
    rgba(14, 165, 233, 0.09) 35%,
    rgba(14, 165, 233, 0.03) 58%,
    transparent 75%);
  filter: blur(36px);
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
}

.ambient-page__cursor-layer--accent {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  z-index: 2;
  background: radial-gradient(circle,
    rgba(245, 158, 11, 0.14) 0%,
    rgba(245, 158, 11, 0.06) 40%,
    transparent 72%);
  filter: blur(28px);
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
}

.ambient-page__cursor-layer--outer {
  width: min(85vw, 720px);
  height: min(85vw, 720px);
  z-index: 1;
  background: radial-gradient(circle,
    rgba(99, 102, 241, 0.07) 0%,
    rgba(14, 165, 233, 0.05) 40%,
    transparent 70%);
  filter: blur(52px);
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
}

.ambient-page__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  z-index: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at calc(var(--mouse-x, 0.5) * 100%) calc(var(--mouse-y, 0.38) * 100%), black 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at calc(var(--mouse-x, 0.5) * 100%) calc(var(--mouse-y, 0.38) * 100%), black 0%, transparent 78%);
}

.ambient-page__blob-wrap {
  position: absolute;
  will-change: transform;
  opacity: 0.85;
  transition: opacity 0.6s ease;
}

.ambient-page__blob {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
}

.ambient-page__blob-wrap--1 {
  top: -4%;
  left: -12%;
  width: min(62vw, 580px);
  animation: ambientBlobDrift1 32s ease-in-out infinite;
}

.ambient-page__blob-wrap--2 {
  top: 22%;
  right: -14%;
  width: min(52vw, 480px);
  animation: ambientBlobDrift2 38s ease-in-out infinite;
}

.ambient-page__blob-wrap--3 {
  bottom: 2%;
  left: 12%;
  width: min(44vw, 400px);
  animation: ambientBlobDrift3 44s ease-in-out infinite;
}

@keyframes ambientBlobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(1.5%, 2%) scale(1.03); }
}

@keyframes ambientBlobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2%, 1.5%) scale(1.025); }
}

@keyframes ambientBlobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(1.2%, -1.5%) scale(1.02); }
}

.ambient-page__ambient.is-static .ambient-page__blob-wrap {
  animation: none;
  opacity: 1;
}

.ambient-page > section,
.ambient-page > .section-testimonials,
.ambient-page > .section-emergency,
.ambient-page > .section-booking-cta,
.ambient-page > .faq-help,
.ambient-page > .contact-map-section,
.ambient-page > .section-form,
.ambient-page > .page-content-block,
.ambient-page > .container {
  position: relative;
  z-index: 1;
}

.ambient-page .section-services--page,
.ambient-page .section-blog--page,
.ambient-page .section-faq,
.ambient-page .section-gallery-page,
.ambient-page .about-intro,
.ambient-page .about-why,
.ambient-page .about-process {
  background: transparent;
}

.about-intro {
  padding: 5rem 0;
  background: transparent;
}

.about-intro__media { position: relative; }

.about-intro__image {
  width: 100%;
  border-radius: var(--sp-radius-xl);
  box-shadow: var(--sp-shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-intro__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--sp-white);
  border-radius: 999px;
  box-shadow: var(--sp-shadow);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--sp-accent-dark);
}

.about-intro__content { color: var(--sp-text-muted); margin-bottom: 1.5rem; }

.about-intro__content p,
.ambient-page .cms-content p {
  color: var(--sp-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-intro__content h1,
.about-intro__content h2,
.about-intro__content h3,
.ambient-page .cms-content h1,
.ambient-page .cms-content h2,
.ambient-page .cms-content h3 {
  color: var(--sp-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-intro__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-intro__highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sp-text);
}

.about-intro__highlight i { color: var(--sp-primary); }

.about-stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--sp-dark) 0%, #1e3a5f 100%);
  color: var(--sp-white);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.about-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sp-radius-lg);
  transition: transform var(--sp-transition), background var(--sp-transition);
}

.about-stat:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.about-stat__icon {
  color: var(--sp-accent);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.about-stat__number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-why {
  padding: 5rem 0;
  background: transparent;
}

.about-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

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

.about-why-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  padding: 2rem 1.5rem;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sp-shadow-lg);
  border-color: rgba(14, 165, 233, 0.25);
}

.about-why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--sp-transition), color var(--sp-transition);
}

.about-why-card:hover .about-why-card__icon {
  background: var(--sp-primary);
  color: var(--sp-white);
}

.about-why-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-why-card__text {
  font-size: 0.9375rem;
  color: var(--sp-text-muted);
  margin: 0;
}

.about-process {
  padding: 5rem 0;
  background: transparent;
}

.about-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.about-timeline__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sp-primary), rgba(14, 165, 233, 0.2));
}

@media (min-width: 768px) {
  .about-timeline__line { left: 50%; transform: translateX(-50%); }
}

.about-timeline__step {
  position: relative;
  padding-left: 64px;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .about-timeline__step {
    padding-left: 0;
    width: 50%;
    margin-left: 0;
    margin-right: auto;
    padding-right: 3rem;
  }

  .about-timeline__step:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    padding-left: 3rem;
  }
}

.about-timeline__marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sp-primary);
  color: var(--sp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.15);
  z-index: 1;
}

@media (min-width: 768px) {
  .about-timeline__marker {
    left: auto;
    right: -24px;
  }

  .about-timeline__step:nth-child(even) .about-timeline__marker {
    right: auto;
    left: -24px;
  }
}

.about-timeline__card {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  padding: 1.5rem;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.about-timeline__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-shadow);
}

.about-timeline__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.about-timeline__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.about-timeline__text {
  font-size: 0.9375rem;
  color: var(--sp-text-muted);
  margin: 0;
}

.section-testimonials--about { margin-top: 0; }

/* FAQ page */
.section-faq--page { padding-top: 3rem; }

.section-services--page,
.section-blog--page {
  background: var(--sp-white);
  margin-top: -1px;
}

.ambient-page .section-services--page,
.ambient-page .section-blog--page {
  background: transparent;
  margin-top: 0;
}

.section-services--page { padding-top: 0; }

/* Services page SEO hub content */
.services-seo-intro,
.services-seo-block,
.section-block {
  padding: 2.5rem 0;
}

.section-block--alt,
.services-seo-block.section-block--alt {
  background: var(--sp-surface-1);
}

.ambient-page .section-block--alt,
.ambient-page .services-seo-block.section-block--alt {
  background: rgba(255, 255, 255, 0.04);
}

.services-seo-intro__inner {
  max-width: 820px;
}

.services-seo-block__h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.services-seo-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.services-seo-list li {
  margin-bottom: 0.625rem;
}

.services-comparison-table {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.services-comparison-table th {
  font-weight: 700;
  white-space: nowrap;
}

.services-faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--sp-border);
}

.services-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.services-faq-item__q {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.services-faq-item__a {
  color: var(--sp-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* FAQs page SEO hub */
.faqs-seo-page .faqs-seo-intro {
  max-width: 820px;
  margin-bottom: 2rem;
}

.faqs-seo-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem;
}

.faqs-seo-jump__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sp-text-muted);
}

.faqs-seo-jump__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--sp-surface-1);
  border: 1px solid var(--sp-border);
}

.faqs-seo-jump__link:hover {
  border-color: var(--sp-primary);
  color: var(--sp-primary);
}

.faqs-seo-category {
  margin-top: 2.5rem;
}

.faqs-seo-category__title {
  margin-bottom: 1rem;
}

.faqs-seo-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sp-border);
}

/* Contact page SEO content */
.contact-seo-intro {
  padding-top: 0;
  padding-bottom: 1.5rem;
}

.contact-seo-call-cta {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-seo-block__h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-seo-channels-table,
.contact-seo-hours-table {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.contact-seo-channels-table th,
.contact-seo-hours-table th {
  font-weight: 700;
}

.contact-seo-channels-table th[scope="row"],
.contact-seo-hours-table th[scope="row"] {
  white-space: nowrap;
}

.contact-seo-areas {
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-seo-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.contact-seo-list li {
  margin-bottom: 0.625rem;
}

.contact-seo-faqs {
  margin-top: 1rem;
}

.contact-seo-cta {
  margin-top: 1rem;
}

.contact-form__microcopy {
  line-height: 1.5;
}

/* About page SEO content */
.about-seo-intro {
  padding-top: 0;
}

.about-seo-intro__inner {
  max-width: 820px;
}

.about-seo-block__h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-seo-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.about-seo-list li {
  margin-bottom: 0.625rem;
}

.about-seo-team-placeholder {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px dashed var(--sp-border);
  border-radius: var(--sp-radius-lg, 12px);
  background: var(--sp-surface-1);
}

.about-seo-team-placeholder__label {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-seo-team-placeholder__example {
  padding: 0.75rem 1rem;
  border-radius: var(--sp-radius-md, 8px);
  background: rgba(0, 0, 0, 0.04);
  margin-bottom: 0.75rem;
}

.ambient-page .about-seo-team-placeholder {
  background: rgba(255, 255, 255, 0.04);
}

.about-seo-cta {
  margin-top: 0.5rem;
}

.faq-item__question-text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  flex: 1;
}
.section-blog--page { padding-top: 0; }

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.faq-category-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--sp-border);
  border-radius: 999px;
  background: var(--sp-white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sp-text-muted);
  cursor: pointer;
  transition: all var(--sp-transition);
}

.faq-category-btn:hover {
  border-color: var(--sp-primary);
  color: var(--sp-primary);
}

.faq-category-btn.is-active {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  color: var(--sp-white);
}

.faq-help {
  padding: 0 0 5rem;
  background: var(--sp-surface);
}

.faq-help__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--sp-dark) 0%, #1e3a5f 100%);
  border-radius: var(--sp-radius-xl);
  color: var(--sp-white);
  box-shadow: var(--sp-shadow-lg);
}

@media (min-width: 768px) {
  .faq-help__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.faq-help__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.faq-help__text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 480px;
}

.faq-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact page */
.section-form--contact {
  padding: 3rem 0 4rem;
  background: transparent;
}

.contact-form-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--sp-shadow);
}

.contact-form-card__header { margin-bottom: 2rem; }

.contact-field__wrap {
  position: relative;
}

.contact-field__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-text-muted);
  z-index: 2;
  pointer-events: none;
  transition: color var(--sp-transition);
}

.contact-field__wrap--textarea .contact-field__icon {
  top: 1.25rem;
  transform: none;
}

.contact-field__input {
  width: 100%;
  padding: 1.625rem 1rem 0.625rem 2.75rem;
  border: 1.5px solid var(--sp-border);
  border-radius: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--sp-text);
  background: var(--sp-white);
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition);
}

.contact-field__wrap--textarea .contact-field__input {
  padding-top: 1.75rem;
  min-height: 148px;
  resize: vertical;
}

.contact-field__label {
  position: absolute;
  left: 2.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748b;
  pointer-events: none;
  transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  background: transparent;
  padding: 0 0.25rem;
  margin: 0;
  z-index: 1;
}

.contact-field__wrap--textarea .contact-field__label {
  top: 1.35rem;
  transform: none;
}

/* Floated label + filled state */
.contact-field__wrap.has-value .contact-field__label,
.contact-field__wrap:focus-within .contact-field__label {
  top: 0.5rem;
  transform: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.contact-field__wrap--textarea.has-value .contact-field__label,
.contact-field__wrap--textarea:focus-within .contact-field__label {
  top: 0.5rem;
}

.contact-field__wrap:focus-within .contact-field__label {
  color: var(--sp-primary);
}

.contact-field__wrap.has-value .contact-field__label {
  background: var(--sp-white);
}

/* Input borders: focus ring only on focus, not every filled field */
.contact-field__input:focus {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  outline: none;
}

.contact-field__wrap.has-value .contact-field__input {
  border-color: #94a3b8;
}

.contact-field__wrap.has-value:focus-within .contact-field__input {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

/* Icon aligns with value text when label is floated */
.contact-field__wrap.has-value .contact-field__icon,
.contact-field__wrap:focus-within .contact-field__icon {
  top: 1.65rem;
  transform: translateY(0);
  color: #64748b;
}

.contact-field__wrap--textarea.has-value .contact-field__icon,
.contact-field__wrap--textarea:focus-within .contact-field__icon {
  top: 1.35rem;
}

.contact-field__wrap:focus-within .contact-field__icon {
  color: var(--sp-primary);
}

/* Select fields with floating labels */
.contact-field__wrap--select {
  position: relative;
}

.contact-field__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem !important;
  color: var(--sp-text);
}

.contact-field__select option {
  color: var(--sp-text);
}

.contact-field__chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-text-muted);
  pointer-events: none;
  z-index: 2;
  font-size: 0.875rem;
  transition: color var(--sp-transition);
}

.contact-field__wrap--select:focus-within .contact-field__chevron,
.contact-field__wrap--select.has-value .contact-field__chevron {
  color: var(--sp-primary);
}

.contact-field__wrap--select.has-value .contact-field__label,
.contact-field__wrap--select:focus-within .contact-field__label {
  top: 0.5rem;
  transform: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.contact-field__wrap--select:focus-within .contact-field__label {
  color: var(--sp-primary);
}

.contact-field__wrap--select .contact-field__input {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.contact-field__select.is-invalid {
  border-color: var(--sp-danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.contact-field__input.is-invalid {
  border-color: var(--sp-danger);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.contact-field__error {
  font-size: 0.8125rem;
  color: var(--sp-danger);
  margin-top: 0.375rem;
  min-height: 1.25rem;
}

.contact-form__submit.is-loading .contact-form__submit-text { display: none; }

.contact-form__submit.is-loading .contact-form__submit-loading {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-panel { position: sticky; top: calc(var(--sp-header-h) + 1.5rem); }

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg);
  margin-bottom: 1rem;
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--sp-shadow-sm);
}

.contact-info-card--emergency {
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.04);
}

.contact-info-card--emergency .contact-info-card__icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--sp-danger);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sp-text-muted);
  margin-bottom: 0.25rem;
}

.contact-info-card__value {
  font-weight: 600;
  color: var(--sp-text);
  text-decoration: none;
}

a.contact-info-card__value:hover { color: var(--sp-primary); }

.contact-info-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-map-section {
  padding: 0 0 5rem;
  background: var(--sp-surface);
}

.contact-map-card {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-xl);
  overflow: hidden;
  box-shadow: var(--sp-shadow-lg);
}

.contact-map-card__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--sp-border);
}

@media (min-width: 768px) {
  .contact-map-card__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-map-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.contact-map-card__subtitle {
  color: var(--sp-text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-map-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-map-card__frame {
  position: relative;
  height: 400px;
  background: var(--sp-surface-2);
}

.contact-map-card__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Testimonials enhancements */
.testimonial-card-premium__quote-icon {
  color: rgba(245, 158, 11, 0.35);
  margin-bottom: 0.75rem;
}

.testimonial-card-premium__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.25rem;
}

.testimonial-card-premium__location {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-star {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.testimonial-card-premium:hover .testimonial-star {
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--sp-transition), transform var(--sp-transition);
}

.testimonial-dot.is-active {
  background: var(--sp-accent);
  transform: scale(1.25);
}

/* Toast notifications */
.sp-toast-container {
  position: fixed;
  top: calc(var(--sp-header-h) + 1rem);
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.sp-toast {
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow-lg);
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  pointer-events: auto;
  animation: spToastIn 0.35s ease;
  max-width: 360px;
}

.sp-toast--success { border-left: 4px solid var(--sp-success); }
.sp-toast--error { border-left: 4px solid var(--sp-danger); }

@keyframes spToastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.sp-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--sp-white);
  border-radius: 50%;
  animation: spSpin 0.7s linear infinite;
}

@keyframes spSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
  .contact-info-panel { position: static; margin-top: 0; }
  .section-form--contact .order-lg-2 { order: 2 !important; }
}

/* =============================================================================
   UI/UX Enhancement Layer â€” accessibility, loading, motion, consistency
   ============================================================================= */

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.625rem 1rem;
  background: var(--sp-dark);
  color: var(--sp-white);
  font-weight: 600;
  font-size: var(--sp-text-sm);
  border-radius: var(--sp-radius);
  transform: translateY(-150%);
  transition: transform var(--sp-transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--sp-focus-ring);
}

.site-page-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sp-white);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.site-page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-page-loader__inner {
  text-align: center;
}

.site-page-loader__logo {
  width: 211px;
  height: 45px;
  max-width: min(211px, 70vw);
  margin: 0 auto 1rem;
  object-fit: contain;
  animation: spPulse 1.2s ease-in-out infinite;
}

.site-page-loader__bar {
  width: 160px;
  height: 3px;
  background: var(--sp-surface-2);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}

.site-page-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--sp-primary), var(--sp-accent));
  border-radius: inherit;
  animation: spLoaderBar 1s ease-in-out infinite;
}

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

@keyframes spLoaderBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.skeleton,
.sp-skeleton {
  background: linear-gradient(90deg, var(--sp-surface-2) 25%, #e2e8f0 50%, var(--sp-surface-2) 75%);
  background-size: 200% 100%;
  animation: spShimmer 1.4s ease infinite;
  border-radius: var(--sp-radius);
}

@keyframes spShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sp-skeleton-text { height: 0.875rem; margin-bottom: 0.5rem; }
.sp-skeleton-text--lg { height: 1.25rem; width: 70%; }
.sp-skeleton-card { height: 200px; }

/* Extended scroll reveals */
.reveal-left { opacity: 0; transform: translateX(-24px) scale(0.985); transition: opacity 0.75s var(--sp-ease-out), transform 0.75s var(--sp-ease-out); }
.reveal-right { opacity: 0; transform: translateX(24px) scale(0.985); transition: opacity 0.75s var(--sp-ease-out), transform 0.75s var(--sp-ease-out); }
.reveal-down { opacity: 0; transform: translateY(-20px) scale(0.985); transition: opacity 0.75s var(--sp-ease-out), transform 0.75s var(--sp-ease-out); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.65s var(--sp-ease-out), transform 0.65s var(--sp-ease-out); }

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

.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.card-lift {
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--sp-shadow-lg);
}

.btn-sp:focus-visible,
.nav-link:focus-visible,
.header-call-btn:focus-visible,
.mobile-action-bar__btn:focus-visible {
  outline: none;
  box-shadow: var(--sp-focus-ring);
}

.btn-sp.is-loading {
  pointer-events: none;
  opacity: 0.88;
  position: relative;
}

.btn-sp.is-loading .btn-sp__label { visibility: hidden; }

.btn-sp.is-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spSpin 0.65s linear infinite;
}

.form-premium .form-control.is-valid,
.contact-field__input.is-valid {
  border-color: var(--sp-success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.form-premium .form-control.is-invalid,
.contact-field__input.is-invalid {
  border-color: var(--sp-danger);
}

.form-premium .invalid-feedback,
.form-premium .valid-feedback {
  font-size: var(--sp-text-sm);
  margin-top: 0.375rem;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].is-loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-down, .reveal-scale { opacity: 1; transform: none; }
  .site-page-loader__logo, .site-page-loader__bar span, .sp-skeleton, .skeleton { animation: none; }
  .brands-marquee__track { animation: none; }
}

/* â”€â”€ Brands section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-brands {
  padding: var(--sp-home-y, var(--sp-section-y)) 0 var(--sp-home-y-tight, 1.5rem);
  background: linear-gradient(180deg, var(--sp-white) 0%, var(--sp-gray-50) 100%);
  overflow: hidden;
}

.brands-marquee {
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: brandsMarquee 48s linear infinite;
}

.brands-marquee:hover .brands-marquee__track {
  animation-play-state: paused;
}

@keyframes brandsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 148px;
  padding: 1.125rem 1.75rem;
  border-radius: var(--sp-radius-lg);
  background: var(--sp-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--sp-shadow-sm);
  transition: transform var(--sp-transition), box-shadow var(--sp-transition), border-color var(--sp-transition);
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.brand-logo-card img {
  max-width: 200px;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter var(--sp-transition), transform var(--sp-transition);
}

.brand-logo-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

/* â”€â”€ Gallery sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.section-gallery-page {
  padding: var(--sp-section-y) 0 calc(var(--sp-section-y) + 2rem);
}

.section-gallery-teaser {
  position: relative;
  padding: var(--sp-home-y-tight, 2.25rem) 0 var(--sp-home-y, var(--sp-section-y));
  background: linear-gradient(180deg, #eff6ff 0%, var(--sp-surface) 50%, #f0f9ff 100%);
  color: var(--sp-text);
  overflow: hidden;
}

.section-gallery-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(14, 165, 233, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 38%);
}

.section-gallery-teaser::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.28), transparent);
}

.section-gallery-teaser > .container {
  position: relative;
  z-index: 1;
}

/* Tighten gap when gallery follows brands on the home page */
.page-section:has(.section-brands) + .page-section:has(.section-gallery-teaser) .section-gallery-teaser {
  padding-top: var(--sp-home-y-tight, 2rem);
}

.section-gallery-teaser__actions {
  margin-top: 2.75rem;
  padding-bottom: 0.75rem;
}

.section-gallery-teaser .section-eyebrow {
  color: var(--sp-primary);
}

.section-gallery-teaser .section-title {
  color: var(--sp-dark);
}

.section-gallery-teaser .section-subtitle {
  color: var(--sp-text-muted);
}

.section-gallery-teaser .gallery-mosaic__media {
  background: var(--sp-white);
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
  transition: box-shadow var(--sp-transition), transform var(--sp-transition);
}

.section-gallery-teaser .gallery-mosaic__item:hover .gallery-mosaic__media {
  box-shadow: var(--sp-shadow-lg);
  transform: translateY(-3px);
}

.gallery-mosaic,
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .gallery-mosaic,
  .gallery-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .gallery-mosaic,
  .gallery-page-grid { grid-template-columns: 1fr; }
}

.gallery-mosaic__item,
.gallery-page-grid__item {
  cursor: zoom-in;
}

.gallery-mosaic__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--sp-radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--sp-surface-2);
}

.gallery-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-mosaic__item:hover .gallery-mosaic__media img,
.gallery-page-grid__item:hover .gallery-mosaic__media img {
  transform: scale(1.08);
}

.gallery-mosaic__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.82));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--sp-transition), transform var(--sp-transition);
}

.gallery-mosaic__item:hover .gallery-mosaic__overlay,
.gallery-page-grid__item:hover .gallery-mosaic__overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-mosaic__zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sp-navy-900);
}

.gallery-mosaic__tag,
.gallery-mosaic__title {
  color: var(--sp-white);
  font-size: 0.875rem;
}

.gallery-mosaic__title {
  font-size: 1rem;
  line-height: 1.3;
}

.gallery-page-intro {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  padding-top: 0.5rem;
  text-align: center;
}

.gallery-page-intro__text {
  color: var(--sp-gray-600);
  margin: 0;
}

.gallery-page-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--sp-gray-500);
}

.gallery-page-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(2, 6, 23, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  width: 100%;
  text-align: center;
}

.gallery-lightbox__image {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-lg);
  animation: galleryLightboxIn 0.35s ease;
}

@keyframes galleryLightboxIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.85rem;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--sp-white);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__close { top: 1rem; right: 1rem; }
.gallery-lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.gallery-lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* =============================================================================
   Soft UI + Glassmorphism â€” public site premium layer
   ============================================================================= */

.trust-stat,
.trust-feature,
.service-card-premium,
.how-it-works-card,
.testimonial-card-premium,
.area-card,
.booking-step,
.booking-cta-card,
.blog-card-premium,
.brand-logo-card,
.about-stat,
.about-why-card,
.contact-info-card,
.contact-form-card,
.form-card-premium,
.faq-item,
.service-detail-sidebar,
.contact-map-card,
.google-review-badge--light {
  background: var(--sp-glass-strong);
  backdrop-filter: blur(var(--sp-glass-blur));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur));
  border: 1px solid var(--sp-glass-border);
  box-shadow: var(--sp-glass-shadow);
  transition:
    transform var(--sp-transition),
    box-shadow var(--sp-transition),
    border-color var(--sp-transition),
    background var(--sp-transition);
}

.trust-stat:hover,
.trust-feature:hover,
.service-card-premium:hover,
.how-it-works-card:hover,
.area-card:hover,
.booking-step:hover,
.blog-card-premium:hover,
.about-why-card:hover,
.contact-info-card:hover,
.faq-item:hover,
.brand-logo-card:hover {
  box-shadow: var(--sp-glass-shadow-hover);
  border-color: rgba(14, 165, 233, 0.22);
}

.service-card-premium {
  border-radius: var(--sp-radius-xl);
  overflow: hidden;
}

.service-card-premium__icon {
  background: var(--sp-glass-strong);
  border: 1px solid var(--sp-glass-border);
  box-shadow: var(--sp-glass-shadow);
}

.section-how-it-works {
  background: transparent;
  padding: var(--sp-section-y) 0;
}

.section-brands {
  background: transparent;
  padding: var(--sp-section-y) 0 1rem;
}

.section-gallery-teaser::before,
.section-gallery-teaser::after {
  display: none;
}

.section-gallery-teaser .section-eyebrow {
  color: var(--sp-primary);
}

.section-gallery-teaser .section-title {
  color: var(--sp-dark);
}

.section-gallery-teaser .section-subtitle {
  color: var(--sp-text-muted);
}

.section-gallery-teaser .gallery-mosaic__media {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--sp-glass-shadow);
}

.section-testimonials {
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(245, 158, 11, 0.1), transparent 50%),
    linear-gradient(165deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card-premium {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.testimonial-card-premium:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section-booking-cta {
  background:
    radial-gradient(ellipse 75% 55% at 12% 15%, rgba(255, 255, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 45% at 88% 85%, rgba(245, 158, 11, 0.14), transparent 45%),
    linear-gradient(135deg, rgba(3, 105, 161, 0.96) 0%, rgba(2, 132, 199, 0.94) 52%, rgba(14, 165, 233, 0.92) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-booking-cta::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 38%),
    radial-gradient(circle at 85% 78%, rgba(245, 158, 11, 0.12) 0%, transparent 34%);
}

.booking-step {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.65);
}

.booking-cta-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.section-emergency {
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(127, 29, 29, 0.94) 0%, rgba(153, 27, 27, 0.92) 50%, rgba(185, 28, 28, 0.9) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-premium__overlay {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.58) 52%, rgba(14, 165, 233, 0.22) 100%);
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(14, 165, 233, 0.2), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 58, 95, 0.92) 100%);
}

.home-quick-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--sp-border);
  box-shadow: none;
}

.home-quick-nav__link {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.mobile-nav-offcanvas {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(var(--sp-glass-blur-lg));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur-lg));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(14, 165, 233, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.99) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.footer-social a {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.mobile-action-bar {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(var(--sp-glass-blur-lg));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur-lg));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-page-loader {
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(var(--sp-glass-blur-lg));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur-lg));
}

.form-premium .form-control,
.form-premium .form-select,
.contact-field__input {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 0 rgba(255, 255, 255, 0.65);
  border-radius: calc(var(--sp-radius) - 0.25rem);
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition), background var(--sp-transition);
}

.form-premium .form-control:focus,
.form-premium .form-select:focus,
.contact-field__input:focus {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12), inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.trust-feature__icon,
.how-it-works-card__icon,
.about-why-card__icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(14, 165, 233, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--sp-glass-shadow);
}

.areas-map-visual {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(224, 242, 254, 0.65) 100%);
  border: 1px solid var(--sp-glass-border);
  box-shadow: var(--sp-glass-shadow);
}

.card-lift:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--sp-glass-shadow-hover);
}

.navbar .nav-link.btn-book {
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.header-call-btn {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sp-toast {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(var(--sp-glass-blur));
  -webkit-backdrop-filter: blur(var(--sp-glass-blur));
  border: 1px solid var(--sp-glass-border);
  box-shadow: var(--sp-glass-shadow-hover);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .trust-stat,
  .trust-feature,
  .service-card-premium,
  .how-it-works-card,
  .testimonial-card-premium,
  .booking-cta-card,
  .form-card-premium,
  .faq-item {
    background: var(--sp-white);
  }

  .site-header .navbar {
    background: rgba(255, 255, 255, 0.96) !important;
  }
}

/* =============================================================================
   Booking page — high-contrast form UX (overrides glass layer)
   ============================================================================= */

.booking-page {
  background: linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%);
}

.booking-hero__eyebrow {
  color: var(--sp-accent);
}

.booking-page .booking-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-xl);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.booking-form-card__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.booking-form-card__title {
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 800;
  color: var(--sp-dark);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.booking-form-card__subtitle {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
}

.booking-form-alert:empty {
  display: none;
}

.booking-form-alert:not(:empty) {
  margin-bottom: 1.25rem;
  border-radius: var(--sp-radius);
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
}

.booking-page .booking-progress {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: calc(var(--sp-header-h) + 0.75rem);
  z-index: 10;
  margin-bottom: 1.25rem;
}

.booking-page .booking-progress__num {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

.booking-page .booking-progress__step.is-active .booking-progress__num,
.booking-page .booking-progress__step.is-complete .booking-progress__num {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  color: #ffffff;
}

.booking-page .booking-progress__label {
  color: #64748b;
  font-size: 0.75rem;
}

.booking-page .booking-progress__step.is-active .booking-progress__label {
  color: var(--sp-dark);
}

.booking-form-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-lg);
  padding: 1.25rem 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition), background var(--sp-transition);
}

.booking-form-panel.is-in-view {
  background: #ffffff;
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.booking-form-section__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sp-dark);
}

.booking-form-section__hint {
  color: #64748b;
  margin-bottom: 1rem;
}

.booking-field {
  margin-bottom: 0.25rem;
}

.booking-page .form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #334155;
  margin-bottom: 0.5rem;
}

.booking-field__required {
  color: #ef4444;
  font-weight: 700;
}

.booking-field__optional {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.8125rem;
}

.booking-page .form-control,
.booking-page .form-select,
.booking-page .booking-textarea {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  min-height: 52px;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.booking-page .booking-textarea {
  min-height: 120px;
  padding: 0.875rem 1rem;
  line-height: 1.55;
  resize: vertical;
}

.booking-page .form-control::placeholder,
.booking-page .booking-textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.booking-page .form-control:focus,
.booking-page .form-select:focus,
.booking-page .booking-textarea:focus {
  background: #ffffff !important;
  border-color: var(--sp-primary) !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15) !important;
  outline: none;
}

.booking-page .form-control.is-invalid,
.booking-page .form-select.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

.booking-field__error,
.booking-page .field-validation-error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #dc2626;
  font-weight: 500;
}

.booking-page .input-icon-wrap > i {
  color: #64748b;
}

.booking-page .service-picker__item {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.booking-page .service-picker__item:hover {
  border-color: rgba(14, 165, 233, 0.45);
  background: #f8fafc;
}

.booking-page .service-picker__item.is-selected {
  border-color: var(--sp-primary);
  background: #eff6ff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.booking-page .service-picker__icon {
  background: #eff6ff;
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.booking-page .service-picker__name {
  color: #0f172a;
  font-size: 0.875rem;
}

.booking-page .service-picker__price {
  color: #64748b;
}

.booking-page .booking-service-preview {
  background: #eff6ff;
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #0f172a;
  font-weight: 500;
  margin-top: 1rem;
}

.booking-form-extra {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed #cbd5e1;
}

.booking-form-extra__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 1rem;
}

.booking-form-footer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-lg);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.booking-form-trust {
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.booking-form-trust i {
  color: var(--sp-success);
  font-size: 1.125rem;
}

.booking-form-footer__note {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0.875rem 0 0;
}

.booking-page .booking-sidebar__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.booking-page .booking-sidebar__card--muted {
  background: #f8fafc;
}

/* Contact page — solid form controls (readable on ambient / glass backgrounds) */
.section-form--contact .contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-xl);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.section-form--contact .contact-form-card__header .section-title {
  color: var(--sp-dark);
}

.section-form--contact .contact-form-card__header .section-eyebrow {
  color: var(--sp-primary);
}

.section-form--contact .contact-form-card__header .text-muted {
  color: #64748b !important;
}

.section-form--contact .contact-field__input {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.section-form--contact .contact-field__wrap.has-value .contact-field__input {
  border-color: #94a3b8 !important;
}

.section-form--contact .contact-field__wrap:focus-within .contact-field__input {
  background: #ffffff !important;
  border-color: var(--sp-primary) !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12) !important;
}

.section-form--contact .contact-field__label {
  color: #64748b;
}

.section-form--contact .contact-field__wrap.has-value .contact-field__label,
.section-form--contact .contact-field__wrap:focus-within .contact-field__label {
  color: #475569;
  background: #ffffff;
}

.section-form--contact .contact-field__wrap:focus-within .contact-field__label {
  color: var(--sp-primary);
}

.section-form--contact .contact-field__icon {
  color: #94a3b8;
}

.section-form--contact .contact-field__wrap.has-value .contact-field__icon,
.section-form--contact .contact-field__wrap:focus-within .contact-field__icon {
  color: #64748b;
}

.section-form--contact .contact-field__wrap:focus-within .contact-field__icon {
  color: var(--sp-primary);
}

.section-form--contact .contact-field__input.is-invalid {
  border-color: var(--sp-danger) !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

.section-form--contact .contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.section-form--contact .contact-info-card__label {
  color: #64748b;
}

.section-form--contact .contact-info-card__value {
  color: var(--sp-dark);
}

.section-form--contact a.contact-info-card__value:hover {
  color: var(--sp-primary);
}

@media (max-width: 991.98px) {
  .booking-page .booking-progress {
    top: calc(var(--sp-header-h) + 0.5rem);
    padding: 0.75rem;
  }

  .booking-page .booking-progress__label {
    font-size: 0.625rem;
  }

  .booking-form-panel {
    padding: 1rem;
  }

  .booking-form-footer {
    position: sticky;
    bottom: calc(var(--sp-mobile-bar-h) + 0.5rem);
    z-index: 9;
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.1);
  }
}

/* ── Premium frame & micro-interaction layer ─────────────────────────────── */

.premium-frame {
  position: relative;
  border-radius: var(--sp-radius-lg);
  transition: box-shadow var(--sp-transition), transform var(--sp-transition-fast);
}

.premium-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(14, 165, 233, calc(0.25 + var(--frame-glow, 0) * 0.35)), transparent 45%, rgba(245, 158, 11, calc(0.15 + var(--frame-glow, 0) * 0.2)));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: calc(0.5 + var(--frame-glow, 0) * 0.5);
  transition: opacity var(--sp-transition);
}

.card-lift {
  transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--sp-glass-shadow-hover);
}

.service-card-premium:hover,
.blog-card-premium:hover,
.testimonial-card-premium:hover,
.how-it-works-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
}

.btn-sp:active:not(.is-loading) {
  transform: scale(0.98);
}

.mobile-action-bar__btn {
  transition: transform var(--sp-transition-fast), background var(--sp-transition);
}

.mobile-action-bar__btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .card-lift:hover,
  .premium-frame::before {
    transform: none;
  }

  .ambient-page__blob-wrap {
    animation: none !important;
  }
}
