/*
Theme Name: AKA Plumbing Spark
Theme URI: https://akaplumbing.com
Author: AKA Plumbing
Author URI: https://akaplumbing.com
Description: Modern premium plumbing theme inspired by the Spark-a-Grin design. Navy & copper palette, glassmorphism effects, scroll animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aka-plumbing-spark
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ==========================================================================
   0. SELF-HOSTED FONTS
   ========================================================================== */

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('./assets/fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url('./assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ==========================================================================
   2. CUSTOM PROPERTIES (Harmonized to Logo)
   ========================================================================== */

:root {
  /* Core Brand Colors */
  --background: 210 40% 98%;
  --foreground: 220 30% 15%;
  --card: 0 0% 100%;
  --card-foreground: 220 30% 15%;
  --muted: 212 30% 96%;
  --muted-foreground: 240 8% 38%;
  --border: 212 25% 90%;
  --input: 212 25% 90%;
  --ring: 15 100% 53%;
  --destructive: 0 84% 60%;
  --radius: 0.75rem;

  /* Brand Tokens */
  --navy: 204 100% 12%;
  --navy-light: 204 80% 18%;
  --copper: 16 88% 54%;
  --copper-light: 16 85% 64%;
  --copper-dark: 15 100% 43%;
  --sky: 212 100% 95%;
  --sky-deep: 212 80% 88%;
  --brand-blue: 212 100% 50%;
  --slate: 240 8% 55%;
  --emerald: 160 84% 28%;

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, hsl(220 30% 15%) 0%, hsl(220 25% 22%) 100%);
  --gradient-copper: linear-gradient(135deg, hsl(15 100% 53%) 0%, hsl(15 100% 43%) 100%);
  --gradient-hero: linear-gradient(135deg, hsl(220 30% 15% / 0.92) 0%, hsl(220 25% 22% / 0.85) 50%, hsl(220 30% 15% / 0.75) 100%);
  --gradient-glass: linear-gradient(135deg, hsl(0 0% 100% / 0.1) 0%, hsl(0 0% 100% / 0.05) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px hsl(220 30% 15% / 0.05);
  --shadow-md: 0 4px 6px -1px hsl(220 30% 15% / 0.1), 0 2px 4px -2px hsl(220 30% 15% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(220 30% 15% / 0.1), 0 4px 6px -4px hsl(220 30% 15% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(220 30% 15% / 0.1), 0 8px 10px -6px hsl(220 30% 15% / 0.1);
  --shadow-2xl: 0 25px 50px -12px hsl(220 30% 15% / 0.25);
  --shadow-copper: 0 10px 30px -10px hsl(15 100% 53% / 0.4);
  --shadow-glow: 0 0 40px hsl(15 100% 53% / 0.3);
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

.font-display { font-family: 'Outfit', system-ui, sans-serif; }
.font-body { font-family: 'Inter', system-ui, sans-serif; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.tracking-tight { letter-spacing: -0.02em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.1; }
.leading-relaxed { line-height: 1.75; }

.text-gradient-copper {
  background: linear-gradient(to right, hsl(var(--copper)), hsl(var(--copper-light)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shadow {
  text-shadow: 0 2px 10px hsl(220 30% 15% / 0.3);
}

.text-shadow-lg {
  text-shadow: 0 4px 20px hsl(220 30% 15% / 0.4);
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.32, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn-rounded { border-radius: 9999px; }

.btn-sm { padding: 0.625rem 1.5rem; font-size: 0.875rem; }
.btn-md { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-lg { padding: 1.75rem 3rem; font-size: 1.125rem; }
.btn-block { width: 100%; }

.btn-copper {
  background: linear-gradient(to right, hsl(var(--copper)), hsl(var(--copper-dark)));
  color: #fff;
  box-shadow: var(--shadow-copper);
}

.btn-copper:hover {
  background: linear-gradient(to right, hsl(var(--copper-light)), hsl(var(--copper)));
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.btn-navy {
  background: linear-gradient(to right, hsl(var(--navy)), hsl(var(--navy-light)));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-navy:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-emerald {
  background-color: hsl(var(--emerald));
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-emerald:hover {
  background-color: hsl(var(--emerald) / 0.9);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-outline-white {
  border: 2px solid hsl(0 0% 100% / 0.2);
  color: #fff;
  background: hsl(0 0% 100% / 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #fff;
  color: hsl(var(--navy));
  border-color: #fff;
}

.btn-outline-navy {
  border: 2px solid hsl(0 0% 100% / 0.15);
  color: #fff;
  background: hsl(0 0% 100% / 0.04);
}

.btn-outline-navy:hover {
  background: #fff;
  color: hsl(var(--navy));
}

/* ==========================================================================
   6. GLASS EFFECTS
   ========================================================================== */

.glass-card {
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsl(0 0% 100% / 0.2);
  box-shadow: var(--shadow-lg);
}

.glass-card-dark {
  background: hsl(var(--navy) / 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsl(0 0% 100% / 0.1);
}

/* ==========================================================================
   7. HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.32, 1);
  padding: 1.25rem 0;
  background: #ffffff;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
}

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

.header-logo-img {
  height: 3.25rem;
  width: auto;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .header-logo-img { height: 4rem; }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo-tagline {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

@media (min-width: 768px) {
  .header-logo-tagline { font-size: 1.75rem; }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  font-weight: 500;
  transition: color 0.3s;
  color: hsl(var(--foreground));
}

.nav-link:hover {
  color: hsl(var(--copper));
}

/* Link underline animation */
.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: hsl(var(--copper));
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-cta { display: flex; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: hsl(var(--navy));
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: hsl(var(--foreground));
}

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

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-xl);
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

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

.mobile-nav-link {
  color: hsl(var(--foreground));
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

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

.mobile-nav-cta {
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   8. HERO
   ========================================================================== */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    hsl(220 30% 15% / 0.92) 0%,
    hsl(220 25% 22% / 0.85) 50%,
    hsl(220 30% 15% / 0.75) 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: hsl(var(--copper) / 0.08);
  top: -10%;
  right: -10%;
  animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: hsl(var(--brand-blue) / 0.06);
  bottom: -10%;
  left: -5%;
  animation: float 10s ease-in-out infinite 2s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: hsl(var(--copper) / 0.05);
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite 4s;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 6rem; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(0 0% 100% / 0.6);
  max-width: 42rem;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
  .hero-subtitle { font-size: 1.5rem; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(0 0% 100% / 0.12);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0 0% 100% / 0.9);
  transition: background 0.3s;
}

.trust-badge:hover {
  background: hsl(0 0% 100% / 0.12);
}

.trust-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--emerald) / 0.2);
}

.trust-badge-icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--emerald));
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsl(0 0% 100% / 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: bounceSoft 2s ease-in-out infinite;
}

/* ==========================================================================
   9. STATS
   ========================================================================== */

.stats-section {
  position: relative;
  margin-top: -6rem;
  z-index: 20;
  padding-bottom: 4rem;
}

.stats-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid hsl(var(--border) / 0.5);
  overflow: hidden;
}

.stats-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, hsl(var(--copper)), hsl(var(--copper-light)), hsl(var(--copper)));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

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

.stat-item {
  position: relative;
  padding: 2rem;
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: hsl(var(--muted) / 0.3);
}

@media (min-width: 768px) {
  .stat-item { padding: 2.5rem; }
}

.stat-item + .stat-item {
  border-left: 1px solid hsl(var(--border) / 0.5);
}

.stat-item:nth-child(3) {
  border-left: none;
}

@media (min-width: 1024px) {
  .stat-item:nth-child(3) { border-left: 1px solid hsl(var(--border) / 0.5); }
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-lg);
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.stat-icon-copper {
  background: linear-gradient(to bottom right, hsl(var(--copper)), hsl(var(--copper-dark)));
}

.stat-icon-navy {
  background: linear-gradient(to bottom right, hsl(var(--navy)), hsl(var(--navy-light)));
}

.stat-value {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: hsl(var(--navy));
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .stat-value { font-size: 3.75rem; }
}

.stat-label {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ==========================================================================
   10. SECTION HEADERS (shared pattern)
   ========================================================================== */

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-badge-sky {
  background: hsl(var(--sky));
  color: hsl(var(--copper));
}

.section-badge-dark {
  background: hsl(0 0% 100% / 0.08);
  color: hsl(var(--copper-light));
  border: 1px solid hsl(0 0% 100% / 0.06);
}

.section-badge-white {
  background: #fff;
  color: hsl(var(--copper));
  box-shadow: var(--shadow-sm);
}

.section-badge-copper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--copper) / 0.1);
  border: 1px solid hsl(var(--copper) / 0.2);
  color: hsl(var(--copper-dark));
}

.section-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: hsl(var(--navy));
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3.75rem; }
}

.section-title-white {
  color: #fff;
}

.section-title-black {
  color: hsl(var(--foreground));
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.section-description-light {
  color: hsl(0 0% 100% / 0.5);
}

/* ==========================================================================
   11. SERVICES
   ========================================================================== */

.services-section {
  background: hsl(var(--background));
}

.services-header {
  max-width: 36rem;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.32, 1);
}

@media (min-width: 768px) {
  .service-card { padding: 2.5rem; }
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: hsl(var(--copper) / 0.2);
}

.service-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, hsl(var(--copper)), hsl(var(--copper-dark)));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-copper);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #fff;
}

.service-card h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--navy));
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: hsl(var(--copper));
}

