/* ============================================================
   BIG DOG LOGISTICS GROUP — PET TRANSPORT
   Shared stylesheet for all /pets/ pages
   ============================================================ */

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

:root {
  --accent: #e85c2b;
  --accent-dark: #c44a1e;
  --cream: #fdf8f3;
  --warm-mid: #f7f0e8;
  --warm-border: rgba(232,92,43,0.18);
  --text-dark: #1c1410;
  --text-mid: #5a4a3a;
  --text-light: #9a8878;
  --black: #0d0d0d;
  --white: #f5f3ee;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(253,248,243,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-border);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.nav-logo-top { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dark); }
.nav-logo-sub { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; }
nav ul a { font-size: 0.85rem; font-weight: 400; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
nav ul a:hover { color: var(--accent); }
nav ul a.active { color: var(--accent); font-weight: 500; }
.nav-cta { background: var(--accent) !important; color: white !important; padding: 0.5rem 1.25rem; border-radius: 100px; font-weight: 500 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--accent-dark) !important; }
.nav-back { font-size: 0.78rem; color: var(--text-light); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; }
.nav-back:hover { color: var(--accent); }

/* ── ART BANNER ── */
.art-banner {
  width: 100%; padding-top: 72px;
  background: var(--cream);
  display: flex; justify-content: center; align-items: flex-end;
  overflow: hidden;
}
.art-banner img {
  width: 100%; max-width: 1280px; height: auto;
  display: block; object-fit: contain;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 3.5rem;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--warm-mid); border: 1px solid var(--warm-border);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.75rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem; width: fit-content;
}
.hero-badge::before { content: '🐾'; font-size: 0.85rem; }
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  line-height: 1.05; color: var(--text-dark); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: var(--text-mid); max-width: 420px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--warm-border);
}
.trust-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--text-dark); line-height: 1; }
.trust-num span { color: var(--accent); }
.trust-label { font-size: 0.75rem; color: var(--text-light); font-weight: 400; margin-top: 0.15rem; }
.trust-divider { width: 1px; height: 36px; background: var(--warm-border); }

/* ── HERO PHOTO GRID ── */
.hero-right {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 6px; padding: 6px 6px 6px 0; padding-top: calc(72px + 6px);
}
.photo-cell {
  position: relative; overflow: hidden; border-radius: 12px;
  background: var(--warm-mid);
}
.photo-cell:first-child { grid-row: span 2; border-radius: 16px; }
.photo-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.photo-cell:hover img { transform: scale(1.04); }
.photo-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(253,248,243,0.92); backdrop-filter: blur(8px);
  border-radius: 100px; padding: 0.3rem 0.85rem;
  font-size: 0.72rem; font-weight: 500; color: var(--text-dark);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 3rem; min-height: 200px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: white;
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--warm-border); color: var(--text-mid);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-warm {
  background: var(--accent); color: white;
  padding: 1rem 2.25rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-warm:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-white {
  background: white; color: var(--accent);
  padding: 1rem 2.25rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none; white-space: nowrap;
  transition: opacity 0.2s; display: inline-block;
}
.btn-white:hover { opacity: 0.9; }

/* ── SECTION SHARED ── */
.section-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); display: block; }
.section-title {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1;
  color: var(--text-dark); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 1rem; font-weight: 300; color: var(--text-mid);
  line-height: 1.7; max-width: 540px; margin-bottom: 3.5rem;
}

/* ── SERVICES OVERVIEW ── */
.services-overview { padding: 6rem 3.5rem; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--cream); border: 1px solid var(--warm-border);
  border-radius: 16px; padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(232,92,43,0.1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1.25rem; display: block; }
.service-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.25rem; }
.card-link { font-size: 0.82rem; font-weight: 500; color: var(--accent); display: flex; align-items: center; gap: 0.35rem; }

