/* ═══════════════════════════════════════════
   D&D Auto Repair and Towing — Styles
   Color Palette: Emerald Green (#065f46 / #047857 / #10b981) + Cream (#fef3c7 / #fffbeb / #fefce8)
   Fonts: Space Grotesk (headings) + Inter (body)
   ═══════════════════════════════════════════ */

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

:root {
  --emerald-deep: #065f46;
  --emerald: #047857;
  --emerald-light: #10b981;
  --emerald-pale: #d1fae5;
  --cream: #fef3c7;
  --cream-light: #fffbeb;
  --cream-pale: #fefce8;
  --cream-dark: #fde68a;
  --dark: #0f1a16;
  --dark-soft: #1a2e26;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(6,95,70,.08), 0 1px 2px rgba(6,95,70,.06);
  --shadow-md: 0 4px 16px rgba(6,95,70,.1), 0 2px 6px rgba(6,95,70,.06);
  --shadow-lg: 0 12px 40px rgba(6,95,70,.12), 0 4px 12px rgba(6,95,70,.06);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--cream-pale);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ═══════════════ TYPOGRAPHY ═══════════════ */
.text-cream { color: var(--cream); }
.text-emerald { color: var(--emerald); }
.text-emerald-light { color: var(--emerald-light); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
}
.section-label--light { color: var(--cream); }
.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-light);
  flex-shrink: 0;
}
.label-dot--light { background: var(--cream-dark); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-md { padding: 12px 24px; font-size: .9rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-emerald {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(4,120,87,.35);
}
.btn-emerald:hover {
  background: var(--emerald-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,120,87,.4);
}

.btn-cream {
  background: var(--cream);
  color: var(--emerald-deep);
  box-shadow: 0 4px 14px rgba(254,243,199,.4);
}
.btn-cream:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,243,199,.5);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(254,243,199,.5);
}
.btn-outline-cream:hover {
  background: rgba(254,243,199,.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,95,70,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(254,243,199,.1);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(6,95,70,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-heading);
}
.logo--light { color: var(--cream); }

.logo-icon {
  color: var(--cream);
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo-accent { color: var(--cream-dark); }

.logo-tag {
  display: none;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .75;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(254,243,199,.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--cream);
  background: rgba(254,243,199,.1);
}
.nav-links .btn-emerald {
  margin-left: 8px;
  color: var(--emerald-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) 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(6,95,70,.92) 0%,
    rgba(4,120,87,.82) 50%,
    rgba(16,185,129,.65) 100%
  );
}

.hero-shape {
  position: absolute;
  opacity: .12;
  z-index: 1;
}
.hero-shape--circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--cream);
  top: -120px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-shape--square {
  width: 200px;
  height: 200px;
  background: var(--cream-dark);
  bottom: 15%;
  right: 8%;
  border-radius: var(--radius-lg);
  transform: rotate(35deg);
  animation: float 6s ease-in-out infinite reverse;
}
.hero-shape--triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--cream);
  top: 30%;
  right: 20%;
  opacity: .08;
  animation: spin 20s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(3deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254,243,199,.15);
  border: 1px solid rgba(254,243,199,.25);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(254,243,199,.85);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(254,243,199,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg {
  color: var(--cream-dark);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(254,243,199,.5);
  font-size: .7rem;
  font-family: var(--font-heading);
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════ SERVICES ═══════════════ */
.services {
  padding: 100px 0 0;
  background: var(--cream-pale);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--emerald) 0px,
    var(--emerald) 40px,
    var(--cream-dark) 40px,
    var(--cream-dark) 80px
  );
}

.services > .container:first-child {
  text-align: center;
  padding-bottom: 60px;
}
.services > .container:first-child .section-sub {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(6,95,70,.06);
  transition: var(--transition);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-pale);
}
.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--emerald-pale);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--emerald);
  color: var(--white);
  transform: scale(1.05);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* CTA Box */
