/* =============================================
   Classic Rentals Inc. — Stylesheet
   Mobile-first | 600px tablet | 900px desktop
   ============================================= */

/* ── Variables ─────────────────────────────── */
:root {
  --navy:   #0a2342;
  --ocean:  #0077b6;
  --teal:   #00b4d8;
  --sky:    #90e0ef;
  --sunset: #ff6b2b;
  --mango:  #f9a825;
  --sand:   #fef3e2;
  --white:  #ffffff;
  --text:   #2d3748;
  --muted:  #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0,119,182,0.15);
  --radius: 12px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--sunset); }
ul { list-style: none; }

/* ── Layout ────────────────────────────────── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section    { padding: 56px 0; }
.section-sm { padding: 40px 0; }
.text-center { text-align: center; }

/* ── Typography ────────────────────────────── */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
}
.text-center .section-subtitle { max-width: 600px; margin-left: auto; margin-right: auto; }

.badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.6);
  paint-order: stroke fill;
}
.btn-primary  { background: var(--sunset); color: var(--white); border-color: var(--sunset); }
.btn-primary:hover  { background: #e55a1f; border-color: #e55a1f; color: var(--white); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ocean); border-color: var(--ocean); }
.btn-outline:hover { background: var(--ocean); color: var(--white); transform: translateY(-2px); }

/* ── Top Bar ───────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 7px 0;
  font-size: 0.8rem;
}
.top-bar .container { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar a { color: var(--sky); font-weight: 600; }
.top-bar a:hover { color: var(--mango); }
.top-bar .hours { display: none; }
.top-bar .phones { display: flex; gap: 16px; }

/* ── Header ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,35,66,0.10);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* Black logo → dark blue */
  filter: invert(13%) sepia(95%) saturate(1400%) hue-rotate(215deg) brightness(82%) contrast(100%);
}
.logo-img--footer {
  /* On dark navy — render white */
  filter: brightness(0) invert(1);
}
.logo-text { line-height: 1.15; }
.logo-text .brand {
  display: block;
  font-family: 'Exo', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 1.15rem;
  color: #0d3380;
}
.logo-text .tagline {
  display: block;
  font-size: 0.6rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Hamburger — shown on mobile */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav — mobile: dropdown */
.main-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 10px 4%;
  gap: 2px;
  z-index: 99;
}
.main-nav.open { display: flex; }
.main-nav a {
  display: block;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--sand); color: var(--ocean); }
.main-nav .nav-cta {
  background: var(--sunset); color: var(--white);
  border-radius: 50px; text-align: center; margin-top: 6px;
}
.main-nav .nav-cta:hover { background: #e55a1f; color: var(--white); }

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a2342 0%, #023e8a 55%, #6ebb2d 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.25);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,40,90,0.30);
  z-index: 1;
}
.hero-logo-watermark {
  position: absolute;
  top: 8%;
  right: 4%;
  width: min(380px, 42vw);
  opacity: 0.15;
  filter: brightness(0) invert(1);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.hero-waves {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 60px 0 90px;
  width: 100%;
}
.hero-stars { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-stars .stars { color: var(--mango); font-size: 1.1rem; letter-spacing: 2px; }
.hero-stars .star-label { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 600; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.85);
  paint-order: stroke fill;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.9);
}
.hero h1 span { color: #24e224; }
.hero p {
  font-size: 1rem;
  opacity: 0.92;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85), 0 2px 12px rgba(0,0,0,0.6);
}
.hero-stars .stars {
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.hero-stars .star-label {
  text-shadow: 0 1px 5px rgba(0,0,0,0.85);
}
.hero-btns { display: flex; flex-direction: column; gap: 12px; }
.hero-btns .btn { width: 100%; justify-content: center; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--mango);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.hero-stat .lbl {
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ── Page Hero (inner pages) ───────────────── */
.page-hero {
  background: linear-gradient(135deg, #0a2342 0%, #023e8a 55%, #6ebb2d 100%);
  padding: 56px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,20 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom / cover;
}
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--white); margin-bottom: 10px; -webkit-text-stroke: 1px rgba(0,0,0,0.75); paint-order: stroke fill; }
.page-hero p { color: var(--sky); font-size: 1rem; max-width: 540px; }
.breadcrumb { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin-bottom: 12px; }
.breadcrumb a { color: var(--sky); }
.breadcrumb span { margin: 0 5px; }

/* ── Trust Bar ─────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 10px 0 40px;
  text-align: center;
}
.trust-bar-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.trust-bar-stars {
  color: var(--mango);
  font-size: 0.9rem;
  letter-spacing: 6px;
}
.trust-bar p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.75;
  margin: 0;
}
.trust-bar strong {
  color: var(--ocean);
  font-weight: 700;
}
.trust-bar-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--ocean));
  border-radius: 2px;
}

/* ── Vehicle Cards ─────────────────────────── */
.vehicles-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,119,182,0.22); }
.vehicle-card-img { position: relative; overflow: hidden; height: 210px; }
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }
.vehicle-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--sunset); color: var(--white);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px;
}
.vehicle-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.vehicle-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.vehicle-card-body p  { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.vehicle-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.feature-pill { background: var(--sand); color: var(--navy); font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; }

/* ── Why Cards ─────────────────────────────── */
.why-section { background: var(--sand); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s;
}
.why-card:hover { transform: translateY(-3px); }
.why-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--teal), var(--ocean)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 14px; }
.why-card h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 0.95rem; }
.why-card p  { color: var(--muted); font-size: 0.88rem; }

