/* SMA Carpet Cleaning — Modern Premium Design System */

:root {
  --color-navy: #0f172a;
  --color-navy-light: #1e293b;
  --color-brand: #059669;
  --color-brand-dark: #047857;
  --color-brand-light: #d1fae5;
  --color-gold: #059669;
  --color-gold-light: #a7f3d0;
  --color-gold-dark: #047857;
  --color-white: #ffffff;
  --color-cream: #f8fafc;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-400: #94a3b8;
  --color-gray-600: #475569;
  --color-gray-800: #1e293b;
  --color-success: #059669;
  --color-error: #dc2626;
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-height: 72px;
  --topbar-height: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-gray-800);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: var(--color-white);
  border-color: var(--color-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-navy:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

/* Top bar + light header */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-height);
  gap: 16px;
}

.topbar-text { opacity: 0.9; }

.topbar-phone {
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.topbar-phone:hover { color: #6ee7b7; }

body.has-topbar .site-header { top: var(--topbar-height); }
body.has-topbar .mobile-nav { top: calc(var(--header-height) + var(--topbar-height)); }

.site-header--light {
  background: var(--color-navy-light);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
}

.site-header--light.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-md);
}

.site-header--light .nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--light .nav-desktop a:hover,
.site-header--light .nav-desktop a.active {
  color: #6ee7b7;
}

.site-header--light .nav-desktop a.active::after {
  background: #6ee7b7;
}

.site-header--light .menu-toggle span {
  background: var(--color-white);
}

.site-header--light .header-phone-link {
  color: rgba(255, 255, 255, 0.9);
}

.header-phone-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: none;
}

@media (min-width: 1024px) {
  .header-phone-link { display: block; }
  .header-phone-link:hover { color: #6ee7b7; }
}

.site-header.scrolled:not(.site-header--light) {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

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

.logo img { height: 48px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 36px; }

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

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

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--color-gray-800) !important;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.nav-dropdown-menu a:hover {
  background: var(--color-cream);
  color: var(--color-gold-dark) !important;
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a.active { color: var(--color-gold); }

.mobile-nav-sub { padding-left: 16px; }

.mobile-nav-sub a { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.82) 45%,
    rgba(15, 23, 42, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 60px) 0 100px;
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: #6ee7b7;
}

/* Homepage hero */
.hero-home {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--topbar-height) + 56px) 0 72px;
  background: linear-gradient(145deg, var(--color-navy) 0%, #0c1929 50%, var(--color-navy-light) 100%);
  color: var(--color-white);
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-home-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: hero-home-drift 14s ease-in-out infinite alternate;
}

.hero-home-glow--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: 8%;
  background: rgba(5, 150, 105, 0.22);
}

.hero-home-glow--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -60px;
  background: rgba(110, 231, 183, 0.1);
  animation-delay: -7s;
}

.hero-home-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-home-content > * {
  opacity: 0;
  animation: hero-home-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-home-content > *:nth-child(1) { animation-delay: 0.08s; }
.hero-home-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-home-content > *:nth-child(3) { animation-delay: 0.32s; }
.hero-home-content > *:nth-child(4) { animation-delay: 0.44s; }
.hero-home-content > *:nth-child(5) { animation-delay: 0.56s; }

.hero-home-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-home-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}

a.hero-home-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-home-badge--google {
  background: rgba(254, 243, 199, 0.12);
  border-color: rgba(253, 230, 138, 0.35);
  color: #fde68a;
}

.hero-home-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-home-content h1 em {
  font-style: normal;
  color: #6ee7b7;
}

.hero-home-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-home-lead a {
  color: #6ee7b7;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-home-lead a:hover { color: var(--color-white); }

.hero-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 420px;
}

.hero-home-stat {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.hero-home-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-home-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #6ee7b7;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-home-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.3;
}

.hero-home-visual {
  position: relative;
  min-height: 480px;
  opacity: 0;
  animation: hero-home-visual-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-home-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-home-photo--main {
  top: 0;
  left: 0;
  width: 68%;
  height: 88%;
  z-index: 2;
}

.hero-home-photo--main img {
  animation: hero-home-zoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-home-photo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.hero-home-photo--small {
  width: 38%;
  aspect-ratio: 4 / 5;
  z-index: 3;
}

.hero-home-photo--top {
  top: 4%;
  right: 0;
  animation: hero-home-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero-home-photo--bottom {
  bottom: 0;
  right: 6%;
  animation: hero-home-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hero-home-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 4;
  text-decoration: none;
  color: inherit;
  animation: hero-home-float-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both,
    hero-home-bob 5s ease-in-out 1.6s infinite;
}

.hero-home-float--reviews {
  bottom: 18%;
  left: -4%;
}

.hero-home-float--speed {
  top: 42%;
  right: -2%;
  animation-delay: 1s, 2s;
}

.hero-home-float-stars {
  font-size: 0.85rem;
  color: #f59e0b;
  letter-spacing: 1px;
}

.hero-home-float-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-light);
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-home-float-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-navy);
  line-height: 1.2;
}

