/* ============================================
   Wash NWA — "HYDRO" Design System
   Brutalist editorial meets water-clean
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Tokens --- */
:root {
  /* Backgrounds */
  --bg-deep: #050a0e;
  --bg-surface: #0a1628;
  --bg-card: #0d1f3c;
  --bg-card-hover: #112a4a;
  --bg-cream: #f5f0e8;
  --bg-cream-alt: #ebe5da;
  --bg-white: #ffffff;

  /* Accent — BRIGHT cyan for buttons, decorations, glow effects */
  --cyan: #00e5ff;
  --cyan-dim: rgba(0, 229, 255, 0.12);
  --cyan-glow: rgba(0, 229, 255, 0.25);

  /* Accent — DARK teal for text links on light backgrounds (7.2:1 on white, 6.1:1 on cream) */
  --accent: #006d7a;
  --accent-hover: #004f59;

  /* Accent — for text links on dark backgrounds (5.2:1 on #050a0e) */
  --accent-light: #5ce0f0;

  /* Other accents */
  --orange: #ff6b35;
  --orange-glow: rgba(255, 107, 53, 0.3);
  --green: #00c853;
  --green-glow: rgba(0, 200, 83, 0.25);
  --amber: #ffc107;
  --red: #d32f2f;

  /* Text — dark backgrounds */
  --text-white: #f0f4f5;
  --text-light: #b8ced8;      /* 5.8:1 on #050a0e */
  --text-muted: #8aa8b8;      /* 4.6:1 on #050a0e */

  /* Text — light backgrounds */
  --text-dark: #111;           /* 17:1 on white */
  --text-body: #333;           /* 12.6:1 on white, 10.5:1 on cream */
  --text-secondary: #555;      /* 7.5:1 on white, 6.3:1 on cream */

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Motion */
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Focus rings */
  --focus-ring: 0 0 0 3px var(--accent), 0 0 0 5px rgba(0, 109, 122, 0.3);
  --focus-ring-light: 0 0 0 3px var(--accent-light), 0 0 0 5px rgba(92, 224, 240, 0.3);

  /* Layout */
  --header-h: 80px;
  --container: 1240px;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--text-dark); background: var(--bg-deep); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; color: var(--text-dark); }
button { font-family: var(--font-body); cursor: pointer; }
p { color: var(--text-body); line-height: 1.6; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ============ ACCESSIBILITY ============ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
:focus:not(:focus-visible) { outline: none; }

/* Body text links — underlined, dark accent, not color-only */
.service-detail-text a,
.value-card a,
.sms-cta a,
p a:not(.btn):not(.area-card) {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
p a:not(.btn):not(.area-card):hover {
  color: var(--accent-hover);
  text-decoration-thickness: 2px;
}

/* ============ SKIP LINK ============ */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--cyan); color: var(--bg-deep);
  padding: 0.75rem 1.5rem; border-radius: var(--radius-pill);
  z-index: 10001; font-weight: 700; transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--bg-deep); outline-offset: 2px; }

/* ============ GRAIN OVERLAY ============ */
body::after {
  content: ''; position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.5;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  border: none; cursor: pointer; transition: all var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; box-shadow: none; }

/* Primary — cyan bg, very dark text (15:1+) */
.btn-primary { background: var(--cyan); color: var(--bg-deep); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 25px var(--cyan-glow); }

/* Secondary — on light bg: dark border + dark text (no low-contrast cyan) */
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* On dark backgrounds, secondary gets lighter treatment */
.cta-section .btn-secondary,
.page-header .btn-secondary { color: var(--text-white); border-color: var(--text-light); }
.cta-section .btn-secondary:hover,
.page-header .btn-secondary:hover { background: var(--text-white); color: var(--bg-deep); }

/* Accent — orange, white text */
.btn-accent { background: var(--orange); color: #fff; font-weight: 700; }
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 25px var(--orange-glow); }

/* SMS — green, dark text */
.btn-sms { background: var(--green); color: var(--bg-deep); font-weight: 700; }
.btn-sms:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 25px var(--green-glow); }

