/* ============================================================
   Panama City Beach Transmission — Spotify-Inspired Design System
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=Bebas+Neue&display=swap');

/* --- CSS Variables --- */
:root {
  /* Backgrounds */
  --bg-base: #121212;
  --bg-surface: #181818;
  --bg-elevated: #1f1f1f;
  --bg-card: #252525;
  --bg-card-alt: #272727;

  /* Text */
  --text-base: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #cbcbcb;
  --text-light: #fdfdfd;

  /* Brand */
  --accent: #1ed760;
  --accent-border: #1db954;

  /* Semantic */
  --text-negative: #f3727f;
  --text-warning: #ffa42b;
  --text-info: #539df5;

  /* Borders */
  --border: #4d4d4d;
  --border-light: #7c7c7c;

  /* Shadows */
  --shadow-heavy: rgba(0,0,0,0.5) 0px 8px 24px;
  --shadow-medium: rgba(0,0,0,0.3) 0px 8px 8px;
  --shadow-inset: rgb(18,18,18) 0px 1px 0px, rgb(124,124,124) 0px 0px 0px 1px inset;

  /* Typography */
  --font-display: 'Bebas Neue', 'Helvetica Neue', helvetica, arial, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', helvetica, arial, sans-serif;

  /* Spacing (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 20px;
  --radius-pill: 500px;
  --radius-full: 9999px;
  --radius-circle: 50%;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-base);
  color: var(--text-base);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(77, 77, 77, 0.4);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--radius-circle);
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-base);
  background-color: var(--bg-elevated);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000000;
  background-color: var(--accent);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover {
  background-color: #1fdf64;
  transform: scale(1.02);
}

.nav-cta:active {
  transform: scale(0.98);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-base);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--space-6);
  flex-direction: column;
  gap: var(--space-2);
  box-shadow: var(--shadow-heavy);
}

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

.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-base);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

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

.mobile-nav-cta {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000000;
  background-color: var(--accent);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
  transition: background-color 0.2s ease;
}

.mobile-nav-cta:hover {
  background-color: #1fdf64;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-content {
  padding-top: 64px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 18, 0.85) 0%,
    rgba(18, 18, 18, 0.6) 50%,
    rgba(30, 215, 96, 0.08) 100%
  );
  z-index: 1;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg-base), transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text-base);
  margin-bottom: var(--space-5);
}

.hero-text h1 .accent-word {
  color: var(--accent);
}

.hero-subheadline {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000000;
  background-color: var(--accent);
  padding: 14px var(--space-8);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(30, 215, 96, 0.25);
}

.btn-primary:hover {
  background-color: #1fdf64;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 215, 96, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-base);
  background: transparent;
  padding: 14px var(--space-8);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--text-base);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: var(--radius-circle);
  flex-shrink: 0;
}

/* Hero form card */
.hero-form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(77, 77, 77, 0.5);
}

.form-card-header {
  margin-bottom: var(--space-5);
}

.form-card-header h2 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-base);
  margin-bottom: var(--space-1);
}

.form-card-header p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-elevated);
  color: var(--text-base);
  border: none;
  box-shadow: var(--shadow-inset);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: box-shadow 0.2s ease;
  width: 100%;
  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' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b3b3b3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-field select option {
  background: var(--bg-elevated);
  color: var(--text-base);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: rgb(18,18,18) 0px 1px 0px, rgb(30,215,96) 0px 0px 0px 1px inset;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--border-light);
}

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

.form-submit {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000000;
  background-color: var(--accent);
  padding: 14px var(--space-5);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  margin-top: var(--space-2);
  box-shadow: 0 4px 16px rgba(30, 215, 96, 0.2);
}

.form-submit:hover {
  background-color: #1fdf64;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 215, 96, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-disclaimer {
  font-size: 11px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: var(--space-1);
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.form-success h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   TRUST STRIP (below hero)
   ============================================================ */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
}

.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-base);
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: var(--space-3) 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text-base);
  margin-bottom: var(--space-4);
}

