/* ==========================================================================
   Seminole Handyman Pros — Main Stylesheet
   Mobile-first. Vanilla CSS. No frameworks.
   ========================================================================== */

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-surface: #f5f7f9;
  --color-surface-dark: #0d141a;
  --color-text-primary: #0d141a;
  --color-text-secondary: #56585e;
  --color-text-inverse: #ffffff;
  --color-text-muted: #8a8d94;
  --color-accent: #1d6fa4;
  --color-accent-dark: #155a87;
  --color-accent-light: #e8f2f9;
  --color-border: #dadce0;
  --color-star: #f59e0b;
  --color-success: #1a7f4b;
  --color-success-bg: #e8f5ee;
  --color-error: #c0392b;
  --color-error-bg: #fdf0ee;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --space-9: 120px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 150ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);

  /* Sticky offset — updated dynamically by JS */
  --sticky-offset: 116px;
}

/* ==========================================================================
   BASE RESET & UTILITIES
   ========================================================================== */

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

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

p {
  margin: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* Skip Link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-bg);
  color: var(--color-accent);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* Section */
.section {
  padding: 64px 0;
}

.section--surface {
  background: var(--color-surface);
}

.section--dark {
  background: var(--color-surface-dark);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* Section Label (overline) */
.section-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

/* Section Title */
.section-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin: 0;
}

/* Section Description */
.section-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 12px auto 0;
}

/* Visually Hidden (screen-reader-only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Selection */
::selection {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

/* Focus Styles */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Scroll Animation Base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

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

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* Desktop section padding */
@media (min-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .section-title {
    font-size: 30px;
  }
}

/* ==========================================================================
   TYPOGRAPHY SCALE
   ========================================================================== */

/* Mobile base sizes */
.display {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.body-large {
  font-size: 18px;
  line-height: 1.6;
}

.small {
  font-size: 14px;
  line-height: 1.55;
}

.caption {
  font-size: 12px;
  line-height: 1.5;
}

.overline {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Desktop type scale */
@media (min-width: 900px) {
  .display {
    font-size: 52px;
  }

  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .display {
    font-size: 56px;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Roboto', system-ui, sans-serif;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  background: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Primary */
.btn--primary {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #ffffff;
}

/* Secondary */
.btn--secondary {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-color: var(--color-accent-light);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-accent);
  color: #ffffff;
}

/* Outline White (dark backgrounds) */
.btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background: #ffffff;
  color: var(--color-accent);
}

/* Large */
.btn--lg {
  padding: 16px 32px;
  font-size: 17px;
  min-height: 56px;
}

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
  background: var(--color-accent);
  color: #ffffff;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  position: sticky;
  top: 0;
  z-index: 100;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar strong {
  font-weight: 700;
}

.announcement-bar a {
  color: #ffffff;
  text-decoration: underline;
}

.announcement-bar a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 44px;
  z-index: 99;
}

.site-nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-size: 15px;
  line-height: 1.25;
  color: var(--color-text-primary);
}

.nav__logo-text strong {
  font-weight: 700;
  display: block;
}

/* Nav Links */
.nav__links {
  display: none;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 32px;
}

.nav__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav__link--active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Phone CTA in Nav */
.nav__phone-cta {
  display: none;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 200ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Desktop nav reveal */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__phone-cta {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 100vw);
  background: var(--color-surface-dark);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}

.mobile-nav[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
}

.mobile-nav__inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-nav__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav__links {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  flex: 1;
}

.mobile-nav__links li a {
  display: block;
  padding: 16px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.mobile-nav__links li a:hover {
  color: var(--color-accent-light);
}

.mobile-nav__cta {
  display: block;
  background: var(--color-accent);
  color: #ffffff;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: background var(--transition);
}

.mobile-nav__cta:hover {
  background: var(--color-accent-dark);
  color: #ffffff;
}

.mobile-nav__estimate {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 12px;
  transition: border-color var(--transition), background var(--transition);
}

.mobile-nav__estimate:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Body scroll lock when mobile nav open */
body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  padding: 60px 0;
  background: var(--color-bg);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__content {
  max-width: 540px;
}

.hero__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
}

.hero__headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero__subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero__trust-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-surface) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero__image-placeholder-text {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 24px;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .hero {
    padding: 100px 0 80px;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .hero__content {
    flex: 0 0 50%;
    max-width: 540px;
  }

  .hero__headline {
    font-size: 52px;
  }

  .hero__image-wrap {
    flex: 0 0 45%;
  }
}

@media (min-width: 1280px) {
  .hero__headline {
    font-size: 56px;
  }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.trust-strip {
  background: var(--color-surface);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__icon svg {
  color: var(--color-accent);
  width: 20px;
  height: 20px;
}

.trust-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.trust-item__sub {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
  padding: 64px 0;
  background: #ffffff;
}

@media (min-width: 900px) {
  .services-section {
    padding: 96px 0;
  }
}

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

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 200ms ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

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

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card__icon-wrap svg {
  color: var(--color-accent);
  width: 26px;
  height: 26px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  flex: 1;
}

.service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how-it-works {
  padding: 64px 0;
  background: var(--color-surface);
}

@media (min-width: 900px) {
  .how-it-works {
    padding: 96px 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

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

  .steps-grid::before {
    position: absolute;
    top: 32px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: var(--color-border);
    content: '';
    z-index: 0;
  }
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.step__icon-wrap {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 2px solid var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step__icon-wrap svg {
  color: var(--color-accent);
  width: 28px;
  height: 28px;
}

.step__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text-primary);
}

.step__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 220px;
}

/* ==========================================================================
   WHY RICHARD
   ========================================================================== */

.why-richard {
  padding: 64px 0;
  background: #ffffff;
}

@media (min-width: 900px) {
  .why-richard {
    padding: 96px 0;
  }
}

.why-richard__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .why-richard__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.why-richard__photo-col {
  order: 2;
}

@media (min-width: 900px) {
  .why-richard__photo-col {
    order: 1;
  }
}

.why-richard__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.why-richard__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-accent-light) 100%);
  border-radius: var(--radius-lg);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-richard__content-col {
  order: 1;
}

@media (min-width: 900px) {
  .why-richard__content-col {
    order: 2;
  }
}

.why-richard__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.why-richard__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--color-text-primary);
}