/* ── WHY US ── */
.why { padding: 6rem 3.5rem; background: var(--cream); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-photo {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(145deg, #fde8d8, #f9c4a0);
}
.why-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.why-photo-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(253,248,243,0.95); backdrop-filter: blur(8px);
  border-radius: 12px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.why-photo-badge-icon { font-size: 1.75rem; }
.why-photo-badge strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.why-photo-badge span { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-dot {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; margin-top: 2px;
}
.why-item strong { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.2rem; }
.why-item p { font-size: 0.86rem; font-weight: 300; color: var(--text-mid); line-height: 1.6; }

/* ── PHOTO STRIP ── */
.photo-strip { padding: 0 3.5rem 6rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.strip-cell { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.strip-cell:nth-child(2) { margin-top: 2rem; }
.strip-cell:nth-child(4) { margin-top: 1.5rem; }
.strip-cell-bg {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-size: 4rem; transition: transform 0.5s;
}
.strip-cell:hover .strip-cell-bg { transform: scale(1.04); }

/* ── REVIEWS ── */
.reviews { padding: 6rem 3.5rem; background: white; overflow: hidden; }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.reviews-nav { display: flex; gap: 0.75rem; }
.reviews-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--warm-border); background: transparent;
  color: var(--text-mid); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.reviews-nav button:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,92,43,0.05); }
.reviews-track-wrap { overflow: hidden; }
.reviews-track { display: flex; gap: 1.5rem; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--cream); border: 1px solid var(--warm-border);
  border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.review-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 0.1em; }
.review-text { font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: var(--text-dark); line-height: 1.7; flex: 1; }
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-author strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
.review-author span { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }
.review-source {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 100px;
  background: var(--warm-mid); color: var(--accent); border: 1px solid var(--warm-border);
}
.reviews-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.reviews-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--warm-border); cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.reviews-dots span.active { background: var(--accent); transform: scale(1.4); }

/* ── CTA BAND ── */
.cta-band {
  margin: 0 3.5rem 6rem; border-radius: 24px;
  background: var(--text-dark); padding: 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-band h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); line-height: 1.15; }
.cta-band h2 em { color: var(--accent); font-style: italic; }
.cta-band p { font-size: 0.9rem; color: rgba(245,243,238,0.55); margin-top: 0.5rem; font-weight: 300; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 10rem 3.5rem 5rem; background: white; border-bottom: 1px solid var(--warm-border); }
.page-hero h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.05; color: var(--text-dark); margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { font-size: 1rem; font-weight: 300; color: var(--text-mid); max-width: 560px; line-height: 1.75; }

/* ── SERVICE BLOCKS (services page) ── */
.service-block {
  padding: 5rem 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.service-block:nth-child(even) { background: white; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; position: relative;
}
.service-visual-label {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(253,248,243,0.9); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 0.3rem 1rem;
  font-size: 0.72rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.06em; text-transform: uppercase;
}
.service-tag {
  display: inline-block; background: var(--warm-mid);
  border: 1px solid var(--warm-border); border-radius: 100px;
  padding: 0.25rem 0.85rem; font-size: 0.72rem; font-weight: 500;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.service-content h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.15; color: var(--text-dark); margin-bottom: 1rem; }
.service-content h2 em { font-style: italic; color: var(--accent); }
.service-content p { font-size: 0.95rem; font-weight: 300; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--text-mid); font-weight: 400; }
.feature-item::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* ── PROCESS (services page) ── */
.process { padding: 6rem 3.5rem; background: var(--text-dark); }
.process h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--cream); margin-bottom: 0.5rem; }
.process h2 em { font-style: italic; color: var(--accent); }
.process-sub { font-size: 0.95rem; color: rgba(253,248,243,0.5); font-weight: 300; margin-bottom: 3.5rem; max-width: 500px; line-height: 1.7; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(232,92,43,0.3); }
.process-step { padding: 0 1.5rem; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.process-step h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--cream); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.84rem; color: rgba(253,248,243,0.5); font-weight: 300; line-height: 1.6; }

