/* ========================================
   Lee County EMS Medic 12 — Stylesheet
   Classic & Elegant · Emerald + Cream
======================================== */

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

:root {
  --emerald-900: #0D3B14;
  --emerald-800: #1B5E20;
  --emerald-700: #2E7D32;
  --emerald-600: #388E3C;
  --emerald-500: #4CAF50;
  --cream-100: #FDFBF7;
  --cream-200: #F5F0E6;
  --cream-300: #EDE5D4;
  --cream-400: #E0D5C0;
  --charcoal: #1A1A1A;
  --charcoal-600: #3D3D3D;
  --charcoal-400: #6B6B6B;
  --charcoal-300: #9A9A9A;
  --white: #FFFFFF;
  --serif: 'Playfair Display', 'Georgia', serif;
  --body-serif: 'Lora', 'Georgia', serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(27, 94, 32, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(27, 94, 32, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(27, 94, 32, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--body-serif);
  color: var(--charcoal);
  background-color: var(--cream-100);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--emerald-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--emerald-500);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1.5px;
  background: var(--emerald-600);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-subtitle {
  font-family: var(--body-serif);
  font-size: 1.1rem;
  color: var(--charcoal-600);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--white);
  border-color: var(--emerald-800);
}

.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-light {
  background: var(--white);
  color: var(--emerald-800);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--cream-200);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .logo {
  color: var(--emerald-800);
}

.logo-mark {
  color: var(--white);
  transition: color var(--transition);
}

.site-header.scrolled .logo-mark {
  color: var(--emerald-800);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-primary {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-secondary {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- Navigation ---------- */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--white);
  transition: width var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.site-header.scrolled .nav-link {
  color: var(--charcoal-600);
}

.site-header.scrolled .nav-link::after {
  background: var(--emerald-700);
}

.site-header.scrolled .nav-link:hover {
  color: var(--emerald-700);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--emerald-700);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--emerald-600);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header.scrolled .nav-cta {
  color: var(--white);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  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;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 59, 20, 0.88) 0%,
    rgba(27, 94, 32, 0.80) 40%,
    rgba(46, 125, 50, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(253, 251, 247, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--cream-200);
}

.hero-headline .hero-accent {
  color: var(--cream-300);
  display: block;
}

.hero-sub {
  font-family: var(--body-serif);
  font-size: 1.125rem;
  color: rgba(253, 251, 247, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(253, 251, 247, 0.6);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
  background: var(--cream-100);
}

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

.section-header .section-eyebrow {
  padding-left: 0;
}

.section-header .section-eyebrow::before {
  display: none;
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--cream-300);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-700), var(--emerald-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(27, 94, 32, 0.08);
  color: var(--emerald-700);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--emerald-800);
  color: var(--white);
}

.service-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-desc {
  font-family: var(--body-serif);
  font-size: 0.9375rem;
  color: var(--charcoal-600);
  line-height: 1.7;
}

/* ---------- About ---------- */
.about {
  padding: 100px 0;
  background: var(--cream-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-200);
}

.about-image-accent img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--emerald-800);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience-badge .exp-number {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-family: var(--sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  line-height: 1.4;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-body {
  font-family: var(--body-serif);
  font-size: 1.0625rem;
  color: var(--charcoal-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(27, 94, 32, 0.08);
  color: var(--emerald-700);
}

.value-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.value-item span {
  font-family: var(--body-serif);
  font-size: 0.9375rem;
  color: var(--charcoal-400);
  line-height: 1.6;
}

/* ---------- Coverage ---------- */
.coverage {
  padding: 100px 0;
  background: var(--cream-100);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coverage-body {
  font-family: var(--body-serif);
  font-size: 1.0625rem;
  color: var(--charcoal-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.coverage-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
}

.coverage-list li svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

.coverage-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.coverage-map img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  color: var(--emerald-700);
  animation: pinBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -110%); }
}

/* ---------- CTA ---------- */
.cta {
  padding: 100px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-content {
  flex: 1;
  max-width: 520px;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-title em {
  font-style: italic;
  color: var(--cream-300);
}

.cta-body {
  font-family: var(--body-serif);
  font-size: 1.0625rem;
  color: rgba(253, 251, 247, 0.7);
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 0;
  background: var(--cream-200);
}

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

.contact-desc {
  font-family: var(--body-serif);
  font-size: 1.0625rem;
  color: var(--charcoal-600);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

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

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(27, 94, 32, 0.08);
  color: var(--emerald-700);
}

.contact-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-family: var(--body-serif);
  font-size: 0.9375rem;
  color: var(--charcoal-600);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--emerald-700);
  text-decoration: underline;
}

.contact-item.emergency {
  padding-top: 20px;
  border-top: 1px solid var(--cream-400);
}

.contact-item.emergency .contact-icon {
  background: rgba(27, 94, 32, 0.12);
}

/* ---------- Form ---------- */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-300);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body-serif);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream-100);
  border: 1.5px solid var(--cream-400);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-300);
}

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

.form-note {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--charcoal-300);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--emerald-800);
  margin-bottom: 8px;
}

.form-success p {
  font-family: var(--body-serif);
  font-size: 1rem;
  color: var(--charcoal-600);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(253, 251, 247, 0.7);
  padding: 72px 0 0;
}

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

.footer .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer .logo-mark {
  color: var(--white);
}

.footer-brand p {
  font-family: var(--body-serif);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.5);
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: rgba(253, 251, 247, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cream-200);
}

.footer-contact address {
  font-style: normal;
  font-family: var(--body-serif);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.5);
  margin-bottom: 12px;
}

.footer-contact p {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: rgba(253, 251, 247, 0.5);
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(253, 251, 247, 0.7);
}

.footer-contact a:hover {
  color: var(--cream-200);
}

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

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: rgba(253, 251, 247, 0.35);
}

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

  .about-grid,
  .coverage-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-accent {
    right: 0;
    bottom: -24px;
    width: 200px;
  }

  .about-image-main img {
    height: 500px;
  }

  .coverage-map img {
    height: 350px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream-100);
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-link {
    color: var(--charcoal);
    font-size: 1rem;
    padding: 10px 0;
  }

  .nav-link::after {
    background: var(--emerald-700);
  }

  .nav-cta {
    color: var(--white) !important;
    margin-top: 16px;
    text-align: center;
    width: 100%;
  }

  .hero-content {
    padding: 120px 0 100px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

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

  .service-card {
    padding: 32px 24px;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .about-image-accent {
    display: none;
  }

  .about-experience-badge {
    top: -12px;
    left: -12px;
    padding: 16px 20px;
  }
}

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
