/* ===========================
   CargoLux — style.css
   Palette: Cream / Warm Brown / Modern
   =========================== */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE5D4;
  --cream-mid:   #E8DFC9;
  --brown:       #5C3D2E;
  --brown-dark:  #3B2215;
  --brown-mid:   #8B5E4A;
  --brown-light: #C4956A;
  --gold:        #C8963C;
  --white:       #FDFAF5;
  --text-dark:   #1E1410;
  --text-mid:    #5A4033;
  --text-light:  #9A7B6A;
  --border:      rgba(92, 61, 46, 0.15);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 32px rgba(92, 61, 46, 0.08);
  --shadow-lg:   0 12px 48px rgba(92, 61, 46, 0.14);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--brown-dark);
  line-height: 1.15;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.55rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; color: var(--brown-light); }
p { color: var(--text-mid); }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: rgba(200, 150, 60, 0.1);
  border: 1px solid rgba(200, 150, 60, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header p { margin-top: 12px; font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--brown);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--brown);
  background: rgba(92, 61, 46, 0.06);
}

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

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  color: var(--gold);
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }
.btn-nav {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem !important;
  transition: var(--transition) !important;
}
.btn-nav:hover { background: var(--brown-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-nav {
  margin-top: 8px;
  text-align: center;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--cream) 50%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(92,61,46,0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(92,61,46,0.04) 80px);
  pointer-events: none;
}
.hero-content {
  max-width: 620px;
  margin: 0 auto 0 max(24px, calc(50vw - 590px));
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 150, 60, 0.1);
  border: 1px solid rgba(200, 150, 60, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
#hero h1 {
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 1s 0.3s ease both;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.stat span { font-size: 0.8rem; color: var(--text-light); }
.stat-sep { width: 1px; height: 40px; background: var(--border); }

.hero-visual {
  position: absolute;
  right: max(24px, calc(50vw - 590px));
  bottom: 15%;
  z-index: 1;
  animation: fadeUp 1s 0.4s ease both;
}
.truck-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.truck-icon { font-size: 2rem; }
.truck-label { font-size: 0.75rem; color: var(--text-light); margin-bottom: 2px; }
.truck-date { font-weight: 600; color: var(--brown); font-size: 0.95rem; }

.hero-scroll {
  position: absolute;
  left: max(24px, calc(50vw - 590px));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--brown-light);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--brown);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; } 100% { left: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 { margin: 8px 0 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn-primary { margin-top: 12px; }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.ac-icon { font-size: 1.6rem; margin-bottom: 10px; }
.about-card h4 { margin-bottom: 8px; font-size: 1rem; }
.about-card p { font-size: 0.875rem; }

/* ─── SERVICES ─── */
#services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brown-light);
}
.sc-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 8px;
  user-select: none;
}
.sc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; margin-bottom: 16px; }
.service-card ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  transition: gap 0.2s;
}
.service-link:hover { color: var(--brown-dark); }

/* ─── HOW IT WORKS ─── */
#how { background: var(--brown-dark); }
#how .section-label { color: var(--brown-light); background: rgba(200,150,60,0.15); }
#how h2 { color: var(--cream); }
#how .section-header p { color: rgba(245,240,232,0.65); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,240,232,0.2) 20%, rgba(245,240,232,0.2) 80%, transparent);
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h4 { color: var(--cream); margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: rgba(245,240,232,0.6); }

/* ─── BOOKING ─── */
#booking { background: var(--white); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.booking-block h2 { margin: 8px 0 16px; }
.booking-block p { margin-bottom: 28px; }