@media (min-width: 900px) {
  .why-richard__title {
    font-size: 30px;
  }
}

.why-richard__body {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 32px;
}

.differentiator-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.differentiator-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.differentiator-item__icon {
  width: 22px;
  height: 22px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.differentiator-item__icon svg {
  color: var(--color-accent);
  width: 12px;
  height: 12px;
}

.differentiator-item__text {
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.why-richard__cta {
  margin-top: 32px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  padding: 64px 0;
  background: var(--color-surface);
}

@media (min-width: 900px) {
  .testimonials-section {
    padding: 96px 0;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  color: var(--color-star);
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-primary);
  margin: 0 0 20px;
  font-style: italic;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-primary);
}

.testimonial-card__location {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

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

/* ==========================================================================
   CITY / SERVICE AREA SECTION
   ========================================================================== */

.city-section {
  padding: 64px 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  .city-section {
    padding: 96px 0;
  }
}

.city-section .section-header {
  margin-bottom: 40px;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.city-pill:hover,
.city-pill:focus-visible {
  background: var(--color-accent);
  color: #ffffff;
}

.city-pill svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   CTA SECTION (DARK)
   ========================================================================== */

.cta-section {
  background: var(--color-surface-dark);
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 900px) {
  .cta-section {
    padding: 100px 0;
  }
}

.cta-section .section-label {
  color: var(--color-accent-light);
}

.cta-section__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
}

@media (min-width: 900px) {
  .cta-section__title {
    font-size: 40px;
  }
}

.cta-section__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.6;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-section__reassurance {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--color-surface-dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

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

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

.footer-col__title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.footer-logo {
  text-decoration: none;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 240px;
}

.footer-phone {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--color-accent-light);
}

.footer-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email:hover {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-col__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
  line-height: 1.6;
}

.footer-cta {
  margin-bottom: 24px;
}

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

.footer-social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   INNER PAGE HERO
   ========================================================================== */

.page-hero {
  background: var(--color-surface);
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 900px) {
  .page-hero {
    padding: 56px 0 48px;
  }
}

.page-hero__inner {
  max-width: 680px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 13px;
  color: var(--color-text-muted);
  list-style: none;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.breadcrumb__item--current {
  color: var(--color-text-secondary);
}

.breadcrumb__sep {
  color: var(--color-border);
}

.page-hero__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

.page-hero__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--color-text-primary);
}

@media (min-width: 900px) {
  .page-hero__title {
    font-size: 40px;
  }
}

.page-hero__desc {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.6;
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   SERVICE DETAIL PAGE
   ========================================================================== */

.service-detail {
  padding: 56px 0;
}

@media (min-width: 900px) {
  .service-detail {
    padding: 80px 0;
  }
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-detail__grid {
    grid-template-columns: 2fr 1fr;
    gap: 64px;
  }
}

.checklist-section {
  margin: 40px 0;
}

.checklist-section h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

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

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.checklist-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.checklist-item span {
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: 1.5;
}

/* Service Sidebar */
.service-sidebar {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 140px;
}

.service-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text-primary);
}

.service-sidebar .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.service-sidebar__phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.service-sidebar__phone:hover {
  color: var(--color-accent-dark);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 56px 0;
}

@media (min-width: 900px) {
  .faq-section {
    padding: 80px 0;
  }
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
}

.faq-item--open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item--open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-section {
  padding: 56px 0;
}

@media (min-width: 900px) {
  .contact-section {
    padding: 80px 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-primary);
  transition: border-color var(--transition);
  outline: none;
  display: block;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(29, 111, 164, 0.12);
}

.form-control.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--color-error);
}

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