/* ── FAQ (services page) ── */
.faq { padding: 6rem 3.5rem; background: white; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.faq-item { background: var(--cream); border: 1px solid var(--warm-border); border-radius: 16px; padding: 1.75rem; }
.faq-item h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.faq-item p { font-size: 0.87rem; color: var(--text-mid); font-weight: 300; line-height: 1.65; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 10rem 3.5rem 5rem; background: white; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-hero h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.05; color: var(--text-dark); margin-bottom: 1.25rem; }
.about-hero h1 em { font-style: italic; color: var(--accent); }
.about-hero p { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.about-hero-visual { border-radius: 24px; background: linear-gradient(145deg, #fde8d8, #f9c4a0); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 8rem; position: relative; }
.hero-visual-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: rgba(253,248,243,0.95); border-radius: 14px; padding: 1.1rem 1.25rem; display: flex; justify-content: space-around; }
.badge-stat { text-align: center; }
.badge-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--text-dark); display: block; line-height: 1; }
.badge-num span { color: var(--accent); }
.badge-label { font-size: 0.72rem; color: var(--text-light); font-weight: 300; display: block; margin-top: 0.15rem; }
.badge-divider { width: 1px; background: var(--warm-border); }
.story { padding: 6rem 3.5rem; background: var(--cream); }
.story-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; }
.story-sidebar h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2rem; color: var(--text-dark); line-height: 1.2; margin-top: 0.5rem; }
.story-sidebar h2 em { font-style: italic; color: var(--accent); }
.story-body p { font-size: 1rem; font-weight: 300; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; }
.story-body p strong { color: var(--text-dark); font-weight: 500; }
.pull-quote { border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 2.5rem 0; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.2rem; color: var(--text-dark); line-height: 1.6; }
.values { padding: 6rem 3.5rem; background: white; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--cream); border: 1px solid var(--warm-border); border-radius: 20px; padding: 2.25rem; }
.value-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.value-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; font-weight: 300; color: var(--text-mid); line-height: 1.65; }
.credentials { padding: 5rem 3.5rem; background: var(--text-dark); }
.credentials h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--cream); margin-bottom: 2.5rem; }
.credentials h2 em { font-style: italic; color: var(--accent); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cred-item { background: rgba(245,243,238,0.05); border: 1px solid rgba(245,243,238,0.08); border-radius: 16px; padding: 1.75rem; }
.cred-item h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cream); margin-bottom: 0.5rem; }
.cred-item p { font-size: 0.84rem; color: rgba(253,248,243,0.45); font-weight: 300; line-height: 1.6; }
.cred-badge { display: inline-block; background: var(--accent); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 100px; margin-bottom: 0.85rem; }