/* ── Service Areas ─────────────────────────── */
.areas-section { background: var(--navy); }
.areas-section .section-title { color: var(--white); }
.areas-section .section-subtitle { color: var(--sky); }
.areas-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 8px; }
.area-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius); padding: 22px; }
.area-card h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--mango); font-size: 1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.area-card ul { display: flex; flex-wrap: wrap; gap: 7px; }
.area-card ul li { background: rgba(255,255,255,0.09); color: var(--sky); font-size: 0.8rem; padding: 4px 10px; border-radius: 50px; }

/* ── Map Section ───────────────────────────── */
.map-section .map-inner { display: grid; grid-template-columns: 1fr; gap: 36px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ── CTA Band ──────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--sunset) 0%, #ff8c42 50%, var(--mango) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 28px; }
.btn-cta-white {
  display: inline-block;
  padding: 14px 36px;
  background: var(--white);
  color: var(--sunset);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.25s;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.6);
  paint-order: stroke fill;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); color: var(--sunset); }
.cta-phone { display: block; margin-top: 16px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.cta-phone a { color: var(--white); font-weight: 700; font-size: 1.1rem; }

/* ── Lightbox ──────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 10, 20, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
  animation: lbFadeIn 0.2s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-inner {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: block;
  animation: lbSlide 0.18s ease;
}
@keyframes lbSlide { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}
.lightbox-close {
  position: fixed;
  top: 18px; right: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
}
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev:disabled,
.lightbox-next:disabled { opacity: 0.25; pointer-events: none; }

/* Make gallery images feel clickable */
.gallery-grid img { cursor: zoom-in; }

/* ── Gallery ───────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.gallery-grid img { width: 100%; height: 190px; object-fit: cover; border-radius: 8px; transition: transform 0.3s, box-shadow 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.gallery-grid .span-2 { grid-column: span 1; }

/* ── How It Works ──────────────────────────── */
.how-section {
  background: linear-gradient(135deg, #0a2342 0%, #023e8a 55%, #6ebb2d 100%);
}
.how-section .section-title { color: var(--white); }
.how-section .section-subtitle { color: rgba(255,255,255,0.78); }
.how-section .badge { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); }

.how-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.how-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  width: 100%;
  position: relative;
}
.how-num {
  width: 48px; height: 48px;
  background: var(--sunset);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(255,107,43,0.45);
}
.how-icon { font-size: 2rem; margin-bottom: 12px; }
.how-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.how-step p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.how-connector { color: rgba(255,255,255,0.3); font-size: 1.6rem; transform: rotate(90deg); }

/* ── Q&A ───────────────────────────────────── */
.qa-section { background: var(--sand); }
.qa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.qa-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.qa-q {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
  line-height: 1.4;
}
.qa-a { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }
.qa-a a { color: var(--ocean); font-weight: 600; }

@media (min-width: 600px) {
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .how-grid { flex-direction: row; align-items: stretch; }
  .how-connector { transform: rotate(0deg); align-self: center; font-size: 2rem; flex-shrink: 0; }
  .qa-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── Details (rental info) ─────────────────── */
.details-section { background: var(--sand); }
.details-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.detail-block { margin-bottom: 24px; }
.detail-block h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.detail-block h4::before { content: ''; display: inline-block; width: 4px; height: 18px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.detail-block ul { display: flex; flex-direction: column; gap: 8px; }
.detail-block ul li { display: flex; align-items: flex-start; gap: 8px; color: var(--text); font-size: 0.9rem; }
.detail-block ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── About ─────────────────────────────────── */
.about-content { display: flex; flex-direction: column; gap: 36px; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); flex-shrink: 0; }
.about-image img { width: 100%; height: 260px; object-fit: cover; display: block; }
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.about-text .highlight-box { background: var(--sand); border-left: 4px solid var(--teal); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0; }
.about-text .highlight-box p { margin: 0; color: var(--navy); font-weight: 600; font-style: italic; }

/* ── Contact ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-info h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; flex-shrink: 0; background: linear-gradient(135deg, var(--teal), var(--ocean)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-item-text strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: 0.875rem; }
.contact-item-text a { color: var(--ocean); }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 5px; font-size: 0.85rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--border); border-radius: 8px;
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--teal); }
.contact-form textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }

/* ── Coupon ────────────────────────────────── */
.coupon-wrap { text-align: center; max-width: 600px; margin: 0 auto; }
.coupon-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 0 auto 28px; }
.coupon-note { background: var(--sand); border-radius: var(--radius); padding: 16px; color: var(--muted); font-size: 0.875rem; margin-top: 20px; }