/* ============ HEADER ============ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h); background: rgba(5,10,14,0.7); backdrop-filter: blur(30px) saturate(1.8); -webkit-backdrop-filter: blur(30px) saturate(1.8); border-bottom: 1px solid rgba(255,255,255,0.06); transition: all var(--transition); }
.header.scrolled { background: rgba(5,10,14,0.92); box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.header-container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text-white); letter-spacing: -0.04em; text-transform: uppercase; }
.logo-text span { color: var(--cyan); }

.nav ul { display: flex; gap: 0.15rem; }
.nav a {
  display: block; padding: 0.5rem 0.9rem;
  color: var(--text-light); font-size: 0.875rem; font-weight: 500;
  border-radius: var(--radius-sm); transition: all var(--transition);
  letter-spacing: 0.02em; text-transform: uppercase;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav a.active { color: var(--cyan); }
.nav a:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

.header-cta { padding: 0.55rem 1.3rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* Mobile toggle */
.mobile-menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; background: none; border: none; padding: 6px;
  border-radius: var(--radius-sm);
}
.mobile-menu-btn:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }
.mobile-menu-btn span { display: block; width: 100%; height: 2px; background: var(--text-white); border-radius: 2px; transition: all var(--transition); transform-origin: center; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Mobile Nav */
.mobile-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: rgba(5,10,14,0.97); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 2rem; transform: translateY(-20px); opacity: 0; pointer-events: none; transition: all var(--transition); }
.mobile-nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1.25rem; }
.mobile-nav a {
  display: block; padding: 0.75rem 0;
  color: var(--text-light); font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.04); transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cyan); }
.mobile-nav a:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; border-radius: var(--radius-sm); }
.mobile-nav .btn { width: 100%; text-align: center; }
.mobile-nav:not(.active) a, .mobile-nav:not(.active) .btn { visibility: hidden; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--header-h) + 2rem) 2rem 6rem; background: var(--bg-deep); overflow: hidden; }
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%); border-radius: 50%; animation: float1 8s ease-in-out infinite alternate; z-index: 1; }
.hero::after { content: ''; position: absolute; bottom: -10%; left: -15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%); border-radius: 50%; animation: float2 10s ease-in-out infinite alternate; z-index: 1; }
@keyframes float1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-40px,30px) scale(1.1); } }
@keyframes float2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,-40px) scale(1.15); } }

.hero-content { position: relative; z-index: 5; text-align: center; max-width: 950px; margin: 0 auto; }
.hero h1 { font-size: clamp(1.75rem, 3.5vw, 3rem); color: var(--text-white); margin-bottom: 1.25rem; letter-spacing: -0.01em; line-height: 1.2; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero h1 .highlight { color: var(--cyan); font-style: italic; }
.hero-subtitle { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-light); line-height: 1.7; max-width: 520px; margin: 0 auto 2.5rem; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-cta .btn { padding: 0.9rem 2rem; font-size: 1rem; }
.hero-areas { font-size: 0.875rem; color: var(--text-muted); letter-spacing: 0.03em; }
.hero-areas strong { color: var(--text-light); }
.hero-areas a { color: inherit; }
.hero-areas a:hover { color: var(--cyan); }

.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; animation: bobDown 2s ease-in-out infinite; }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cyan), transparent); }
@keyframes bobDown { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; background: var(--cyan); padding: 0.9rem 0; white-space: nowrap; position: relative; z-index: 5; }
.marquee-track { display: inline-flex; animation: marquee 25s linear infinite; }
.marquee-track span { display: inline-block; padding: 0 2rem; font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bg-deep); }
.marquee-track span::after { content: '\00B7'; margin-left: 2rem; opacity: 0.4; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ PAGE HEADER ============ */
.page-header { position: relative; padding: calc(var(--header-h) + 4rem) 2rem 4rem; background: var(--bg-deep); overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(0,229,255,0.05) 0%, transparent 70%); }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--text-white); text-transform: uppercase; margin-bottom: 0.5rem; }
.page-header p { font-size: 1.1rem; color: var(--text-light); max-width: 500px; font-weight: 300; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ SECTIONS ============ */
.section { padding: 6rem 2rem; }
.section-light { background: var(--bg-cream); }
.section-alt { background: var(--bg-cream-alt); }
.section-dark { background: var(--bg-deep); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }

/* Badges — dark text on tinted bg, NOT cyan text on light */
.section-badge {
  display: inline-block; padding: 0.35rem 1.2rem;
  background: rgba(0, 109, 122, 0.1); color: var(--accent);
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-radius: var(--radius-pill); border: 1px solid rgba(0, 109, 122, 0.2);
  margin-bottom: 1.25rem;
}
/* On dark sections, badges get light treatment */
.section-dark .section-badge { background: rgba(0, 229, 255, 0.1); color: var(--accent-light); border-color: rgba(0, 229, 255, 0.15); }

.section-header h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; text-transform: uppercase; }
.section-light .section-header h2, .section-alt .section-header h2 { color: var(--text-dark); }
.section-dark .section-header h2 { color: var(--text-white); }

.section-header p { font-size: 1.1rem; line-height: 1.6; font-weight: 400; }
.section-light .section-header p, .section-alt .section-header p { color: var(--text-body); }
.section-dark .section-header p { color: var(--text-light); }

.section-num { font-family: var(--font-display); font-size: clamp(5rem, 10vw, 9rem); font-weight: 800; line-height: 1; color: rgba(0,0,0,0.04); position: absolute; top: -1.5rem; left: -0.5rem; letter-spacing: -0.06em; pointer-events: none; user-select: none; }