.services-cta {
  padding: 0 0 100px;
}
.cta-box {
  position: relative;
  background: var(--emerald-deep);
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}
.cta-box-shape {
  position: absolute;
  opacity: .08;
}
.cta-box-shape.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--cream);
  top: -80px;
  right: -60px;
}
.cta-box-shape.shape-square {
  width: 140px;
  height: 140px;
  background: var(--cream-dark);
  bottom: -40px;
  left: 15%;
  border-radius: var(--radius-md);
  transform: rotate(20deg);
}
.cta-box-content {
  position: relative;
  z-index: 1;
}
.cta-box h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-box p {
  color: rgba(254,243,199,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--emerald-pale);
  bottom: -200px;
  right: -100px;
  opacity: .5;
}

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

.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-img-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-float img {
  width: 220px;
  height: 160px;
  object-fit: cover;
}
.about-stat {
  position: absolute;
  top: -20px;
  right: -16px;
  background: var(--emerald);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}
.about-stat .stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

.about-content .section-title { margin-top: 4px; }

.about-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text strong { color: var(--gray-900); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--emerald-pale);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.value-item span {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ═══════════════ WHY US ═══════════════ */
.why-us {
  padding: 100px 0;
  background: var(--emerald-deep);
  position: relative;
  overflow: hidden;
}
.why-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(16,185,129,.1);
  top: -200px;
  left: -200px;
}
.why-us > .container {
  position: relative;
  z-index: 1;
}
.why-us > .container > .section-label {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.why-us > .container > .section-title {
  text-align: center;
  margin-bottom: 56px;
}

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

.why-card {
  background: rgba(254,243,199,.07);
  border: 1px solid rgba(254,243,199,.12);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(254,243,199,.12);
  transform: translateY(-4px);
  border-color: rgba(254,243,199,.25);
}
.why-card-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream-dark);
  opacity: .4;
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .88rem;
  color: rgba(254,243,199,.7);
  line-height: 1.7;
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  padding: 100px 0;
  background: var(--cream-pale);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--cream-dark) 0px,
    var(--cream-dark) 40px,
    var(--emerald) 40px,
    var(--emerald) 80px
  );
}

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

.contact-intro {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--emerald-pale);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.contact-detail span,
.contact-detail a {
  font-size: .95rem;
  color: var(--gray-700);
}
.contact-detail a:hover { color: var(--emerald); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-link {
  display: block;
  position: relative;
}
.map-link img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,95,70,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.map-link:hover .map-overlay {
  background: rgba(6,95,70,.75);
}

/* Form */
.contact-form-wrap {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-shape {
  position: absolute;
  opacity: .06;
}
.form-shape--circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--emerald);
  top: -60px;
  right: -60px;
}
.form-shape--square {
  width: 100px;
  height: 100px;
  background: var(--cream-dark);
  bottom: 40px;
  left: -30px;
  border-radius: var(--radius-md);
  transform: rotate(25deg);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.contact-form-wrap > p {
  font-size: .92rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--cream-pale);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(4,120,87,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--emerald-pale);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.form-success p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--dark);
  color: rgba(254,243,199,.7);
}
.footer-top {
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a,
.footer-contact li {
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--cream); }
.footer-contact li svg {
  flex-shrink: 0;
  opacity: .6;
}
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(254,243,199,.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .82rem;
  opacity: .6;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(6,95,70,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    width: 100%;
    padding: 12px 16px;
  }
  .nav-links .btn-emerald {
    margin-left: 0;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }
  .nav-toggle {
    display: flex;
  }
  .logo-tag {
    display: none;
  }

  .hero-content {
    padding: 110px 0 100px;
  }
  .hero-shape--circle {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
  }
  .hero-shape--square {
    width: 100px;
    height: 100px;
    right: 5%;
  }
  .hero-shape--triangle {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-trust {
    gap: 16px;
  }

  .services { padding: 60px 0 0; }
  .services-grid {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
  .services-cta { padding: 0 0 60px; }
  .cta-box {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }

  .about { padding: 60px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images {
    max-width: 420px;
    margin: 0 auto;
  }

  .why-us { padding: 60px 0; }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact { padding: 60px 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top { padding: 48px 0 32px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .about-img-float {
    left: -10px;
    bottom: -20px;
  }
  .about-img-float img {
    width: 160px;
    height: 120px;
  }
}