/* ── PRICING PAGE ── */
.estimator-section { padding: 5rem 3.5rem; background: var(--cream); }
.estimator-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
.estimator-card { background: white; border: 1px solid var(--warm-border); border-radius: 24px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(232,92,43,0.06); }
.estimator-card h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.6rem; color: var(--text-dark); margin-bottom: 0.35rem; }
.estimator-card > p { font-size: 0.88rem; color: var(--text-light); font-weight: 300; margin-bottom: 2rem; }
.field { margin-bottom: 1.5rem; }
.field label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.field input, .field select { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--warm-border); border-radius: 10px; background: var(--cream); color: var(--text-dark); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s; appearance: none; }
.field input:focus, .field select:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.addon-group { margin-bottom: 1.75rem; }
.addon-group label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.75rem; }
.addon-options { display: flex; flex-direction: column; gap: 0.5rem; }
.addon-option { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; border: 1.5px solid var(--warm-border); border-radius: 10px; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: var(--cream); }
.addon-option:hover { border-color: var(--accent); }
.addon-option.selected { border-color: var(--accent); background: rgba(232,92,43,0.05); }
.addon-label { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-dark); }
.addon-icon { font-size: 1.1rem; }
.addon-price { font-size: 0.82rem; color: var(--text-light); font-weight: 400; }
.estimate-btn { width: 100%; padding: 1rem; border-radius: 100px; background: var(--accent); color: white; border: none; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.estimate-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.result-panel { display: flex; flex-direction: column; gap: 1.5rem; }
.result-card { background: white; border: 1px solid var(--warm-border); border-radius: 20px; padding: 2rem; text-align: center; opacity: 0.4; transition: opacity 0.4s; }
.result-card.active { opacity: 1; }
.result-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.result-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3.5rem; color: var(--text-dark); line-height: 1; }
.result-price span { color: var(--accent); font-size: 2rem; }
.result-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.5rem; font-weight: 300; line-height: 1.5; }
.result-breakdown { text-align: left; margin-top: 1.25rem; border-top: 1px solid var(--warm-border); padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 0.84rem; }
.breakdown-row span:first-child { color: var(--text-mid); font-weight: 300; }
.breakdown-row span:last-child { color: var(--text-dark); font-weight: 500; }
.info-card { background: var(--warm-mid); border: 1px solid var(--warm-border); border-radius: 20px; padding: 1.75rem; }
.info-card h4 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.info-list { display: flex; flex-direction: column; gap: 0.5rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.84rem; color: var(--text-mid); font-weight: 300; line-height: 1.5; }
.info-item::before { content: '•'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.book-cta-card { background: var(--accent); border-radius: 20px; padding: 1.75rem; text-align: center; }
.book-cta-card p { font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 300; margin-bottom: 1rem; }
.rate-table-section { padding: 6rem 3.5rem; background: white; }
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.rate-card { border: 1.5px solid var(--warm-border); border-radius: 16px; padding: 1.75rem; text-align: center; background: var(--cream); }
.rate-card.featured { border-color: var(--accent); background: white; box-shadow: 0 8px 32px rgba(232,92,43,0.12); }
.rate-zone { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.5rem; }
.rate-range { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.rate-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--accent); line-height: 1; }
.rate-price sub { font-size: 1rem; font-weight: 700; }
.rate-desc { font-size: 0.8rem; color: var(--text-light); font-weight: 300; margin-top: 0.5rem; line-height: 1.4; }
.rate-note { font-size: 0.82rem; color: var(--text-light); font-weight: 300; margin-top: 2rem; line-height: 1.6; }
.rate-note strong { color: var(--text-mid); font-weight: 500; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(28,20,16,0.92); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(253,248,243,0.12); border: 1px solid rgba(253,248,243,0.2); color: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(253,248,243,0.22); }
.photo-thumb { cursor: zoom-in; transition: opacity 0.2s, transform 0.2s; }
.photo-thumb:hover { opacity: 0.88; transform: scale(1.03); }