/* ============ SERVICE CARDS ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2.5rem 2rem 2rem; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: all var(--transition); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
a.service-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; background: rgba(0, 109, 122, 0.08); border-radius: var(--radius); transition: all var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); background: rgba(0, 109, 122, 0.15); }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: -0.01em; }
.service-card p { color: var(--text-body); font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; font-weight: 400; }
.service-card .btn { font-size: 0.875rem; padding: 0.55rem 1.3rem; }

/* ============ GALLERY / BEFORE-AFTER ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 2rem; }

.gallery-item { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: all var(--transition); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }

.ba-slider { position: relative; overflow: hidden; aspect-ratio: 16/10; user-select: none; -webkit-user-select: none; }
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: var(--cyan); z-index: 3; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 15px var(--cyan-glow); }
.ba-slider .ba-handle::before, .ba-slider .ba-handle::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-style: solid; }
.ba-slider .ba-handle::before { top: 50%; margin-top: -14px; border-width: 8px 0 8px 10px; border-color: transparent transparent transparent var(--cyan); }
.ba-slider .ba-handle::after { top: 50%; margin-top: -2px; border-width: 8px 10px 8px 0; border-color: transparent var(--cyan) transparent transparent; }
.ba-slider .ba-handle-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: var(--cyan); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px var(--cyan-glow); pointer-events: none; }
.ba-slider .ba-handle-circle svg { width: 20px; height: 20px; fill: var(--bg-deep); }

.ba-slider-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: col-resize; z-index: 4; margin: 0; padding: 0; }
.ba-slider-input:focus-visible + .ba-handle { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }

.ba-label { position: absolute; top: 1rem; padding: 0.35rem 0.9rem; background: rgba(5,10,14,0.9); color: #fff; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: var(--radius-pill); z-index: 2; }
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; background: var(--cyan); color: var(--bg-deep); }

.comparison { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.comparison-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover .comparison-image img { transform: scale(1.05); }
.comparison-label { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.35rem 0.75rem; background: rgba(5,10,14,0.9); color: #fff; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: var(--radius-pill); }
.comparison-label.after { background: var(--cyan); color: var(--bg-deep); }

.gallery-item-content { padding: 1.25rem 1.5rem; }
.gallery-item-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; }
.gallery-location { font-size: 0.875rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* ============ FEATURES ============ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature { text-align: center; padding: 2rem 1.25rem; border-radius: var(--radius-lg); transition: all var(--transition); position: relative; }
.feature:hover { background: var(--bg-white); box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-6px); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; background: rgba(0, 109, 122, 0.08); border-radius: 50%; transition: all var(--transition); }
.feature:hover .feature-icon { transform: scale(1.15) rotate(-5deg); background: rgba(0, 109, 122, 0.15); }
.feature h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; text-transform: uppercase; }
.feature p { color: var(--text-body); font-size: 1rem; line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2.25rem; position: relative; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); transition: all var(--transition); }
.testimonial::before { content: '\201C'; position: absolute; top: 0.5rem; right: 1.25rem; font-family: var(--font-display); font-size: 6rem; font-weight: 800; color: rgba(0,0,0,0.04); line-height: 1; }
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.testimonial-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-text { font-size: 1rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--orange)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1rem; font-family: var(--font-display); }
.testimonial-info strong { display: block; color: var(--text-dark); font-size: 0.9rem; font-weight: 600; }
.testimonial-info span { font-size: 0.875rem; color: var(--text-secondary); }

/* ============ AREA CARDS ============ */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-card { display: block; background: var(--bg-white); border-radius: var(--radius); padding: 1.3rem; text-align: center; border: 2px solid rgba(0,0,0,0.08); transition: all var(--transition); }
.area-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0, 109, 122, 0.1); }
.area-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.area-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.15rem; text-transform: uppercase; }
.area-card p { font-size: 0.875rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }

/* ============ CTA SECTION ============ */
.cta-section { position: relative; padding: 6rem 2rem; background: var(--bg-deep); overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(0,229,255,0.05) 0%, transparent 65%); }
.cta-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0.2; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text-white); margin-bottom: 1rem; text-transform: uppercase; }
.cta-section p { color: var(--text-light); font-size: 1.15rem; margin-bottom: 2.5rem; font-weight: 300; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }
.cta-phone a { color: var(--accent-light); font-weight: 600; }
.cta-phone a:hover { text-decoration: underline; }

