/* =========================================================
   1stMember — Premium Car Wash & Detailing
   Design System v2.0 — Premium SaaS Aesthetic
   ========================================================= */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:   #080808;
  --bg-secondary: #0c0c0c;
  --bg-elevated:  #111111;
  --bg-card:      #141414;
  --bg-card-hover:#1a1a1a;
  --bg-input:     #1c1c1c;
  --bg-glass:     rgba(10,10,10,0.72);

  /* Accent — Cyan/Water */
  --accent:       #00d4ff;
  --accent-hover: #4ce0ff;
  --accent-muted: rgba(0,212,255,0.12);
  --accent-glow:  rgba(0,212,255,0.25);

  /* Text */
  --text-primary:   #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted:     #666666;
  --text-disabled:  #444444;

  /* Borders */
  --border:       rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.10);
  --border-accent: rgba(0,212,255,0.25);

  /* Typography */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:  "SF Mono", Monaco, "Cascadia Code", monospace;

  /* Spacing Scale (8px base) */
  --space-1: 0.25rem;  /* 4px  */
  --space-2: 0.5rem;   /* 8px  */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 24px var(--accent-glow);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   400ms cubic-bezier(0.4,0,0.2,1);
  --transition-bounce: 500ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --header-height: 4.5rem;
  --container: 1180px;
  --container-narrow: 760px;
}

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

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--accent-muted);
  color: var(--text-primary);
}

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

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

a:hover { color: var(--accent); }

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

/* ── Typography Scale ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p, li {
  text-wrap: pretty;
  max-width: 65ch;
}

.accent { color: var(--accent); }

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #80eaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-20) 0;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.section:first-of-type,
.section-hero {
  content-visibility: visible;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title h2 {
  margin-bottom: var(--space-4);
}

.section-title p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 44px;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 16px rgba(0,212,255,0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1.5px solid var(--border-accent);
  color: var(--accent);
  background: transparent;
}

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

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--border);
}

.btn-full { width: 100%; }

/* ── Header ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(8,8,8,0.92);
  box-shadow: 0 1px 0 var(--border), var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.nav-desktop ul {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition-base);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text-primary);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

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

.phone-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: var(--radius-sm);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

/* ── Skip Link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--accent);
  color: var(--bg-primary);
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

/* ── Mobile Nav ────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  background: var(--bg-secondary);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-8);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--text-primary);
  padding: var(--space-2) 0;
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav .btn {
  margin-top: var(--space-4);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,212,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,212,255,0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect fill='%23080808'/%3E%3Ccircle cx='50' cy='50' r='0.8' fill='%231a1a1a'/%3E%3C/svg%3E");
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero .water-drops,
.hero .bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
}

.hero .water-drops .drop {
  position: absolute;
  width: 2px;
  height: 10px;
  background: linear-gradient(to bottom, transparent, rgba(0,212,255,0.4), transparent);
  border-radius: var(--radius-full);
  animation: waterDrop linear infinite;
}

.hero .bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), rgba(0,212,255,0.04));
  border: 1px solid rgba(0,212,255,0.1);
  animation: bubbleRise linear infinite, bubbleWobble ease-in-out infinite;
}

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

.hero-content h1 {
  margin-bottom: var(--space-6);
  line-height: 1.05;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--transition-base) forwards;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto var(--space-8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.2s var(--transition-base) forwards;
}

.hero-btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.4s var(--transition-base) forwards;
}

/* ── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-6);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

/* ── Services ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.04), transparent);
  transition: left 0.8s ease;
}

.service-card:hover::before {
  left: 200%;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--border-accent);
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: var(--space-5);
}

.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: var(--space-3);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: auto;
}

/* ── Price Table ───────────────────────────────────────── */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.price-table th,
.price-table td {
  padding: var(--space-5) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-elevated);
  white-space: nowrap;
}

.price-table tbody tr {
  transition: background var(--transition-fast);
}

.price-table tbody tr:hover {
  background: var(--bg-card);
}

.price-table td:last-child {
  font-family: var(--font-serif);
  color: var(--accent);
  font-size: 1.0625rem;
  text-align: right;
  white-space: nowrap;
  font-weight: 500;
}