/* ── Privacy ───────────────────────────────── */
.privacy-content { max-width: 800px; }
.privacy-content h2 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.2rem; margin: 28px 0 10px; }
.privacy-content p, .privacy-content li { color: var(--muted); margin-bottom: 10px; line-height: 1.8; font-size: 0.95rem; }
.privacy-content ul { list-style: disc; padding-left: 20px; margin-bottom: 14px; }

/* ── Footer ────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 44px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo .brand { color: var(--white); }
.footer-brand .logo .tagline { color: var(--sky); }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.9rem; transition: background 0.2s; }
.social-link:hover { background: var(--teal); }
.footer-col--centered { text-align: center; }
.footer-col--centered h4::after { left: 50%; transform: translateX(-50%); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--white); font-size: 0.9rem; margin-bottom: 16px; padding-bottom: 10px; position: relative; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--mango); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; }
.footer-contact-item .fi { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.78); }
.footer-contact-item a:hover { color: var(--mango); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; font-size: 0.8rem; }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.footer-bottom a { color: var(--sky); }
.footer-bottom a:hover { color: var(--mango); }
.nap-strip { background: rgba(0,0,0,0.25); padding: 10px 0; text-align: center; }
.nap-strip address { font-style: normal; font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.nap-strip address strong { color: rgba(255,255,255,0.6); font-weight: 600; }
.nap-strip address a { color: rgba(255,255,255,0.45); }
.nap-strip address a:hover { color: var(--sky); }

/* ════════════════════════════════════════════
   TABLET  ≥ 600px
   ════════════════════════════════════════════ */
@media (min-width: 600px) {
  .section-title { font-size: 2rem; }

  .top-bar .hours { display: flex; align-items: center; gap: 6px; }
  .top-bar .hours::before { content: '🌞'; }
  .top-bar .container { justify-content: space-between; }

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

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

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 210px; }

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

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

  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .hero-btns .btn { width: auto; }
}

/* ════════════════════════════════════════════
   DESKTOP  ≥ 900px
   ════════════════════════════════════════════ */
@media (min-width: 900px) {
  .section    { padding: 80px 0; }
  .section-sm { padding: 52px 0; }
  .section-title { font-size: clamp(1.9rem, 2.8vw, 2.6rem); }

  /* Show nav inline, hide hamburger */
  .main-nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 4px;
    z-index: auto;
  }
  .main-nav a { padding: 8px 13px; font-size: 0.875rem; }
  .main-nav .nav-cta { margin-top: 0; margin-left: 8px; text-align: center; padding: 8px 20px; }
  .hamburger { display: none !important; }

  .logo-text .brand { font-size: 1.35rem; }

  /* Two-column layouts */
  .about-content { flex-direction: row; align-items: flex-start; gap: 56px; }
  .about-image { flex: 0 0 46%; }
  .about-image img { height: 400px; }

  .details-grid { grid-template-columns: 1fr 1fr; gap: 48px; }

  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 56px; }

  .map-section .map-inner { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .map-embed iframe { height: 380px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Grids */
  .why-grid { grid-template-columns: repeat(4, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid img { height: 215px; }
  .gallery-grid .span-2 { grid-column: span 2; height: 300px; }

  /* Hero */
  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
  .hero p  { font-size: 1.1rem; max-width: 540px; }
  .hero-content { padding: 80px 0 120px; }
  .hero-stat .num { font-size: 2rem; }
  .hero-stats { gap: 40px; margin-top: 56px; }

  /* Inner pages */
  .page-hero { padding: 80px 0 100px; }
  .page-hero h1 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }

  .cta-band { padding: 80px 0; }
  .cta-band h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }

  .vehicle-card-img { height: 235px; }
}

/* ════════════════════════════════════════════
   WIDE  ≥ 1200px
   ════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .logo-text .brand { font-size: 1.45rem; }
}

/* ════════════════════════════════════════════
   BOOKING / CONTACT PAGE
   ════════════════════════════════════════════ */

/* ── Book Hero ──────────────────────────────── */
.book-hero {
  background: linear-gradient(135deg, #0a2342 0%, #023e8a 55%, #6ebb2d 100%);
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}
.book-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f7f9fc' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,20 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom / cover;
}
.book-hero-inner { display: flex; flex-direction: column; gap: 32px; }

.book-hero-text .badge { background: rgba(255,255,255,0.18); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.book-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
  -webkit-text-stroke: 1px rgba(0,0,0,0.75);
  paint-order: stroke fill;
}
.book-hero-text p { color: var(--sky); margin-bottom: 24px; font-size: 1rem; }

/* Call buttons */
.call-now-btn {
  display: flex; align-items: center; gap: 14px;
  background: var(--sunset); color: var(--white);
  border-radius: 12px; padding: 13px 20px;
  margin-bottom: 12px; text-decoration: none;
  transition: all 0.25s; max-width: 300px;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.6);
  paint-order: stroke fill;
}
.call-now-btn:hover { background: #e55a1f; color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,43,0.45); }
.call-now-secondary { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); }
.call-now-secondary:hover { background: rgba(255,255,255,0.22); box-shadow: none; }
.call-icon { font-size: 1.5rem; flex-shrink: 0; }
.call-text { display: flex; flex-direction: column; line-height: 1.2; }
.call-text small { font-size: 0.68rem; opacity: 0.8; font-weight: 400; }
.call-text { font-size: 1.15rem; font-weight: 700; font-family: 'Poppins', sans-serif; }