/* ============ SERVICE DETAIL ============ */
.service-detail { padding: 5rem 2rem; position: relative; }
.service-detail:nth-child(odd) { background: var(--bg-cream); }
.service-detail:nth-child(even) { background: var(--bg-cream-alt); }
.service-detail-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: var(--container); margin: 0 auto; }
.service-detail:nth-child(even) .service-detail-content { direction: rtl; }
.service-detail:nth-child(even) .service-detail-content > * { direction: ltr; }
.service-detail-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text-dark); margin-bottom: 1.25rem; text-transform: uppercase; }
.service-detail-text p { color: var(--text-body); margin-bottom: 1rem; line-height: 1.7; font-size: 1rem; }
.service-detail-text ul { margin-bottom: 1.5rem; }
.service-detail-text li { position: relative; padding-left: 2rem; margin-bottom: 0.6rem; color: var(--text-body); font-size: 1rem; }
.service-detail-text li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; }
.service-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.service-detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ============ ABOUT ============ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.about-image img { width: 100%; border-radius: var(--radius-lg); }

/* ============ QUOTE PAGE ============ */
.quote-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start; }
.quote-form-container { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.quote-form-container h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-dark); text-transform: uppercase; }
.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--text-dark);
  background: var(--bg-cream); border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius); transition: all var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 109, 122, 0.2); background: var(--bg-white);
}
.form-group input[aria-invalid="true"], .form-group select[aria-invalid="true"] {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}
.form-error { color: var(--red); font-size: 0.875rem; margin-top: 0.3rem; font-weight: 500; display: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23333'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.quote-info { position: sticky; top: calc(var(--header-h) + 2rem); }
.quote-info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; text-transform: uppercase; }
.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--bg-white); border-radius: var(--radius); border: 2px solid rgba(0,0,0,0.06); transition: all var(--transition); }
.contact-method:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0, 109, 122, 0.08); }
.contact-method-icon { font-size: 1.5rem; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(0, 109, 122, 0.08); border-radius: var(--radius-sm); }
.contact-method-text { flex: 1; }
.contact-method-text strong { display: block; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.02em; }
.contact-method-text p { color: var(--text-body); font-size: 0.9rem; line-height: 1.6; }
.contact-method-text a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.contact-method-text a:hover { color: var(--accent-hover); }
.sms-cta { background: rgba(0, 109, 122, 0.06); border: 1px solid rgba(0, 109, 122, 0.15); border-radius: var(--radius); padding: 1.25rem; }
.sms-cta p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }
.sms-cta strong { color: var(--accent); font-weight: 700; }

/* ============ VALUE CARDS ============ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(0,0,0,0.08); transition: all var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.value-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; text-transform: uppercase; }
.value-card p { color: var(--text-body); font-size: 0.95rem; line-height: 1.7; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-deep); padding: 5rem 2rem 2rem; color: var(--text-light); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-section h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.footer-section p { font-size: 0.9rem; line-height: 1.7; color: var(--text-light); }
.footer-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section a { font-size: 0.9rem; color: var(--text-light); transition: color var(--transition); }
.footer-section a:hover { color: var(--cyan); }
.footer-section a:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; border-radius: var(--radius-sm); }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; }
.footer-contact .icon { font-size: 0.9rem; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.875rem; color: var(--text-light); }

/* ============ FLOATING CTA ============ */
.floating-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 998; opacity: 0; transform: translateY(20px); transition: all var(--transition); pointer-events: none; }
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta a { display: flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.5rem; background: var(--green); color: var(--bg-deep); font-weight: 700; font-size: 0.875rem; border-radius: var(--radius-pill); box-shadow: 0 4px 25px var(--green-glow); text-transform: uppercase; letter-spacing: 0.04em; transition: all var(--transition); }
.floating-cta a:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--green-glow); }
.floating-cta a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.floating-cta .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-deep); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeInUp 0.9s ease-out 0.3s both; }
.page-header h1 { animation: fadeInUp 0.7s ease-out 0.1s both; }
.page-header p, .page-header .breadcrumb { animation: fadeInUp 0.7s ease-out 0.25s both; }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: block; }
  .services-grid, .testimonials-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail:nth-child(even) .service-detail-content { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .section { padding: 4rem 1.25rem; }
  .services-grid, .testimonials-grid, .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .values-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 2.5rem) 1.25rem 3.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; max-width: 300px; padding: 0.85rem 1.5rem; font-size: 0.9rem; }
  .hero-areas { font-size: 0.8rem; }
  .hero-scroll { display: none; }
  .cta-section { padding: 4rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .logo-text { font-size: 1.25rem; }
  .quote-form-container { padding: 1.5rem; }
  .service-detail { padding: 3.5rem 1.25rem; }
  .section-header { margin-bottom: 3rem; }
  .page-header { padding: calc(var(--header-h) + 2.5rem) 1.25rem 3rem; }
  .floating-cta { bottom: 1.25rem; right: 1.25rem; }
  .marquee-track span { font-size: 0.8rem; padding: 0 1.25rem; }
  .marquee-track span::after { margin-left: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-particles { display: none; }
  .pulse-dot { animation: none !important; }
}