.service-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: hsl(var(--muted));
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.service-feature-pill .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: hsl(var(--copper));
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--copper));
  font-weight: 600;
}

.service-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

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

/* ==========================================================================
   12. WHY US
   ========================================================================== */

.why-us-section {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

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

.why-us-header {
  text-align: center;
  margin-bottom: 5rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.reason-card {
  position: relative;
  border-radius: 1.5rem;
  background: hsl(0 0% 100% / 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(0 0% 100% / 0.08);
  padding: 2rem;
  transition: all 0.5s;
}

.reason-card:hover {
  background: hsl(0 0% 100% / 0.08);
  border-color: hsl(var(--copper) / 0.2);
}

.reason-card:has(.reason-link) {
  cursor: pointer;
}

.reason-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: hsl(0 0% 100% / 0.04);
  line-height: 1;
  transition: color 0.5s;
}

.reason-card:hover .reason-number {
  color: hsl(var(--copper) / 0.1);
}

.reason-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: hsl(var(--copper) / 0.1);
  border: 1px solid hsl(var(--copper) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.reason-card:hover .reason-icon {
  background: hsl(var(--copper) / 0.2);
}

.reason-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--copper));
}

.reason-card h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: hsl(0 0% 100% / 0.5);
  line-height: 1.75;
  font-size: 0.875rem;
}

