/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════ */
:root {
  --dark: #2a2a2a;
  --dark-deep: #1a1a1a;
  --dark-card: #333333;
  --lime: #bdd917;
  --lime-light: #d1ec2d;
  --lime-glow: rgba(189, 217, 23, 0.15);
  --lime-shadow: rgba(189, 217, 23, 0.25);
  --off-white: #f7f7f5;
  --white: #ffffff;
  --muted: #8a8a8a;
  --muted-light: #b0b0b0;
  --border-light: rgba(42, 42, 42, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 2px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 1px 2px rgba(0,0,0,0.06), 0 16px 40px rgba(0,0,0,0.12);
  --shadow-elevated: 0 1px 3px rgba(0,0,0,0.08), 0 20px 60px rgba(0,0,0,0.12);
  --shadow-medium: 0 4px 6px rgba(0,0,0,0.05), 0 24px 64px -12px rgba(42,42,42,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --section-gap: clamp(80px, 10vw, 120px);
  --container: min(1200px, 90vw);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
:where(#rt-v2) *, :where(#rt-v2) *::before, :where(#rt-v2) *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
}

#rt-v2 {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: clip;
}

:where(#rt-v2) img { max-width: 100%; height: auto; display: block; }
:where(#rt-v2) a { text-decoration: none; color: inherit; }
:where(#rt-v2) button { cursor: pointer; border: none; font-family: inherit; }
:where(#rt-v2) input, :where(#rt-v2) select { font-family: inherit; }
:where(#rt-v2) ul { list-style: none; }
.container { width: var(--container); margin: 0 auto; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   HERO (with background photo)
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 180px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}
.hero::before { display: none; }
.hero::after { display: none; }
.hero-content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.85), 0 0 60px rgba(0,0,0,0.5);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(189,217,23,0.1);
  border: 1px solid rgba(189,217,23,0.2);
  border-radius: var(--radius-pill);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
}
.hero h1 .text-lime { color: var(--lime); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--white);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 4px 16px var(--lime-shadow), 0 0 40px rgba(189,217,23,0.25);
}
.btn-primary:hover {
  background: var(--lime-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--lime-shadow), 0 0 60px rgba(189,217,23,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-dark { background: var(--dark); color: var(--lime); }
.btn-dark:hover { background: var(--dark-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-dark-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-dark-outline:hover { background: var(--dark); color: var(--white); }
.btn svg { width: 18px; height: 18px; }

.trust-row { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 16px 28px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item .stars { color: var(--lime); letter-spacing: 2px; }
.trust-item svg { width: 18px; height: 18px; color: var(--lime); }

.credentials-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.credentials-row img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.credentials-row img:hover { opacity: 1; }
.hero-glow { display: none; }

/* ═══════════════════════════════════════
   LEAD CAPTURE FORM
   ═══════════════════════════════════════ */
.form-section {
  position: relative;
  z-index: 10;
  margin-top: -100px;
  padding-bottom: var(--section-gap);
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-elevated);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--lime-light));
  border-radius: 0 0 4px 4px;
}
.form-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 8px;
}
.form-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select {
  padding: 14px 16px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-glow);
}
.form-field input::placeholder { color: var(--muted); }
.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--dark);
  color: var(--lime);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--dark-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.form-submit svg { width: 18px; height: 18px; }
.form-trust {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-trust svg { width: 14px; height: 14px; color: var(--lime); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success svg { width: 64px; height: 64px; color: var(--lime); margin: 0 auto 16px; display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; color: var(--dark); }
.form-success p { color: var(--muted); font-size: 1rem; }
.form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: none;
}
.form-error.visible { display: block; }

/* ═══════════════════════════════════════
   TEAM PHOTO BANNER
   ═══════════════════════════════════════ */
.team-banner {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}
.team-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

/* ═══════════════════════════════════════
   SECTION HEADER PATTERN
   ═══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-label-light { color: var(--lime); }
.section-label-light::before { background: var(--lime); }
.section-title-light { color: var(--white); }
.section-desc-light { color: var(--muted-light); }

/* ═══════════════════════════════════════
   SERVICES GRID (with photos)
   ═══════════════════════════════════════ */
.services { padding: 0 0 var(--section-gap); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px 28px 28px; position: relative; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -24px; left: 28px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--off-white);
}
.service-icon svg { width: 22px; height: 22px; color: var(--dark); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 28px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover { gap: 10px; color: var(--lime); }
.service-link svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════ */
.why { padding: var(--section-gap) 0; background: var(--white); overflow: hidden; }
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.why-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-elevated);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.google-badge {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  border: 1px solid rgba(0,0,0,0.04);
}
.google-badge img { height: 40px; width: auto; }
.google-badge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  line-height: 1.3;
}
.google-badge-text small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
}
.why-content .section-title { margin-bottom: 32px; }
.why-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: none;
}
.value-props { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.value-prop { display: flex; gap: 16px; align-items: flex-start; }
.value-prop-icon {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: var(--lime-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-prop-icon svg { width: 18px; height: 18px; color: var(--dark); }
.value-prop h3,
.value-prop h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.value-prop p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════ */
.process { padding: var(--section-gap) 0; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-desc { margin: 0 auto; max-width: 680px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--lime-light), var(--lime), var(--lime-light));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(42,42,42,0.2);
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--lime-glow);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-step p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════ */
.video-section {
  padding: var(--section-gap) 0;
  background: var(--white);
}
.video-header { text-align: center; margin-bottom: 48px; }
.video-header .section-desc { margin: 0 auto; }
.video-main {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(0,0,0,0.04);
}
.video-main .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-main .video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.shorts-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.short-card {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}
.short-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.short-card-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}
.short-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.3;
}
.short-card-views {
  font-size: 0.75rem;
  color: var(--lime);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.short-card-views svg { width: 14px; height: 14px; flex-shrink: 0; }
.short-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.short-card .short-embed {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 9/16;
}
.short-card .short-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ═══════════════════════════════════════
   STATS
   ═══════════════════════════════════════ */
.stats {
  padding: var(--section-gap) 0;
  background: var(--dark-deep);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(189,217,23,0.02) 80px, rgba(189,217,23,0.02) 81px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-accent { color: var(--lime); }
.stat-label { color: var(--muted-light); font-size: 0.95rem; font-weight: 400; }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}
.testimonials-header { text-align: center; margin-bottom: 16px; }
.testimonials-header .section-desc { margin: 0 auto; }
.google-review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.google-review-badge img { height: 32px; width: auto; max-width: 180px; }
.google-review-badge span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; color: #facc15; }
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lime-glow);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-loc { font-size: 0.8rem; color: var(--muted); }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq { padding: var(--section-gap) 0; background: var(--white); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  transition: color 0.2s ease;
}
.faq-question:hover span { color: var(--lime); }
.faq-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon svg { width: 14px; height: 14px; color: var(--dark); transition: transform 0.3s ease; }
.faq-item.open .faq-icon { background: var(--lime-glow); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
}
.faq-answer p { padding: 0 0 24px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ═══════════════════════════════════════
   SERVICE AREAS (with tabs)
   ═══════════════════════════════════════ */
.service-areas {
  padding: var(--section-gap) 0;
  background: var(--dark-deep);
}
.service-areas-header { text-align: center; margin-bottom: 48px; }

/* Service Areas Tabs */
.service-areas-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.service-areas-tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
  color: var(--muted-light);
  border: 1px solid rgba(255,255,255,0.08);
}
.service-areas-tab:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.service-areas-tab.active {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.region {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s ease;
}
.region:hover { border-color: rgba(189,217,23,0.2); }
.region-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--lime);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.region-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.region-cities a {
  font-size: 0.8rem;
  color: var(--muted-light);
  transition: color 0.2s ease;
  line-height: 1.8;
  white-space: nowrap;
}
.region-cities a:hover { color: var(--lime); }