.hero-home-float-text small {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-600);
  margin-top: 2px;
}

@keyframes hero-home-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-home-visual-in {
  from { opacity: 0; transform: translateX(40px) scale(0.96); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes hero-home-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes hero-home-float-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-home-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes hero-home-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -16px) scale(1.06); }
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 1.5px solid var(--color-gray-200);
}

.btn-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand-dark);
  transform: translateY(-2px);
}

/* Trust bar */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: var(--transition);
}

.google-review-btn:hover {
  border-color: var(--color-brand);
  box-shadow: var(--shadow-sm);
}

.google-stars { color: #fbbf24; letter-spacing: 1px; }

/* Work showcase on homepage */
.work-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.work-showcase img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
}

.work-showcase a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.work-showcase a::after {
  content: "Watch";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.work-showcase a:hover::after { opacity: 1; }

.step-number {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-white);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(110, 231, 183, 0.18), rgba(5, 150, 105, 0.08));
  border: 1px solid rgba(110, 231, 183, 0.22);
  color: #6ee7b7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-phone {
  position: absolute;
  right: 48px;
  bottom: 48px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  text-align: center;
}

.hero-phone p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  margin-bottom: 4px;
}

.hero-phone a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-white);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 80px) 0 80px;
  background: var(--color-navy);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-navy-light) 0%, var(--color-navy) 60%, #0a1220 100%);
  opacity: 1;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.breadcrumb a:hover { color: var(--color-gold); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Sections */
section { padding: 96px 0; }

section.section-cream { background: var(--color-cream); }
section.section-gray { background: var(--color-gray-50); }
section.section-navy {
  background: var(--color-navy);
  color: var(--color-white);
}

section.section-navy .section-title { color: var(--color-white); }
section.section-navy .section-subtitle { color: rgba(255, 255, 255, 0.7); }
section.section-navy .eyebrow { color: var(--color-gold); }

/* Intro / about split */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
  width: 100%;
}

.about-main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-gray-100);
  aspect-ratio: 1 / 1;
}

.about-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.about-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-content p {
  color: var(--color-gray-600);
  margin-bottom: 16px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Legacy intro grid (inner pages) */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
}

.intro-images img:first-child {
  grid-row: span 2;
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-brand);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.intro-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.intro-badge span { font-size: 0.8rem; font-weight: 600; }

.intro-content p { color: var(--color-gray-600); margin-bottom: 16px; }

.feature-list { margin: 28px 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--color-gray-600);
}

.feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--color-gray-100);
}

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

.service-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-gray-100);
  flex-shrink: 0;
}

.service-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-bottom: 16px;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card-link:hover { gap: 10px; }

/* Steps / process */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -24px 0 48px;
}

.process-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  box-shadow: var(--shadow-sm);
}

.process-highlight strong { color: var(--color-navy); }

.process-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-timeline {
  position: relative;
}

.process-track {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 32px 22px 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-light);
}

.step-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}

.step-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-brand-light) 0%, rgba(5, 150, 105, 0.12) 100%);
  color: var(--color-brand-dark);
  border-radius: 50%;
  border: 2px solid rgba(5, 150, 105, 0.15);
  transition: transform var(--transition), background var(--transition);
}

.step-icon svg {
  width: 30px;
  height: 30px;
}

.step-card:hover .step-icon {
  transform: scale(1.08);
  background: linear-gradient(145deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: var(--color-white);
  border-color: transparent;
}

.step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
}

.step-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 6px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.step-card > p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.step-details {
  text-align: left;
  padding: 14px 16px;
  background: var(--color-gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-100);
}

.step-details li {
  position: relative;
  padding-left: 18px;
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.step-details li + li { margin-top: 8px; }

.step-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-brand);
  border-radius: 50%;
}

.process-cta {
  margin-top: 48px;
  text-align: center;
  padding: 36px 32px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-md);
}

.process-cta p {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  margin-bottom: 20px;
}

.process-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Process scroll animations */
.process-timeline.fade-in {
  opacity: 1;
  transform: none;
}