/* Trust strip */
.book-trust-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-item {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 14px 16px;
  flex: 1; min-width: 120px; text-align: center;
}
.trust-num { display: block; font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--mango); line-height: 1; margin-bottom: 4px; }
.trust-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Urgency Bar ──────────────────────────── */
.urgency-bar {
  background: var(--mango); color: var(--navy);
  padding: 11px 0; text-align: center; font-size: 0.88rem;
}
.urgency-bar strong { font-weight: 800; }

/* ── Booking Layout ───────────────────────── */
.booking-section { background: #f4f7fb; padding: 40px 0 56px; }
.booking-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }

/* ── Form Card ────────────────────────────── */
.form-card {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 40px rgba(10,35,66,0.11); overflow: hidden;
}
.form-card-title {
  font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin: 0; padding: 20px 24px 6px;
  background: #255FDD;
}
.form-card-sub {
  margin: 0; padding: 0 24px 20px;
  font-size: 0.85rem; color: rgba(255,255,255,0.82);
  background: #255FDD;
}
.contact-form { padding: 24px; }
.form-group { margin-bottom: 18px; }
.label-main { display: block; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-size: 0.88rem; }

/* ── Vehicle Picker (radio-card UI) ───────── */
.vehicle-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vpick-card { cursor: pointer; display: block; }
.vpick-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.vpick-inner {
  border: 2px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; position: relative;
}
.vpick-card input:checked + .vpick-inner {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.2);
}
.vpick-inner img { width: 100%; height: 88px; object-fit: cover; }
.vpick-info { padding: 8px 10px; background: var(--white); }
.vpick-info strong { display: block; font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.vpick-info span { font-size: 0.7rem; color: var(--muted); }
.vpick-check {
  position: absolute; top: 6px; right: 6px;
  width: 22px; height: 22px; background: var(--ocean); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; opacity: 0; transition: opacity 0.2s;
}
.vpick-card input:checked + .vpick-inner .vpick-check { opacity: 1; }

/* ── Custom Checkbox ──────────────────────── */
.checkbox-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 0.9rem; color: var(--text);
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 5px;
  background: var(--white); position: relative; transition: all 0.2s;
}
.checkbox-label input:checked + .checkbox-box { background: var(--ocean); border-color: var(--ocean); }
.checkbox-label input:checked + .checkbox-box::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; font-weight: 700;
}

/* Submit */
.btn-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 8px; border: none; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 12px; }
.form-note a { color: var(--ocean); }

/* ── Info Panel ───────────────────────────── */
.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 4px 20px rgba(10,35,66,0.08); margin-bottom: 20px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card h3 {
  font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy);
  font-size: 1rem; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sand);
}
.info-phones { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.info-phone-link {
  display: flex; align-items: center; gap: 8px;
  background: var(--sand); border-radius: 8px; padding: 10px 14px;
  font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy);
  font-size: 1rem; transition: all 0.2s; text-decoration: none;
}
.info-phone-link:hover { background: var(--teal); color: var(--white); }
.info-hours { color: var(--muted); font-size: 0.85rem; }