.section-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  border: 1px solid rgba(77, 77, 77, 0.3);
}

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

.service-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,18,18,0.8) 0%, transparent 60%);
}

.service-card-body {
  padding: var(--space-5);
}

.service-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-base);
  margin-bottom: var(--space-2);
}

.service-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(30, 215, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-10);
}

.promo-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(30, 215, 96, 0.1);
  border: 1px solid rgba(30, 215, 96, 0.3);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
}

.promo-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--text-base);
}

.promo-subtext {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

/* ============================================================
   HOURS & LOCATION
   ============================================================ */
.hours-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.info-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid rgba(77, 77, 77, 0.3);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-base);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.info-card h3 svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(77, 77, 77, 0.3);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: var(--space-2) 0;
  font-size: 14px;
}

.hours-table td:first-child {
  color: var(--text-secondary);
  font-weight: 400;
}

.hours-table td:last-child {
  color: var(--text-base);
  font-weight: 700;
  text-align: right;
}

.hours-table tr.today td {
  color: var(--accent);
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.address-line {
  font-size: 15px;
  color: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
}

.address-line strong {
  font-weight: 700;
}

.service-area-text {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--space-2);
}

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-hero {
  padding: var(--space-3) 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-12);
  align-items: start;
  margin-top: var(--space-10);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 77, 77, 0.3);
  transition: border-color 0.2s ease;
}

.contact-method:hover {
  border-color: rgba(30, 215, 96, 0.3);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-method-text a,
.contact-method-text span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-base);
  transition: color 0.2s ease;
  display: block;
}

.contact-method-text a:hover {
  color: var(--accent);
}

.contact-method-text .sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 2px;
}

.map-placeholder {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 77, 77, 0.3);
  overflow: hidden;
  margin-top: var(--space-5);
}

.map-placeholder iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  padding: var(--space-3) 0;
  position: relative;
}

.services-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-10);
  aspect-ratio: 21/8;
}

.services-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.8);
}

.services-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,18,18,0.9) 0%, transparent 60%);
}

.services-hero-img-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: var(--space-12);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.service-row {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 77, 77, 0.3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: border-color 0.25s ease;
}

.service-row:hover {
  border-color: rgba(30, 215, 96, 0.25);
}

.service-row-img {
  position: relative;
  overflow: hidden;
}

.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.4s ease;
}

.service-row:hover .service-row-img img {
  transform: scale(1.05);
}

.service-row-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
}

.service-row-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-base);
}

.service-row-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.service-row-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 215, 96, 0.1);
  border: 1px solid rgba(30, 215, 96, 0.2);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
  margin-top: var(--space-2);
}

/* ============================================================
   TOWING CALLOUT
   ============================================================ */
.towing-callout {
  background: var(--bg-card);
  border: 1px solid rgba(30, 215, 96, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.towing-callout-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-base);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.towing-callout-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--space-3) 0 var(--space-12);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
}

.footer-brand h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-base);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s ease;
}

.footer-phone:hover {
  color: #1fdf64;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--text-base);
}

.footer-bottom {
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--border-light);
  line-height: 1.6;
  max-width: 600px;
}

.footer-copy {
  font-size: 12px;
  color: var(--border-light);
  white-space: nowrap;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: var(--space-3) 0;
  overflow: hidden;
}

/* Full-width hero text on subpage heroes (services + contact) */
.page-hero .section-body { max-width: 100%; }
.page-hero .section-title { font-size: clamp(40px, 6vw, 72px); }

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(30, 215, 96, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-secondary); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anim-fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    max-width: 560px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-text h1 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

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

  .hours-location {
    grid-template-columns: 1fr;
  }

  .promo-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .towing-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .service-row-img {
    aspect-ratio: 16/6;
  }

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

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 var(--space-4);
  }

  .nav-logo span:not(.nav-logo-dot) {
    font-size: 13px;
  }

  .section-inner {
    padding: 0 var(--space-4);
  }

  .hero-content {
    padding: var(--space-12) var(--space-4);
  }
}