/* Region toggle for mobile */
.region-toggle {
  display: none;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.region-toggle .region-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.region-toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.region.collapsed .region-cities { display: none; }
.region.collapsed .region-toggle-icon { transform: rotate(-90deg); }

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  padding: var(--section-gap) 0;
  background: #d1ec2d;
  position: relative;
  overflow: hidden;
}
.final-cta-content { position: relative; text-align: center; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.final-cta p { color: rgba(42,42,42,0.7); font-size: 1.1rem; margin-bottom: 36px; }
.final-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER V2
   ═══════════════════════════════════════ */
.rt-footer {
  background: var(--dark-deep);
  color: var(--white);
  font-family: var(--font-body);
}
.footer-map-row {
  width: 100%;
  line-height: 0;
}
.footer-map-row iframe {
  display: block;
  width: 100%;
  height: 280px;
  filter: grayscale(0.3);
}
.rt-footer a { color: var(--muted-light); transition: color 0.2s ease; }
.rt-footer a:hover { color: var(--lime); }

.footer-blog-row {
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-blog-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--lime);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.footer-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.footer-blog-card {
  display: block;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.footer-blog-card:hover {
  border-color: rgba(189,217,23,0.2);
  transform: translateY(-2px);
}
.footer-blog-card-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
}
.footer-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-blog-card-body { padding: 14px 16px; }
.footer-blog-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.footer-blog-card-date {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--lime); }
.footer-brand-desc {
  color: var(--muted-light);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
  background: var(--lime);
  transform: translateY(-2px);
}
.footer-social a:hover svg { color: var(--dark); }
.footer-social svg { width: 16px; height: 16px; color: var(--muted-light); transition: color 0.3s ease; }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a svg { width: 14px; height: 14px; color: var(--lime); flex-shrink: 0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--lime); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; color: var(--muted-light); line-height: 1.5; }
.footer-contact-item a { font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-copy {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   BLOG TEMPLATES
   ═══════════════════════════════════════ */
.blog-hero {
  background: var(--dark-deep);
  padding: 40px 0 60px;
  text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.blog-hero p {
  color: var(--muted-light);
  font-size: 1.05rem;
}

.blog-content {
  padding: var(--section-gap) 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-title a { transition: color 0.2s ease; }
.blog-card-title a:hover { color: var(--lime); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Single blog post */
.single-hero {
  background: var(--dark-deep);
  padding: 40px 0 60px;
}
.single-hero .container { max-width: 800px; }
.single-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--muted-light);
}
.single-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
}
.single-featured {
  max-width: 800px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
}
.single-featured img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}
.single-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 var(--section-gap);
}
.single-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  margin: 40px 0 16px;
}
.single-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin: 32px 0 12px;
}
.single-content p {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.single-content ul, .single-content ol {
  margin: 0 0 20px 24px;
  color: var(--dark);
  line-height: 1.8;
}
.single-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}
.single-content blockquote {
  border-left: 4px solid var(--lime);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.single-content blockquote p { color: var(--muted); font-style: italic; margin-bottom: 0; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.pagination a {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.pagination a:hover {
  background: var(--lime);
  color: var(--dark);
}
.pagination .current {
  background: var(--dark);
  color: var(--lime);
}

/* ═══════════════════════════════════════
   CITY/SERVICE PAGE HERO VARIANT
   ═══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 80px 0 80px;
  background: var(--dark-deep);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 560px;
}

/* Content section for city/service pages */
.page-content-section {
  padding: var(--section-gap) 0;
}
.page-content-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.page-content-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { max-height: 400px; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .shorts-grid { gap: 16px; }
  .footer-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 40px 0 160px; min-height: auto; }
  .hero-bg img { object-position: 50% 15%; }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .process-steps::before { display: none; }
  .process-header { margin-bottom: 40px; }
  .process-header .section-desc { font-size: 0.95rem; }
  .process-step {
    text-align: left;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
  }
  .process-step .step-number {
    width: 48px; height: 48px;
    font-size: 1.1rem;
    margin: 0 0 16px 0;
  }
  .process-step .step-number::after { inset: -3px; }
  .process-step h3 { font-size: 1rem; }
  .process-step p { font-size: 0.85rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 16px; }
  .regions-grid { grid-template-columns: 1fr; }
  .credentials-row img { height: 36px; }
  .google-badge { right: 8px; bottom: -16px; }
  .shorts-grid { grid-template-columns: 1fr; gap: 14px; }
  .short-card-info { padding: 16px; }
  .short-card .short-embed { width: 180px; }
  .footer-blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .region-toggle { display: block; }
  .service-areas-tabs { gap: 6px; }
  .service-areas-tab { padding: 10px 16px; font-size: 0.8rem; }

  /* Why Choose Us - mobile */
  .why { padding: clamp(48px, 8vw, 80px) 0; }
  .why-content .section-title { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 12px; }
  .why-content .section-desc { margin-bottom: 28px; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
  .value-props { gap: 0; margin-bottom: 28px; }
  .value-prop {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .value-prop:last-child { border-bottom: none; }
  .value-prop-icon { width: 32px; height: 32px; min-width: 32px; flex-shrink: 0; margin-top: 2px; }
  .value-prop-icon svg { width: 16px; height: 16px; }
  .value-prop h4,
  .value-prop h3 { font-size: 0.95rem; margin-bottom: 4px; }
  .value-prop p { font-size: 0.82rem; line-height: 1.55; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; justify-content: center; }
  .credentials-row { gap: 16px; }
  .credentials-row img { height: 32px; }
  .short-card .short-embed { width: 150px; }
  .short-card-info { padding: 12px; }
  .short-card-title { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════
   CITY/SERVICE PAGE CONTENT REFINEMENTS
   Mobile progressive disclosure
   ═══════════════════════════════════════ */

/* Lead paragraph - first sentence emphasis */
.lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* City introduction section */
.city-intro {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}
.city-intro .intro-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.city-intro .intro-body p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.city-intro .intro-body .lead-text {
  color: var(--dark);
}

/* Mobile progressive disclosure */
@media (max-width: 768px) {
  .text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .text-clamp.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .read-more-toggle {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lime);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    font-family: var(--font-body);
  }

  /* City intro: 4-line clamp */
  .city-intro .text-clamp {
    -webkit-line-clamp: 4;
  }
  /* Service/benefit cards: 2-line clamp */
  .service-card .text-clamp,
  .value-prop .text-clamp {
    -webkit-line-clamp: 2;
  }
}

/* ═══════════════════════════════════════
   TOUCH DEVICE: disable hover transforms
   Fixes double-tap issue on mobile
   ═══════════════════════════════════════ */
@media (hover: none) {
  .btn-primary:hover,
  .btn-dark:hover,
  .btn-dark-outline:hover,
  .btn-ghost:hover,
  .form-submit:hover,
  .service-card:hover,
  .short-card:hover,
  .testimonial-card:hover,
  .footer-blog-card:hover,
  .footer-social a:hover,
  .blog-card:hover,
  .pagination a:hover {
    transform: none;
  }
  .service-card:hover .service-card-img img,
  .blog-card:hover .blog-card-img img {
    transform: none;
  }
  .service-card:hover::after {
    transform: scaleX(0);
  }
}