.calendly-wrapper { text-align: center; }
.calendly-btn { font-size: 1rem; padding: 16px 34px; }
.calendly-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.qr-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.qr-placeholder {
  width: 220px; height: 220px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qr-placeholder img { width: 100%; height: 100%; object-fit: contain; }
.qr-double {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.qr-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.qr-item .qr-placeholder {
  width: 220px; height: 220px;
  margin: 0;
}
.qr-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0;
}
.qr-divider {
  width: 1px;
  height: 220px;
  background: var(--border);
  flex-shrink: 0;
}
.qr-caption { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.payment-icons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pi {
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  color: var(--text-mid);
}

/* ─── SERVICE PRICE ─── */
.sc-price { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.sc-price strong { font-size: 1rem; }
.sc-included { font-size: 0.78rem; color: var(--text-light); font-weight: 400; }

/* ─── ICON IMAGES ─── */
.ac-icon img, .ac-icon-img { width: 36px; height: 36px; object-fit: contain; }
.cd-icon img, .cd-icon-img { width: 24px; height: 24px; object-fit: contain; }
.btn-icon { width: 18px; height: 18px; object-fit: contain; vertical-align: middle; }
.logo-img { width: 28px; height: 28px; object-fit: contain; }
.ibadge-img { width: 18px; height: 18px; object-fit: contain; vertical-align: middle; }
.area-local-icon { width: 22px; height: 22px; object-fit: contain; vertical-align: middle; margin-right: 6px; }
.footer-address { display: flex; flex-direction: column; gap: 2px; }

/* ─── GALLERY ─── */
#gallery { background: var(--brown-dark); }
#gallery .section-label { color: var(--brown-light); background: rgba(200,150,60,0.15); border-color: rgba(200,150,60,0.3); }
#gallery h2 { color: var(--cream); }
#gallery .section-header p { color: rgba(245,240,232,0.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brown-mid);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(27,14,8,0.75));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay { transform: none; }
.gallery-overlay span { font-size: 0.85rem; font-weight: 600; color: var(--cream); letter-spacing: 0.05em; }
.gallery-note { text-align: center; margin-top: 28px; font-size: 0.85rem; color: rgba(245,240,232,0.45); }

/* ─── SERVICE AREA ─── */
#area { background: var(--white); }
.area-top { margin-bottom: 40px; }
.area-interstate {
  background: var(--brown-dark);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
}
.area-interstate h3 { color: var(--cream); margin-bottom: 8px; }
.area-interstate p { color: rgba(245,240,232,0.6); font-size: 0.9rem; margin-bottom: 20px; }
.interstate-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.ibadge {
  background: rgba(200,150,60,0.15);
  border: 1px solid rgba(200,150,60,0.35);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
}
.area-local {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.area-local h3 { margin-bottom: 8px; }
.area-local > p { font-size: 0.9rem; margin-bottom: 20px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.atag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid transparent;
}
.atag.philly { background: rgba(92,61,46,0.1); color: var(--brown); border-color: rgba(92,61,46,0.2); }
.atag.suburb { background: rgba(200,150,60,0.08); color: var(--brown-mid); border-color: rgba(200,150,60,0.2); }
.area-legend { display: flex; gap: 20px; flex-wrap: wrap; }
.area-legend span { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.philly { background: var(--brown); }
.dot.suburb { background: var(--gold); }

@media (max-width: 768px) {
  .area-interstate, .area-local { padding: 24px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}


/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--brown-dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ─── CONTACT ─── */
#contact { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin: 8px 0 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon { font-size: 1.3rem; margin-top: 2px; }
.cd-item strong { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 2px; }
.cd-item a, .cd-item span { font-size: 0.95rem; color: var(--brown); font-weight: 500; }
.cd-item span { color: var(--text-mid); font-weight: 400; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-mid);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 14px;
  font-size: 0.875rem;
  color: #2e7d32;
  font-weight: 500;
}

/* ─── FOOTER ─── */
#footer {
  background: var(--brown-dark);
  padding: 72px 24px 32px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.footer-brand .logo { color: var(--cream); margin-bottom: 12px; display: flex; }
.footer-brand .logo-icon { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; color: rgba(245,240,232,0.5); line-height: 1.6; }
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-links a, .footer-contact a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--cream); }
.footer-contact p { font-size: 0.8rem; color: rgba(245,240,232,0.35); }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(245,240,232,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--cream); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  #hero { padding: 100px 24px 60px; }
  #hero h1 { font-size: 2.8rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }

  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }

  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-block { text-align: center; }
  .calendly-wrapper { text-align: center; }

  /* QR codes stack vertically on mobile */
  .qr-double { flex-direction: column; gap: 24px; }
  .qr-divider { width: 80%; height: 1px; }
  .qr-item .qr-placeholder { width: 180px; height: 180px; }

  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 2.3rem; }
  .qr-item .qr-placeholder { width: 150px; height: 150px; }
  .booking-block p { font-size: 0.9rem; }
  .qr-card { padding: 20px 16px; }
  .payment-icons { gap: 6px; }
  .pi { font-size: 0.68rem; padding: 4px 10px; }
}