.know-list { display: flex; flex-direction: column; gap: 10px; }
.know-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text); }
.know-list li span { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ════════════════════════════════════════════
   SERVICE AREAS PAGE (30a-panama-city-beach.php)
   ════════════════════════════════════════════ */

/* Hero override */
.sa-hero { padding-bottom: 88px; }
.sa-hero h1 { font-size: 1.6rem; line-height: 1.2; }
.sa-hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.sa-hero-ctas .btn { text-align: center; }

/* Intro */
.sa-intro-grid { display: flex; flex-direction: column; gap: 36px; }
.sa-intro-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); flex-shrink: 0; }
.sa-intro-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.sa-intro-text p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }
.sa-intro-text strong { color: var(--navy); }
.sa-stats-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.sa-stat { display: flex; flex-direction: column; }
.sa-stat-num { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--ocean); line-height: 1; }
.sa-stat-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

/* Communities */
.sa-communities { background: #f4f7fb; }
.community-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.community-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 3px solid var(--border); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.community-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,119,182,0.14); border-top-color: var(--teal); }
.community-card--featured { border-top-color: var(--sunset); }
.community-icon { font-size: 1.6rem; margin-bottom: 10px; }
.community-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.community-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin: 0; }
.community-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--sunset); color: var(--white);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px;
}

/* ── Testimonials Scroller ─────────────────── */
.testimonials-section { padding-bottom: 40px; }

.reviews-scroller {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 50s linear infinite;
  padding: 8px 12px 20px;
}

.reviews-track:hover { animation-play-state: paused; }

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,119,182,0.1);
  padding: 20px 22px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,119,182,0.16);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.reviewer-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-when {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

.google-icon { flex-shrink: 0; }

.review-stars {
  display: flex;
  gap: 1px;
}

.rstar      { font-size: 1rem; color: var(--border); line-height: 1; }
.rstar--on  { color: #f9a825; }

.review-text {
  font-size: 0.855rem;
  color: var(--text);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* PCB section */
.sa-pcb { background: var(--navy); }
.sa-pcb .section-title { color: var(--white); }
.sa-pcb p { color: rgba(255,255,255,0.78); margin-bottom: 14px; font-size: 0.95rem; }
.sa-pcb strong { color: var(--sky); }
.sa-pcb-grid { display: flex; flex-direction: column; gap: 36px; }
.sa-map { flex-shrink: 0; }
.sa-map iframe { height: 280px; }
.pcb-details { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.pcb-detail-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.pcb-detail-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.pcb-detail-item a { color: var(--sky); font-weight: 600; }
.pcb-detail-item a:hover { color: var(--mango); }

/* Why section on SA page */
.sa-why { background: var(--sand); }
.sa-why-grid { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.sa-why-item {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.sa-why-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.sa-why-item h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.sa-why-item p  { color: var(--muted); font-size: 0.875rem; margin: 0; }

/* FAQ */
.sa-faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.faq-q {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin: 0 0 10px;
  line-height: 1.4;
}
.faq-a p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin: 0; }
.faq-a a { color: var(--ocean); font-weight: 600; }
.faq-a a:hover { color: var(--sunset); }

/* ── Service Areas Responsive ─────────────────── */
@media (min-width: 600px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-hero-ctas { flex-direction: row; }
}

@media (min-width: 900px) {
  .sa-hero h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
  .sa-intro-grid { flex-direction: row; align-items: flex-start; gap: 56px; }
  .sa-intro-img { flex: 0 0 44%; }
  .sa-intro-img img { height: 400px; }
  .community-grid { grid-template-columns: repeat(3, 1fr); }
  .sa-pcb-grid { flex-direction: row; align-items: flex-start; gap: 56px; }
  .sa-pcb-content { flex: 1; }
  .sa-map { flex: 0 0 44%; }
  .sa-map iframe { height: 400px; }
  .sa-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── Booking Page Responsive ────────────────── */
@media (min-width: 900px) {
  .book-hero { padding: 72px 0 80px; }
  .book-hero-inner { flex-direction: row; align-items: center; gap: 56px; }
  .book-hero-text { flex: 1; }
  .book-hero-text h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
  .book-trust-strip { flex: 0 0 auto; flex-direction: column; }
  .trust-item { min-width: 180px; }

  .booking-grid { grid-template-columns: 1.5fr 1fr; gap: 36px; }
  .booking-section { padding: 56px 0 80px; }

  .vpick-inner img { height: 110px; }

  .info-phones { flex-direction: column; }
}