.process-timeline.fade-in .step-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.process-timeline.fade-in.visible .step-card:nth-child(1) { transition-delay: 0.1s; }
.process-timeline.fade-in.visible .step-card:nth-child(2) { transition-delay: 0.25s; }
.process-timeline.fade-in.visible .step-card:nth-child(3) { transition-delay: 0.4s; }
.process-timeline.fade-in.visible .step-card:nth-child(4) { transition-delay: 0.55s; }

.process-timeline.fade-in.visible .step-card {
  opacity: 1;
  transform: translateY(0);
}

.process-timeline.fade-in.visible .process-track-fill {
  transform: scaleX(1);
}

@media (min-width: 769px) {
  .process-track {
    display: block;
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--color-gray-200);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
  }

  .process-track-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-brand), var(--color-brand-dark));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }

  .process-timeline.fade-in.visible .step-icon {
    animation: step-icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  }

  .process-timeline.fade-in.visible .step-card:nth-child(1) .step-icon { animation-delay: 0.15s; }
  .process-timeline.fade-in.visible .step-card:nth-child(2) .step-icon { animation-delay: 0.35s; }
  .process-timeline.fade-in.visible .step-card:nth-child(3) .step-icon { animation-delay: 0.55s; }
  .process-timeline.fade-in.visible .step-card:nth-child(4) .step-icon { animation-delay: 0.75s; }
}

@keyframes step-icon-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home-content > *,
  .hero-home-visual,
  .hero-home-photo--main img,
  .hero-home-photo--top,
  .hero-home-photo--bottom,
  .hero-home-float,
  .hero-home-glow,
  .hero-home-glow--1,
  .hero-home-glow--2 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .why-grid--animate.fade-in .why-card,
  .why-grid--animate.fade-in.visible .why-icon,
  .why-bg-decoration::before,
  .why-bg-decoration::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .process-timeline.fade-in .step-card,
  .process-track-fill,
  .process-timeline.fade-in.visible .step-icon {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Why choose */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-bg-decoration::before,
.why-bg-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: why-blob-drift 12s ease-in-out infinite alternate;
}

.why-bg-decoration::before {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -80px;
  background: rgba(5, 150, 105, 0.12);
}

.why-bg-decoration::after {
  width: 300px;
  height: 300px;
  bottom: -60px;
  right: -40px;
  background: rgba(110, 231, 183, 0.08);
  animation-delay: -6s;
}

.why-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -24px 0 40px;
  position: relative;
  z-index: 1;
}

.why-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.why-highlight strong { color: var(--color-white); }

.why-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(5, 150, 105, 0.35);
  color: #6ee7b7;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 28px 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), #6ee7b7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(110, 231, 183, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover .why-icon {
  background: linear-gradient(145deg, var(--color-brand), var(--color-brand-dark));
  color: var(--color-white);
  border-color: transparent;
  transform: scale(1.08);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.why-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Why section scroll animations */
.why-grid--animate.fade-in {
  opacity: 1;
  transform: none;
}

.why-grid--animate.fade-in .why-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.why-grid--animate.fade-in.visible .why-card:nth-child(1) { transition-delay: 0.08s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(2) { transition-delay: 0.2s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(3) { transition-delay: 0.32s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(4) { transition-delay: 0.44s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(5) { transition-delay: 0.56s; }

.why-grid--animate.fade-in.visible .why-card {
  opacity: 1;
  transform: translateY(0);
}

.why-grid--animate.fade-in.visible .why-icon {
  animation: why-icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.why-grid--animate.fade-in.visible .why-card:nth-child(1) .why-icon { animation-delay: 0.15s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(2) .why-icon { animation-delay: 0.27s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(3) .why-icon { animation-delay: 0.39s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(4) .why-icon { animation-delay: 0.51s; }
.why-grid--animate.fade-in.visible .why-card:nth-child(5) .why-icon { animation-delay: 0.63s; }

@keyframes why-blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(20px, -16px) scale(1.06); }
}

@keyframes why-icon-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Testimonials */
.testimonials-slider { position: relative; max-width: 800px; margin: 0 auto; }

.testimonial-card {
  text-align: center;
  padding: 48px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: none;
}

.testimonial-card.active { display: block; }

.testimonial-stars {
  color: var(--color-brand);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 28px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-gray-400);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-200);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active { background: var(--color-gold); width: 28px; border-radius: 5px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonials-grid .testimonial-card {
  display: block;
  text-align: left;
  padding: 32px;
}

.testimonials-grid .testimonial-text {
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.google-band {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.google-band p {
  margin: 0;
  font-weight: 600;
  color: var(--color-navy);
}

.google-band span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-top: 4px;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.work-strip a {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: var(--color-gray-100);
  padding: 12px;
}

.work-strip a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.work-strip img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: auto;
}

body.has-topbar .page-hero {
  padding-top: calc(var(--header-height) + var(--topbar-height) + 64px);
}

/* Quote form */
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.quote-section--contact {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.quote-section--contact .btn {
  margin-top: 32px;
}

.quote-info h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.quote-info > p {
  color: var(--color-gray-600);
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-400);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span { font-weight: 500; color: var(--color-navy); }

.contact-item a:hover { color: var(--color-gold-dark); }

.quote-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}

.quote-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-600);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  background: var(--color-gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: var(--color-white);
}

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

.quote-form .btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.form-message.error {
  display: block;
  background: rgba(220, 38, 38, 0.08);
  color: var(--color-error);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  position: relative;
}

.cta-banner .btn { position: relative; flex-shrink: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray-100);
  aspect-ratio: 9/16;
}

.gallery-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  background: var(--color-gray-100);
  padding: 16px;
}

.gallery-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: auto;
}

.gallery-tiktok-cta {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-100);
}

/* Service detail */
.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-nav {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-nav h3 {
  padding: 20px 24px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
  border-bottom: 1px solid var(--color-gray-100);
}

.sidebar-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--color-gray-600);
  border-bottom: 1px solid var(--color-gray-100);
  transition: var(--transition);
}

.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--color-cream);
  color: var(--color-gold-dark);
  padding-left: 28px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  color: var(--color-white);
}