.reason-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: hsl(var(--copper));
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.reason-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.reason-link:hover {
  color: hsl(var(--copper-light));
}

/* ==========================================================================
   13. PROCESS
   ========================================================================== */

.process-section {
  background: hsl(var(--muted) / 0.3);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
}

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

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.process-line {
  display: none;
  position: absolute;
  top: 2.25rem;
  left: 10%;
  right: 10%;
  height: 1px;
}

@media (min-width: 1024px) {
  .process-line { display: block; }
}

.process-line-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, hsl(var(--copper) / 0.3), transparent);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-number {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, hsl(var(--copper)), hsl(var(--copper-dark)));
  color: #fff;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-copper);
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.process-step:hover .process-number {
  transform: scale(1.1);
}

.process-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.3s;
}

.process-step:hover .process-icon-box {
  box-shadow: var(--shadow-lg);
}

.process-icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--copper));
}

.process-step h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--navy));
  margin-bottom: 0.5rem;
}

.process-step p {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  font-size: 0.875rem;
  max-width: 14rem;
}

/* ==========================================================================
   14. GALLERY
   ========================================================================== */

.gallery-section {
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:focus {
  outline: 2px solid hsl(var(--copper));
  outline-offset: 2px;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--navy) / 0.9), hsl(var(--navy) / 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

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

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-overlay span {
  color: hsl(var(--copper-light));
  font-size: 0.875rem;
  font-weight: 500;
}

.gallery-view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: hsl(var(--navy) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.1);
  border: 1px solid hsl(0 0% 100% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
  z-index: 10;
}

.lightbox-close:hover {
  background: hsl(0 0% 100% / 0.2);
}

.lightbox-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.1);
  border: 1px solid hsl(0 0% 100% / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
  z-index: 10;
}

.lightbox-nav:hover {
  background: hsl(0 0% 100% / 0.2);
}

.lightbox-nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (min-width: 768px) {
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

.lightbox-content {
  max-width: 56rem;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 1rem;
  margin: 0 auto;
}

.lightbox-info {
  margin-top: 1rem;
}

.lightbox-info h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.lightbox-info span {
  color: hsl(var(--copper-light));
  font-size: 0.875rem;
}

/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.testimonial-featured {
  position: relative;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, hsl(var(--navy)), hsl(var(--navy-light)));
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonial-featured { padding: 3rem; }
}