/* ── BOOKING / PRETRIP LAYOUT ── */
.booking-wrap { min-height: 100vh; padding-top: 72px; display: grid; grid-template-columns: 1fr 1.6fr; }
.booking-sidebar { background: var(--text-dark); padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: space-between; position: sticky; top: 72px; height: calc(100vh - 72px); overflow-y: auto; }
.sidebar-top {}
.sidebar-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(253,248,243,0.35); margin-bottom: 3rem; }
.sidebar-logo span { color: var(--accent); }
.sidebar-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--cream); line-height: 1.15; margin-bottom: 1rem; }
.sidebar-title em { font-style: italic; color: var(--accent); }
.sidebar-sub { font-size: 0.9rem; font-weight: 300; color: rgba(253,248,243,0.5); line-height: 1.75; margin-bottom: 3rem; }
.what-to-expect { display: flex; flex-direction: column; gap: 1.25rem; }
.expect-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.expect-num { width: 26px; height: 26px; border-radius: 50%; background: rgba(232,92,43,0.2); border: 1px solid rgba(232,92,43,0.4); color: var(--accent); font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.expect-item strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 0.15rem; }
.expect-item span { font-size: 0.8rem; color: rgba(253,248,243,0.4); font-weight: 300; line-height: 1.5; }
.sidebar-contact { border-top: 1px solid rgba(253,248,243,0.08); padding-top: 2rem; }
.sidebar-contact p { font-size: 0.78rem; color: rgba(253,248,243,0.35); font-weight: 300; margin-bottom: 0.5rem; }
.sidebar-contact a { font-size: 0.9rem; color: var(--accent); text-decoration: none; display: block; font-weight: 400; }
.sidebar-contact a:hover { text-decoration: underline; }
.booking-form-area { background: white; padding: 5rem 4rem; display: flex; flex-direction: column; }
.form-header { margin-bottom: 2.5rem; }
.form-header h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 2rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-header p { font-size: 0.9rem; color: var(--text-light); font-weight: 300; line-height: 1.6; }
.trust-strip { display: flex; gap: 2rem; flex-wrap: wrap; padding: 1.5rem 4rem; background: var(--cream); border-top: 1px solid var(--warm-border); }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-mid); font-weight: 400; }
.trust-strip .trust-item::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ── PRETRIP LAYOUT ── */
.pretrip-wrap { min-height: 100vh; padding-top: 72px; display: grid; grid-template-columns: 1fr 1.6fr; }
.pretrip-sidebar { background: var(--text-dark); padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: space-between; position: sticky; top: 72px; height: calc(100vh - 72px); overflow-y: auto; }
.pretrip-form-area { background: white; padding: 5rem 4rem; }

/* ── PAGE TITLE (services page) ── */
.page-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.05; color: var(--text-dark); margin-bottom: 1rem; }
.page-title em { font-style: italic; color: var(--accent); }
.page-sub { font-size: 1rem; font-weight: 300; color: var(--text-mid); max-width: 560px; line-height: 1.75; }

/* ── BOOKING SIDEBAR BOTTOM ── */
.sidebar-bottom { margin-top: auto; }

/* ── PRICING RIDE OPTIONS ── */
.ride-option { border-radius: 12px; padding: 1rem 1.1rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, opacity 0.2s; }
.selected-ride { border: 2px solid var(--accent); background: rgba(232,92,43,0.04); }

/* ── BTN ACCENT ── */
.btn-accent { background: var(--accent); color: white; padding: 1rem 2.25rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; text-decoration: none; white-space: nowrap; transition: background 0.2s; display: inline-block; }
.btn-accent:hover { background: var(--accent-dark); }

/* ── CONFIRMED BADGE (pretrip) ── */
.confirmed-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,92,43,0.15); border: 1px solid rgba(232,92,43,0.3); border-radius: 100px; padding: 0.35rem 1rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; width: fit-content; }
.confirmed-badge::before { content: '✓'; font-size: 0.8rem; }
.checklist { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.checklist-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.checklist-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(232,92,43,0.2); border: 1px solid rgba(232,92,43,0.4); color: var(--accent); font-size: 0.8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.checklist-item strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 0.15rem; }
.checklist-item span { font-size: 0.8rem; color: rgba(253,248,243,0.4); font-weight: 300; line-height: 1.5; }
.sidebar-note { background: rgba(253,248,243,0.04); border: 1px solid rgba(253,248,243,0.08); border-radius: 12px; padding: 1.25rem; font-size: 0.82rem; color: rgba(253,248,243,0.4); font-weight: 300; line-height: 1.6; }
.sidebar-note strong { color: rgba(253,248,243,0.7); font-weight: 500; }