.sidebar-cta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.service-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--color-gray-100);
}

.service-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.service-content p {
  color: var(--color-gray-600);
  margin-bottom: 16px;
}

.service-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.service-images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: auto;
  display: block;
}

.equipment-section {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 48px;
}

.equipment-section h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-navy);
  margin-bottom: 24px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover { color: var(--color-gold); }

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 600;
}

.footer-social { display: flex; gap: 12px; margin-top: 16px; }

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

.footer-social a:hover { background: var(--color-brand); color: var(--color-white); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 24px;
}

.areas-list li {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy);
}

.areas-note {
  text-align: center;
  color: var(--color-gray-600);
  font-size: 0.95rem;
}

.areas-note a {
  color: var(--color-gold-dark);
  font-weight: 600;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.65;
}

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  padding: 12px 16px;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-cta-call {
  background: var(--color-navy);
  color: var(--color-white);
}

.mobile-cta-quote {
  background: var(--color-brand);
  color: var(--color-white);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .process-track { display: none; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .hero-phone { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-desktop,
  .header-cta .btn { display: none; }

  .menu-toggle { display: flex; }

  .hero-home-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-home-visual {
    order: -1;
    min-height: 380px;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-home-float--reviews { left: 0; bottom: 12%; }
  .hero-home-float--speed { right: 0; top: 38%; }

  .hero-home-stats { max-width: none; }

  @keyframes hero-home-visual-in {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .work-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .intro-grid,
  .about-split,
  .quote-section,
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-visual { margin: 0 auto; }

  .services-grid,
  .gallery-grid { grid-template-columns: 1fr; }

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

  .process-highlights { margin-top: -8px; }

  .process-timeline .steps-grid {
    padding-left: 20px;
    border-left: 2px solid var(--color-gray-200);
    gap: 20px;
  }

  .process-timeline.fade-in.visible .steps-grid {
    border-left-color: var(--color-brand);
    transition: border-color 1s ease 0.3s;
  }

  .step-card {
    text-align: left;
    padding: 24px 20px;
  }

  .step-icon-wrap { margin: 0 0 16px; }

  .process-cta {
    padding: 28px 20px;
  }

  .process-cta-actions {
    flex-direction: column;
  }

  .process-cta-actions .btn {
    width: 100%;
  }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

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

  .mobile-cta-bar { display: flex; }

  body { padding-bottom: 72px; }

  .quote-form-card { padding: 28px 24px; }

  .service-images { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .service-content .btn-outline {
    margin-left: 0 !important;
    margin-top: 12px;
    width: 100%;
  }
  .service-content .btn-navy { width: 100%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-home { padding-bottom: 48px; }
  .hero-home-visual { min-height: 320px; }
  .hero-home-actions { flex-direction: column; }
  .hero-home-actions .btn { width: 100%; }
  .hero-home-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .hero-home-stat { padding: 12px 8px; }
  .hero-home-stat strong { font-size: 1.1rem; }
  .hero-home-float { padding: 10px 14px; }
  .hero-home-float--speed { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-actions { flex-direction: column; }
  .about-actions .btn { width: 100%; text-align: center; }

  .work-showcase { grid-template-columns: repeat(3, 1fr); }
  .gallery-photos { grid-template-columns: 1fr 1fr; }
}