.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 8rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 900;
  color: hsl(0 0% 100% / 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: hsl(var(--copper));
  color: hsl(var(--copper));
}

.testimonial-stars-sm svg {
  width: 1rem;
  height: 1rem;
}

.testimonial-featured blockquote {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-featured blockquote { font-size: 1.5rem; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, hsl(var(--copper)), hsl(var(--copper-dark)));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-avatar-sm {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, hsl(var(--navy)), hsl(var(--navy-light)));
  font-size: 0.875rem;
}

.testimonial-author-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
}

.testimonial-author-name-dark {
  color: hsl(var(--navy));
  font-size: 0.875rem;
}

.testimonial-author-location {
  color: hsl(0 0% 100% / 0.5);
  font-size: 0.875rem;
}

.testimonial-author-location-dark {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

.testimonials-standard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  flex: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-card blockquote {
  color: hsl(var(--foreground));
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* ==========================================================================
   15b. TRUSTPILOT
   ========================================================================== */

.trustpilot-section {
  background: hsl(var(--background));
  padding: 3rem 0 2rem;
  text-align: center;
}

.trustpilot-inner .section-badge {
  margin-bottom: 1.25rem;
}

.trustpilot-widget-wrap {
  min-height: 52px;
}

/* Collapse section when Trustpilot widget fails to load (e.g. ad-blocker) */
.trustpilot-section:has(.trustpilot-widget-wrap:empty) {
  padding: 0;
  min-height: 0;
}

.trustpilot-section:has(.trustpilot-widget-wrap:empty) .trustpilot-inner {
  display: none;
}

/* ==========================================================================
   16. FAQ
   ========================================================================== */

.faq-section {
  background: hsl(var(--sky));
}

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

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  color: hsl(var(--navy));
  font-size: 1.125rem;
  transition: color 0.3s;
  list-style: none;
}

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

.faq-item summary:hover {
  color: hsl(var(--copper));
}

.faq-item summary .faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.faq-answer a {
  color: hsl(var(--copper));
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.faq-answer a:hover {
  color: hsl(var(--copper-light));
}

/* ==========================================================================
   17. CTA
   ========================================================================== */

.cta-section {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

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

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

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

.cta-phone-display {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid hsl(0 0% 100% / 0.1);
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-phone-display:hover {
  background: hsl(0 0% 100% / 0.1);
}

.cta-phone-display svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   18. CONTACT FORM
   ========================================================================== */

.contact-form-section {
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(hsl(var(--border)) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.contact-form-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-xl);
  position: relative;
}

@media (min-width: 768px) {
  .contact-form-card { padding: 3rem; }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--background));
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  color: hsl(var(--foreground));
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input { height: 3rem; }

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--copper));
  box-shadow: 0 0 0 3px hsl(var(--copper) / 0.2);
}

.form-input.has-error,
.form-textarea.has-error {
  border-color: hsl(var(--destructive));
}

.form-error {
  font-size: 0.75rem;
  color: hsl(var(--destructive));
  font-weight: 500;
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  background: hsl(var(--emerald) / 0.05);
  border: 1px solid hsl(var(--emerald) / 0.2);
}

.form-success.is-visible {
  display: block;
}

.form-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: hsl(var(--emerald) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(var(--emerald));
}

.form-success h3 {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.form-success p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   19. AREAS
   ========================================================================== */

.areas-section {
  background: hsl(var(--background));
}

.areas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 64rem;
  margin: 0 auto;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid hsl(var(--border) / 0.5);
  color: hsl(var(--foreground));
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  text-decoration: none;
}

.area-tag:hover {
  border-color: hsl(var(--copper) / 0.3);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.area-tag svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--copper));
  opacity: 0.5;
  transition: opacity 0.3s;
}

.area-tag:hover svg {
  opacity: 1;
}

.areas-note {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-top: 2.5rem;
}

.areas-note a {
  color: hsl(var(--copper));
  font-weight: 600;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.site-footer {
  background: hsl(var(--navy));
  position: relative;
  overflow: hidden;
}

.footer-accent {
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--copper) / 0.3), transparent);
}

.footer-inner {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 6px hsl(0 0% 100% / 0.8)) drop-shadow(0 0 16px hsl(0 0% 100% / 0.6)) drop-shadow(0 0 32px hsl(0 0% 100% / 0.3));
}