.form-error-msg {
  font-size: 13px;
  color: var(--color-error);
  margin-top: 4px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

.form-success {
  background: var(--color-success-bg);
  border: 1px solid var(--color-success);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: none;
  color: var(--color-success);
  font-weight: 500;
}

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

.submit-btn {
  width: 100%;
  justify-content: center;
}

/* Contact Sidebar */
.contact-sidebar {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-sidebar__phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.contact-sidebar__phone:hover {
  color: var(--color-accent-dark);
}

.contact-sidebar__tagline {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.contact-info-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

/* ==========================================================================
   IMAGE PLACEHOLDERS
   ========================================================================== */

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-surface) 100%);
  border-radius: var(--radius-lg);
  width: 100%;
  min-height: 300px;
  text-align: center;
}

.img-placeholder span {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 24px;
  line-height: 1.5;
}

.img-placeholder--hero {
  min-height: 420px;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
  min-height: 400px;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .announcement-bar,
  .site-header,
  .mobile-nav,
  .hero__ctas,
  .btn,
  .trust-strip,
  .cta-section,
  .site-footer,
  .page-hero__ctas,
  .service-sidebar .btn,
  .testimonials-cta {
    display: none !important;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 24px 0;
  }
}

/* ============================================
   HERO CREATIVE OVERRIDES
   Subtle gradient bg + decorative accent arc
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eef6fc 55%, #daeaf6 100%);
}

/* Large decorative circle — accent color, very faint, top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 111, 164, 0.10) 0%, rgba(29, 111, 164, 0) 70%);
  pointer-events: none;
}

/* Second smaller circle — bottom left accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 111, 164, 0.07) 0%, rgba(29, 111, 164, 0) 70%);
  pointer-events: none;
}

/* Image placeholder — lifted card look */
.hero__image-placeholder.img-placeholder--hero {
  background: linear-gradient(145deg, var(--color-accent-light) 0%, #d0e8f5 100%);
  box-shadow: 0 20px 60px rgba(29, 111, 164, 0.15), 0 4px 16px rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  transform: rotate(1.5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__image-placeholder.img-placeholder--hero:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 28px 72px rgba(29, 111, 164, 0.18), 0 6px 20px rgba(0,0,0,0.07);
}

/* Phone link styling */
.hero__phone-link {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero__phone-link:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* ============================================
   PEACEFUL SCROLL ANIMATIONS
   ============================================ */

/* Base state — hidden before animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* Delay variants via data-delay attribute */
.animate-on-scroll[data-delay="80"]  { transition-delay: 80ms; }
.animate-on-scroll[data-delay="100"] { transition-delay: 100ms; }
.animate-on-scroll[data-delay="150"] { transition-delay: 150ms; }
.animate-on-scroll[data-delay="160"] { transition-delay: 160ms; }
.animate-on-scroll[data-delay="200"] { transition-delay: 200ms; }
.animate-on-scroll[data-delay="240"] { transition-delay: 240ms; }
.animate-on-scroll[data-delay="300"] { transition-delay: 300ms; }
.animate-on-scroll[data-delay="320"] { transition-delay: 320ms; }
.animate-on-scroll[data-delay="400"] { transition-delay: 400ms; }
.animate-on-scroll[data-delay="480"] { transition-delay: 480ms; }
.animate-on-scroll[data-delay="500"] { transition-delay: 500ms; }

/* Animated state — triggered by JS adding .animated class */
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fade-up — starts earlier, slightly faster */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.75s ease 0.2s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating animation — gentle breath for trust icons etc */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Step icon wrap — subtle float when in view */
.step__icon-wrap {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover .step__icon-wrap {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(29, 111, 164, 0.15);
}

/* Section header fade — used on .section-header when .animate-on-scroll */
.section-header.animate-on-scroll {
  transform: translateY(20px);
}

/* City pill hover — existing hover + subtle bounce */
.city-pill {
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.city-pill:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Service card — already has hover lift, smooth it out */
.service-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.3, 0.64, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

/* CTA button pulse — very subtle attention pulse on primary buttons */
@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 111, 164, 0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(29, 111, 164, 0); }
}

.btn--primary {
  animation: softPulse 3s ease-in-out infinite;
}
/* Disable pulse during hover — feels cleaner */
.btn--primary:hover {
  animation: none;
}

/* Announcement bar — subtle shimmer on the promo text */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Trust strip icon wrap entrance */
.trust-item__icon {
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.trust-item:hover .trust-item__icon {
  transform: scale(1.1);
  background-color: var(--color-accent);
}
.trust-item:hover .trust-item__icon svg {
  color: white;
}

/* Testimonial card — gentle lift on hover */
.testimonial-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Reduce motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-fade-up {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .btn--primary {
    animation: none;
  }
  .hero__video {
    display: none;
  }
  .hero__video-overlay {
    background: var(--color-surface);
  }
}

/* Real logo image in nav */
.nav__logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
@media (max-width: 1023px) {
  .nav__logo-img {
    height: 32px;
  }
}