/* ── FOOTER ── */
footer { background: var(--text-dark); color: var(--white); padding: 2rem 3.5rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(245,243,238,0.08); }
footer p { font-size: 0.8rem; color: rgba(245,243,238,0.35); font-weight: 300; }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a { font-size: 0.8rem; color: rgba(245,243,238,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .art-banner { padding-top: 64px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 4rem 1.5rem 2rem; }
  .hero-right { display: none; }
  .services-overview { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 4rem 1.5rem; }
  .why-inner { grid-template-columns: 1fr; }
  .why-photo { display: none; }
  .photo-strip { padding: 0 1.5rem 4rem; grid-template-columns: 1fr 1fr; }
  .cta-band { margin: 0 1.5rem 4rem; flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .reviews { padding: 4rem 1.5rem; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .review-card { flex: 0 0 85vw; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .service-block.reverse { direction: ltr; }
  .service-visual { aspect-ratio: 16/9; }
  .process { padding: 4rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .faq { padding: 4rem 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 2.5rem; }
  .about-hero-visual { display: none; }
  .story { padding: 4rem 1.5rem; }
  .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values { padding: 4rem 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .credentials { padding: 4rem 1.5rem; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .estimator-section { padding: 4rem 1.5rem; }
  .estimator-wrap { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .rate-table-section { padding: 4rem 1.5rem; }
  .rate-grid { grid-template-columns: 1fr 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; height: auto; padding: 3rem 1.5rem; }
  .booking-form-area { padding: 3rem 1.5rem; }
  .trust-strip { padding: 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
}


/* ── MEET YOUR TRANSPORTER ── */
.meet-header { background: #0e0e0e; padding: 1rem 1.5rem; display: flex; align-items: center; border-bottom: 2px solid var(--accent); }
.meet-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.meet-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.meet-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.meet-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 6vw, 3.2rem); text-transform: uppercase; line-height: 0.95; margin-bottom: 2.5rem; }
.meet-heading em { font-style: italic; color: var(--accent); }

.driver-block { display: flex; gap: 2rem; margin-bottom: 2rem; }
.driver-photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 3px solid var(--accent); display: block; flex-shrink: 0; }
.driver-photo-placeholder { width: 200px; height: 200px; border-radius: 50%; background: var(--warm-mid); border: 3px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 3rem; flex-shrink: 0; }
.driver-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.5rem; }
.driver-bio { font-family: 'Fraunces', Georgia, serif; font-size: 1rem; line-height: 1.8; color: var(--text-mid); font-weight: 400; }

.meet-divider { border: none; border-top: 1px solid var(--warm-border); margin: 2rem 0; }

.vehicle-block { background: white; border: 1px solid var(--warm-border); border-radius: 16px; padding: 1.5rem; display: flex; gap: 1.5rem; align-items: center; margin-top: 2.5rem; }
.vehicle-photo { width: 100%; max-width: 320px; height: 200px; object-fit: contain; background: var(--warm-mid); border-radius: 10px; flex-shrink: 0; }
.vehicle-photo-placeholder { width: 100%; max-width: 320px; height: 200px; border-radius: 10px; background: var(--warm-mid); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.vehicle-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.vehicle-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.3rem; text-transform: uppercase; color: var(--text-dark); }
.vehicle-meta { font-size: 0.82rem; color: var(--text-light); margin-top: 0.25rem; }

.meet-contact { background: #0e0e0e; border-radius: 12px; padding: 1.5rem; text-align: center; margin-top: 2.5rem; }
.meet-contact p { font-size: 0.88rem; color: #888; margin-bottom: 0.5rem; line-height: 1.6; }
.meet-contact a { color: var(--accent); text-decoration: none; font-weight: 500; }

@media (max-width: 540px) {
  .driver-block { flex-direction: column; align-items: center; text-align: center; }
  .driver-photo { width: 160px; height: 160px; }
  .driver-photo-placeholder { width: 160px; height: 160px; }
  .vehicle-block { flex-direction: column; align-items: center; text-align: center; }
  .vehicle-photo { max-width: 100%; height: 180px; }
  .vehicle-photo-placeholder { max-width: 100%; height: 180px; }
}