.footer-brand-text {
  color: hsl(0 0% 100% / 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-size: 0.875rem;
}

.footer-gas-safe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(0 0% 100% / 0.6);
  background: hsl(0 0% 100% / 0.04);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  font-size: 0.875rem;
}

.footer-gas-safe svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--copper));
}

.footer-heading {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(0 0% 100% / 0.7);
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.footer-links a svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-links a:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(0 0% 100% / 0.75);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-contact a {
  transition: color 0.3s;
}

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

.footer-contact-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: hsl(0 0% 100% / 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--copper));
}

.footer-bottom {
  border-top: 1px solid hsl(0 0% 100% / 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: hsl(0 0% 100% / 0.55);
  font-size: 0.75rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: hsl(0 0% 100% / 0.55);
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: hsl(var(--copper));
}

/* ==========================================================================
   21. MOBILE CTA
   ========================================================================== */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: hsl(var(--navy) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid hsl(0 0% 100% / 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.32, 1);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

.mobile-cta-buttons {
  display: flex;
  gap: 0.75rem;
}

.mobile-cta-buttons .btn {
  flex: 1;
  padding: 0.875rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ==========================================================================
   22. AREA LANDING PAGES
   ========================================================================== */

.area-page {
  padding-top: 5rem;
}

/* Hero */
.area-hero {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
}

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

.area-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.area-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0 0% 100% / 0.5);
  margin-bottom: 2rem;
}

.area-breadcrumb a {
  color: hsl(0 0% 100% / 0.6);
  transition: color 0.2s;
}

.area-breadcrumb a:hover {
  color: hsl(var(--copper));
}

.area-breadcrumb span[aria-current] {
  color: hsl(0 0% 100% / 0.85);
}

.area-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.area-hero-subtitle {
  font-size: 1.125rem;
  color: hsl(0 0% 100% / 0.75);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.area-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.area-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(0 0% 100% / 0.06);
  border: 1px solid hsl(0 0% 100% / 0.1);
  color: hsl(0 0% 100% / 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.area-meta-tag svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--copper));
}

.area-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .area-hero-cta { flex-direction: row; justify-content: center; }
}

/* Intro */
.area-intro {
  background: hsl(var(--background));
}

.area-intro-content {
  max-width: 48rem;
  margin: 0 auto;
}

.area-intro-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.area-intro-content > p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.area-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.area-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.area-features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Services grid */
.area-services {
  background: hsl(var(--muted));
}

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

.area-services-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.area-services-header p {
  color: hsl(var(--muted-foreground));
}

.area-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

.area-service-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.area-service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--copper) / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: hsl(var(--copper));
}

.area-service-card h3 {
  font-size: 1rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.area-service-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* Why Choose Us */
.area-why-us {
  background: hsl(var(--background));
}

.area-why-us-header {
  text-align: center;
  margin-bottom: 3rem;
}

.area-why-us-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: hsl(var(--foreground));
}

.area-why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

.area-reason {
  text-align: center;
  padding: 1.5rem;
}

.area-reason svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--copper));
  margin-bottom: 1rem;
}

.area-reason h3 {
  font-size: 1rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.area-reason p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* FAQ */
.area-faq {
  background: hsl(var(--muted));
}

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

.area-faq-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: hsl(var(--foreground));
}

/* Nearby areas */
.area-nearby {
  background: hsl(var(--background));
}

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

.area-nearby-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.area-nearby-header p {
  color: hsl(var(--muted-foreground));
}

.area-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.area-nearby-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s;
}

.area-nearby-link:hover {
  border-color: hsl(var(--copper) / 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: hsl(var(--copper));
}

.area-nearby-link svg:first-child {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--copper));
  opacity: 0.5;
}

.area-nearby-link:hover svg:first-child {
  opacity: 1;
}

.area-nearby-link svg:last-child {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.area-nearby-link:hover svg:last-child {
  opacity: 0.6;
  transform: translateX(2px);
}

/* ==========================================================================
   23. SVG ICONS (inline)
   ========================================================================== */

.icon { display: inline-block; vertical-align: middle; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* ==========================================================================
   24. UTILITY
   ========================================================================== */

.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;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Body padding for mobile CTA */
@media (max-width: 767px) {
  body {
    padding-bottom: 4.5rem;
  }
}