/* ── Gallery ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.gallery-item:hover {
  border-color: var(--border-accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-label {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  z-index: 2;
  border-left: 2px solid var(--accent);
}

.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  z-index: 3;
  transition: left 0.9s ease;
  pointer-events: none;
}

.gallery-item:hover .shine-effect {
  left: 200%;
}

/* ── Reviews ───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.review-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent);
  margin-bottom: var(--space-4);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.review-author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Forms ─────────────────────────────────────────────── */
.booking-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

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

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  padding: 0.875rem 1rem;
  width: 100%;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 44px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

input:focus-visible, textarea:focus-visible, select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-4);
  line-height: 1.5;
}

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-item div {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-item strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: var(--space-1);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) contrast(1.1);
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: var(--space-4);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ── Phone Float ───────────────────────────────────────── */
.phone-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 3.5rem;
  height: 3.5rem;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,212,255,0.3);
  z-index: 998;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.phone-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0,212,255,0.4);
}

.phone-float:focus-visible {
  outline: 2px solid var(--text-primary);
  outline-offset: 3px;
}

.phone-float svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--bg-primary);
}

/* ── Admin ─────────────────────────────────────────────── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.admin-table th,
.admin-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  background: var(--bg-elevated);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.admin-table tbody tr {
  transition: background var(--transition-fast);
}

.admin-table tbody tr:hover {
  background: var(--bg-card-hover);
}

.status-new       { color: #5bc0de; }
.status-confirmed { color: #7ecf7e; }
.status-completed { color: var(--accent); }
.status-cancelled { color: #e57373; }

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--accent);
  color: var(--bg-primary);
  padding: var(--space-4) var(--space-8);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  z-index: 2000;
  opacity: 0;
  transition: all var(--transition-slow);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

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

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

/* ── Divider ───────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: var(--radius-full);
  margin: var(--space-6) auto;
}

/* ── Badges ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  background: var(--accent-muted);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

/* ── Disclaimer ────────────────────────────────────────── */
.disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-top: var(--space-8);
}

.disclaimer strong {
  color: var(--text-secondary);
}

/* ── Animations ────────────────────────────────────────── */
@keyframes waterDrop {
  0%   { transform: translateY(-40px) scale(1); opacity: 0; }
  15%  { opacity: 0.5; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(100vh) scale(0.6); opacity: 0; }
}

@keyframes bubbleRise {
  0%   { transform: translateY(100%) scale(0); opacity: 0; }
  20%  { opacity: 0.4; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

@keyframes bubbleWobble {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(6px); }
  75% { transform: translateX(-6px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(0,212,255,0.2); }
  50%      { box-shadow: 0 0 20px rgba(0,212,255,0.35), 0 0 40px rgba(0,212,255,0.1); }
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Responsive ────────────────────────────────────────── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .phone-link {
    display: block;
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (max-width: 767px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .section {
    padding: var(--space-16) 0;
  }
  .section-title {
    margin-bottom: var(--space-10);
  }
  .hero-content {
    padding: var(--space-6);
  }
  .booking-form {
    padding: var(--space-6);
  }
  .service-card {
    padding: var(--space-6);
  }
  .review-card {
    padding: var(--space-6);
  }
  .trust-bar {
    gap: var(--space-5);
    padding: var(--space-4) var(--space-4);
  }
  .trust-item {
    font-size: 0.6875rem;
  }
  .trust-item svg {
    width: 1rem;
    height: 1rem;
  }
  .phone-float {
    bottom: var(--space-4);
    right: var(--space-4);
    width: 3rem;
    height: 3rem;
  }
  .phone-float svg {
    width: 1.125rem;
    height: 1.125rem;
  }
  .map-container {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-content p {
    font-size: 0.9375rem;
  }
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
  .btn-full-sm {
    width: 100%;
  }
  .footer-inner {
    gap: var(--space-8);
  }
}

/* ── Print ─────────────────────────────────────────────── */
@media print {
  .header, .mobile-nav, .phone-float, .hero .water-drops, .hero .bubbles {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .section {
    content-visibility: visible;
    padding: 1rem 0;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ── Focus Visible Global ──────────────────────────────── */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content h1,
  .hero-content p,
  .hero-btns {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .phone-float {
    animation: none;
  }
}
