/* TBM Theme — Main CSS */
/* Imports design system from style.css via wp_enqueue_style dependency */
/* Component and page-level styles go here as site is built out */

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--dark);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-wrap { width: 100%; }

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

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo .logo-vertical { display: none; }

/* Desktop nav */
.nav-menu { flex: 1; display: flex; justify-content: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a { color: var(--orange); background: rgba(255,255,255,0.06); }

.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-btn);
  background: transparent;
  transition: all var(--transition);
}

.nav-quote-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Dropdown */
.has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-dropdown li a:hover { color: var(--orange); background: var(--orange-light); }

.dd-icon { display: flex; align-items: center; flex-shrink: 0; color: var(--orange); }

/* Right CTA area */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  padding: 9px 16px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-btn);
  background: transparent;
  transition: all var(--transition);
}

.nav-phone:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-book-btn { font-size: 0.85rem; padding: 10px 20px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.25s ease;
  width: 100%;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.mobile-overlay.active { display: block; }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--dark);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-head img { height: 36px; }
.mobile-nav-head .mobile-nav-logo-vertical { height: 90px; width: auto; display: block; }

.mobile-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.mobile-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}

.mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-links > li > a,
.mobile-sub-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.mobile-links > li > a:hover,
.mobile-sub-btn:hover { color: var(--orange); background: rgba(245,130,31,0.08); }

.mobile-sub {
  list-style: none;
  padding: 0;
  display: none;
  background: rgba(0,0,0,0.2);
}

.mobile-sub.open { display: block; }

.mobile-sub li a {
  display: block;
  padding: 11px 20px 11px 36px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-sub li a:hover { color: var(--orange); }

.mobile-nav-footer {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-footer .btn { justify-content: center; font-size: 0.95rem; padding: 13px 20px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--dark) center center / cover no-repeat;
  color: var(--white);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(245,130,31,0.4);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}


.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   BOOKING FORM (placeholder — to be built)
   ============================================================ */

.booking-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.booking-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--orange);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section {
  background: var(--bg-light);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--dark) center center / cover no-repeat;
  color: var(--white);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(245,130,31,0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Hero Copy */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(245,130,31,0.4);
  background: rgba(245,130,31,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2.1rem;
  letter-spacing: -0.02em;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 2rem;
}

.hero-trust-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.hero-trust-strip svg { color: var(--orange); flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

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

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

.btn-white-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Quote Card */
.hero-form-wrap { position: relative; }

.quote-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.quote-card-head {
  background: var(--orange);
  padding: 20px 24px;
}

.quote-card-head h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.quote-card-head p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.quote-form {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qf-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qf-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qf-group label svg { color: var(--orange); flex-shrink: 0; }

.qf-group input,
.qf-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  box-sizing: border-box;
}

.qf-group input:focus,
.qf-group select:focus,
.qf-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,31,0.12); }
.qf-group input::placeholder,
.qf-group textarea::placeholder { color: var(--text-light); }

/* Location picker */
.qf-group--location { position: relative; display: flex; align-items: center; }
.qf-group--location input,
.qf-group.qf-group--location input,
.gaq-group .qf-group--location input { padding-right: 42px !important; width: 100%; }
.qf-locate-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s;
}
.qf-locate-btn:hover { color: #c62828; }
.qf-locate-btn.loading { animation: spin 0.8s linear infinite; }
.qf-locate-btn.success { color: #16a34a; }
.qf-locate-btn.error { color: #dc2626; }
@keyframes spin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

/* Date/time fake placeholder overlay */
.qf-group--dt { position: relative; }
.qf-dt-label {
  position: absolute;
  top: 50%; left: 13px;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.92rem;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.15s;
}
.qf-group--dt.has-value .qf-dt-label,
.qf-group--dt:focus-within .qf-dt-label { opacity: 0; }

.qf-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  min-height: 64px;
}

.qf-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 24px 16px;
  margin: 0;
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-block { width: 100%; justify-content: center; margin-top: 4px; }

.quote-msg {
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 0 0;
  display: none;
}

.quote-msg.success { color: #16a34a; display: block; }
.quote-msg.error   { color: #dc2626; display: block; }

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.trust-inner::-webkit-scrollbar { display: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  flex: 1;
  min-width: 200px;
}

.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section { background: var(--bg-light); }

.section-header { margin-bottom: 3rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 600px;
  margin: 10px 0 0;
  text-align: left;
}

.section-sub.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

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

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}

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

.sc-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: background var(--transition);
}

.service-card:hover .sc-icon-wrap { background: var(--orange); color: var(--white); }

.sc-body { flex: 1; }

.sc-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.sc-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sc-arrow {
  font-size: 1.1rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
  align-self: center;
  flex-shrink: 0;
}

.service-card:hover .sc-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-section { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-stats {
  display: flex;
  gap: 28px;
  margin: 2rem 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-stat { text-align: center; flex: 1; }

.why-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.why-number span { font-size: 1.4rem; }

.why-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-feature {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-section);
  align-items: flex-start;
}

.why-feature:first-child { padding-top: 0; }
.why-feature:last-child { border-bottom: none; }

.wf-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--orange);
  padding: 0;
}

.promises-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.promises-inner::-webkit-scrollbar { display: none; }

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 28px;
  flex: 1;
  color: var(--white);
  text-align: center;
}

.promise-item svg {
  flex-shrink: 0;
  opacity: 0.95;
  width: 42px;
  height: 42px;
}

.promise-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promise-text strong {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.promise-text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.3;
}

.promise-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* Carousel arrows — absolute left/right inside inner (mobile only) */
.carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.25);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-arrow--prev { left: 8px; }
.carousel-arrow--next { right: 8px; }
.carousel-arrow:active { background: var(--orange); border-color: var(--orange); }
@media (max-width: 768px) { .carousel-arrow { display: flex; } }

/* Keep old stat classes in case used elsewhere */
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 20px;
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-number sup {
  font-size: 1.1rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.04em;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  gap: 16px;
  user-select: none;
  background: none;
  border: none;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-icon svg { width: 12px; height: 12px; }

.faq-item.active .faq-icon svg path { stroke: var(--white); }

.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer { display: block; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section { background: var(--bg-light); }

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  margin-top: 3rem;
}

.how-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}

.how-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-mid);
  line-height: 1;
  margin-bottom: 12px;
}

.how-icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
}

.how-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-arrow {
  flex-shrink: 0;
  padding-top: 80px;
  opacity: 0.6;
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */

.reviews-section { background: var(--dark2); }

.reviews-section .section-label { background: rgba(245,130,31,0.15); }

.reviews-section .section-title { color: var(--white); }

.reviews-section .section-sub { color: rgba(255,255,255,0.5); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}

.review-card:hover { border-color: rgba(245,130,31,0.35); }

.review-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.review-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   SERVICE AREAS — SUBURB CLOUD
   ============================================================ */

/* Areas section */
.areas-section { background: var(--bg-light); }

.areas-stats-strip {
  background: var(--dark);
  padding: 22px 0;
  border-bottom: 2px solid var(--orange);
}
.areas-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.areas-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.areas-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.areas-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
  white-space: nowrap;
}
.areas-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Zone grid */
.areas-body { background: var(--white); }

.areas-zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.areas-zone {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.areas-zone:nth-child(2n) { border-right: none; }
.areas-zone:nth-last-child(-n+2) { border-bottom: none; }

.areas-zone-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--orange);
  margin-bottom: 12px;
}
.areas-zone-label svg { flex-shrink: 0; }

.areas-zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.suburb-chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  cursor: default;
}
.suburb-chip:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--orange);
}

.areas-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.areas-footer-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.areas-footer-note a { color: var(--orange); }

@media (max-width: 768px) {
  .areas-stat { padding: 0 20px; }
  .areas-stat-num { font-size: 1.3rem; }
  .areas-zones { grid-template-columns: 1fr; }
  .areas-zone { border-right: none; }
  .areas-zone:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .areas-zone:last-child { border-bottom: none; }
  .areas-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section { background: var(--dark); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-copy p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

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

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark2) url('../images/hero-bg.webp') center center / cover no-repeat;
  color: rgba(255,255,255,0.55);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.82);
  pointer-events: none;
}

.footer-top { padding: 60px 0 40px; position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 170px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  margin-bottom: 1.2rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item:hover { color: var(--orange); }

.footer-contact-item svg { color: var(--orange); flex-shrink: 0; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--orange); }

.footer-copy-wrap { display: flex; flex-direction: column; gap: 3px; }

.footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.footer-credit a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 420px; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 48px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: left; }
  .hero-copy h1 { text-align: left; }
  .hero-badge { align-self: flex-start; }
  .hero-trust-strip { justify-content: flex-start; }
  .hero-actions { justify-content: flex-start; }
  .quote-card { position: static; }
  .hero-form-wrap { max-width: 480px; width: 100%; }
  .why-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .nav-quote-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-book-btn { display: none; }
  .nav-inner { position: relative; justify-content: center; height: 100px; transition: height 0.3s ease; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-hamburger { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); }
  .nav-logo .logo-horizontal { display: none; }
  .nav-logo .logo-vertical { display: block; height: 85px; width: auto; transition: height 0.3s ease; }

  .site-header.scrolled .nav-inner { height: 75px; }
  .site-header.scrolled .nav-logo .logo-vertical { height: 62px; }

  .hero { padding-top: 120px; }
  .hero-sub { display: none; }
  .hero-form-wrap { max-width: 100%; }
  .qf-row { grid-template-columns: 1fr; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-arrow { display: none; }
  .trust-inner {
    position: relative;
    min-height: 80px;
    overflow: visible;
    display: block;
  }
  .trust-sep { display: none; }
  .trust-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .trust-item.active { opacity: 1; position: relative; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-copy-wrap { align-items: center; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
  .site-footer { background-position: left bottom; }
  .cta-inner { flex-direction: column; gap: 24px; }
  .cta-actions { justify-content: center; flex-wrap: nowrap; }
  .cta-actions .btn { flex-shrink: 1; min-width: 0; font-size: 0.82rem; padding: 10px 16px; }

  .promises-inner {
    position: relative;
    min-height: 110px;
    overflow: visible;
    display: block;
  }
  .promise-sep { display: none; }
  .promise-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 48px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .promise-item.active { opacity: 1; position: relative; }
  .promise-item svg { width: 36px; height: 36px; }
  .promise-text strong { font-size: 0.88rem; }
  .promise-text span { font-size: 0.74rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    width: 100%;
  }

  .hero-stat {
    padding: 0 0 16px 0;
    margin-right: 0;
    border-right: none;
    border-bottom: none;
  }

  .hero-stat:nth-child(odd) { padding-right: 16px; border-right: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:nth-last-child(-n+2) { padding-bottom: 0; }
}

@media (max-width: 480px) {
  .hero-actions .btn { font-size: 0.82rem; padding: 10px 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none !important; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2) !important; }
  .why-stats { gap: 16px; flex-wrap: wrap; }
}

/* ============================================================
   SERVICE PAGES — SHARED STYLES
   ============================================================ */

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px 0 0;
  margin-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

.hero-stat-divider { display: none; }

/* Vehicle Selection */
.qf-vehicles {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qf-vehicles-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 14px 6px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.qf-vehicle-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
  user-select: none;
}

.qf-vehicle-option:hover { background: rgba(245,130,31,0.04); }

.qf-vehicle-option input[type="radio"] { display: none; }

.qf-vehicle-check {
  width: 17px;
  height: 17px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
}

.qf-vehicle-option:has(input:checked) .qf-vehicle-check {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: inset 0 0 0 3px #fff;
}

.qf-vehicle-option:has(input:checked) { background: rgba(245,130,31,0.05); }

.qf-vehicle-img {
  height: 52px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.qf-vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.qf-vehicle-name {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.qf-vehicle-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Quote form inputs without labels */
.quote-form .qf-group input[type="text"],
.quote-form .qf-group input[type="tel"],
.quote-form .qf-group input[type="email"],
.quote-form .qf-group input[type="date"],
.quote-form .qf-group input[type="time"],
.quote-form .qf-group select {
  padding: 11px 13px;
}

.qf-footer-note a { color: var(--orange); text-decoration: none; }
.qf-footer-note a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .quote-form { padding: 16px 14px 20px; gap: 12px; }
  .qf-vehicle-option { padding: 8px 10px; gap: 8px; }
  .qf-vehicle-img { height: 40px; max-width: 80px; }
  .qf-vehicle-name { font-size: 0.8rem; }
  .qf-vehicle-sub { font-size: 0.72rem; }
  .quote-card-head { padding: 14px 16px; }
  .qf-footer-note { font-size: 0.73rem; }
}

/* Breadcrumb */
/* Old standalone breadcrumb — kept for fallback */
.sp-breadcrumb { display: none; }

/* Breadcrumb inside dark hero */
.sp-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.sp-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.sp-hero-breadcrumb a:hover { color: var(--orange); }

.sp-hero-breadcrumb .sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.sp-hero-breadcrumb .current {
  color: var(--orange);
  font-weight: 500;
}

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */

.areas-page-section { background: var(--bg-light); }

.areas-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.area-region-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.arc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}

.arc-icon {
  width: 36px;
  height: 36px;
  background: rgba(245,130,31,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.arc-header h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.arc-suburbs {
  padding: 14px 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.arc-chip {
  display: inline-block;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 3px 10px;
  transition: all var(--transition);
}

.arc-chip:hover {
  background: rgba(245,130,31,0.08);
  border-color: var(--orange);
  color: var(--orange);
}

.areas-not-listed {
  background: var(--orange);
  padding: 20px 0;
}

.areas-not-listed-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.areas-not-listed-inner svg { flex-shrink: 0; opacity: 0.85; }

.areas-not-listed-inner p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.areas-not-listed-inner a { color: var(--white); font-weight: 700; }

.intercity-section { background: var(--white); }

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

.intercity-copy p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.intercity-cta-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
}

.intercity-cta-box h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.intercity-cta-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.intercity-cta-box .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.intercity-cta-box .btn:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .areas-regions-grid { grid-template-columns: repeat(2, 1fr); }
  .intercity-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .areas-regions-grid { grid-template-columns: 1fr; }
}

/* Service Hero */
.sp-hero {
  background: var(--dark2);
  padding: 130px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(245,130,31,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(245,130,31,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
}

.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(245,130,31,0.4);
  background: rgba(245,130,31,0.08);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.sp-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.sp-hero h1 em { font-style: normal; color: var(--orange); }

.sp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}

.sp-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}

.sp-hero-meta {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sp-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
  font-weight: 500;
}

.sp-meta-item svg { color: var(--orange); flex-shrink: 0; }

/* Feature Cards */
.sp-features-section { background: var(--white); }

.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

.sp-feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: left;
  transition: all var(--transition);
}

.sp-feature-card:hover {
  border-color: var(--orange-mid);
  background: var(--orange-light);
  transform: translateY(-2px);
}

.sp-fc-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.sp-fc-icon svg { width: 24px; height: 24px; }

.sp-feature-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.sp-feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Service Detail Section */
.sp-detail-section { background: var(--bg-light); }

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

.sp-detail-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.sp-detail-copy h2 em { font-style: normal; color: var(--orange); }

.sp-detail-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.sp-highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sp-highlight-check {
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sp-highlight-check svg { width: 11px; height: 11px; }

.sp-highlight-check svg path { stroke: white; }

/* Info box */
.sp-info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-card);
  padding: 24px;
}

.sp-info-box h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.sp-info-rows { display: flex; flex-direction: column; gap: 10px; }

.sp-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sp-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.sp-info-row span:first-child { color: var(--text-muted); }
.sp-info-row strong { font-weight: 600; color: var(--dark); }

/* FAQ Section */
.sp-faq-section { background: var(--white); }

.sp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 2.5rem;
}

.sp-faq-intro h2 { margin-bottom: 1rem; }
.sp-faq-intro p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* Related Services */
.sp-related-section { background: var(--bg-light); }

.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

/* Responsive — Service Pages */
@media (max-width: 1024px) {
  .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-hero { padding-top: 115px; }
  .sp-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .sp-faq-grid { grid-template-columns: 1fr; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-hero-meta { gap: 14px; }
}

@media (max-width: 480px) {
  .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-hero-actions { flex-wrap: nowrap; }
  .sp-hero-actions .btn { flex-shrink: 1; min-width: 0; font-size: 0.82rem; padding: 10px 16px; }
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */

.about-stats-band {
  background: var(--dark);
  padding: 28px 0;
}
.about-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.about-stat strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  font-family: var(--font-head);
}
.about-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.about-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Story */
.about-story-section { background: var(--white); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.about-trust-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 16px;
}
.about-trust-card:last-child { margin-bottom: 0; }
.atc-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.atc-icon-wrap svg { color: #fff; }
.about-trust-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-trust-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Values */
.about-values-section { background: var(--bg-light); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-value-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.avc-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,130,31,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.avc-icon svg { color: var(--orange); }
.about-value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Fleet */
.about-fleet-section { background: var(--white); }
.about-fleet-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.about-fleet-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.about-fleet-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-fleet-card strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.about-fleet-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.about-fleet-accept {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.about-fleet-accept h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.about-accept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-accept-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.about-accept-list li svg { color: var(--orange); flex-shrink: 0; }

/* About Reviews */
.about-reviews-section { background: var(--dark); }
.about-reviews-section .section-label { color: var(--orange); }
.about-reviews-section .section-title { color: var(--white); }
.about-reviews-section .section-title em { color: var(--orange); }
.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.arc-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.about-review-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.arc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.arc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.arc-author > span:last-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.arc-author strong { color: #fff; display: block; }

/* About responsive */
@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-fleet-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .about-reviews-grid { grid-template-columns: 1fr; }
  .about-fleet-cards { grid-template-columns: repeat(2, 1fr); }
  .about-stat { padding: 12px 20px; }
  .about-stat-sep { width: 100%; height: 1px; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-main-section { background: var(--bg-light); }
.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-sub,
.contact-info-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}
.cf-group label span { color: var(--orange); }
.cf-group input,
.cf-group select,
.cf-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
}
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-submit-row { margin-top: 4px; }
.cf-submit-btn { min-width: 160px; }
.cf-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #166534;
}
.cf-success svg { color: #16a34a; flex-shrink: 0; }
.cf-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #991b1b;
}
.cf-error a { color: var(--orange); }

/* Contact info */
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cii-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,130,31,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cii-icon svg { color: var(--orange); }
.cii-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}
.cii-body strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.cii-body a {
  font-size: 0.9rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.cii-body a:hover { text-decoration: underline; }
.cii-body span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.contact-quick-book {
  background: var(--dark);
  border-radius: var(--radius-card);
  padding: 24px;
  color: #fff;
}
.contact-quick-book h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.contact-quick-book p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

/* Map */
.contact-map-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Contact responsive */
@media (max-width: 1024px) {
  .contact-main-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; }
}

/* =====================================================
   GET A QUOTE PAGE
   ===================================================== */

/* Hero */
.gaq-hero {
  background: var(--dark);
  padding: 130px 0 48px;
  position: relative;
  overflow: hidden;
}
.gaq-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,130,31,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.gaq-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.gaq-hero-copy { max-width: 600px; }
.gaq-hero-copy .sp-hero-badge { margin-bottom: 18px; }
.gaq-hero-copy h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.gaq-hero-copy h1 em { font-style: normal; color: var(--orange); }
.gaq-hero-copy > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.gaq-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.gaq-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.gaq-trust-item svg { color: var(--orange); flex-shrink: 0; }

.gaq-hero-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  text-align: center;
  flex-shrink: 0;
}
.gaq-hero-alt > p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.gaq-call-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  font-family: var(--font-head);
}
.gaq-call-link:hover { color: #e07010; }
.gaq-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* Main layout */
.gaq-main-section { background: var(--bg-light); }
.gaq-main-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Form card */
.gaq-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
}
.gaq-form-head { margin-bottom: 32px; }
.gaq-form-head h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.gaq-form-head p { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 16px; }

.gaq-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff7ed;
  color: var(--orange);
  border: 1px solid #fed7aa;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.gaq-steps-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.gaq-step-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
}
.gaq-step-mini-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.gaq-steps-mini svg { color: var(--text-muted); flex-shrink: 0; }

.gaq-section-label svg { vertical-align: middle; margin-right: 5px; }

.gaq-label-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
  flex-shrink: 0;
}
.gaq-label-dot--green  { background: #16a34a; }
.gaq-label-dot--orange { background: var(--orange); }
.gaq-label-dot--red    { background: #dc2626; }

.gaq-submit-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.gaq-submit-note svg { color: #16a34a; flex-shrink: 0; }

.gaq-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: block;
}

.gaq-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gaq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gaq-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gaq-group--full { grid-column: 1 / -1; }
.gaq-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.gaq-group label svg { color: var(--orange); flex-shrink: 0; }
.gaq-group label span { color: var(--orange); }
.gaq-optional { color: var(--text-muted) !important; font-weight: 400 !important; font-size: 0.78rem; }
.gaq-group input,
.gaq-group select,
.gaq-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.gaq-group input:focus,
.gaq-group select:focus,
.gaq-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,31,0.12);
}
.gaq-group textarea { resize: vertical; min-height: 80px; }

/* Checkboxes */
.gaq-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gaq-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  user-select: none;
}
.gaq-checkbox input[type="checkbox"] { display: none; }
.gaq-cb-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.gaq-checkbox input:checked + .gaq-cb-box {
  background: var(--orange);
  border-color: var(--orange);
}
.gaq-checkbox input:checked + .gaq-cb-box::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* Submit */
.gaq-submit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.gaq-submit-btn { width: 100%; justify-content: center; gap: 8px; }
.gaq-submit-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.gaq-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-btn);
  padding: 16px;
  font-size: 0.875rem;
}
.gaq-success svg { color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.gaq-success strong { display: block; color: #166534; margin-bottom: 4px; }
.gaq-success span { color: #166534; }
.gaq-success a { color: var(--orange); }
.gaq-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #991b1b;
}
.gaq-error a { color: var(--orange); }

/* Toggle switch */
.gaq-toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.gaq-toggle-label input[type="checkbox"] { display: none; }
.gaq-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 50px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.gaq-toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.gaq-toggle-label input:checked + .gaq-toggle-switch { background: var(--orange); }
.gaq-toggle-label input:checked + .gaq-toggle-switch::after { transform: translateX(20px); }
.gaq-toggle-text { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

/* Return trip fields */
.gaq-return-fields {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: -8px;
}

/* Sidebar */
.gaq-sidebar { display: flex; flex-direction: column; gap: 20px; }
.gaq-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.gaq-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.gaq-sidebar-card--dark {
  background: var(--dark);
  border-color: var(--dark);
}
.gaq-sidebar-card--dark h3 { color: var(--white); }
.gaq-sidebar-card--dark p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.gaq-sidebar-card--dark .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
.gaq-sidebar-card--dark .btn-outline:hover { background: rgba(255,255,255,0.08); }
.gaq-sidebar-card--dark .btn-primary { width: 100%; justify-content: center; }
.gaq-wa-btn { display: flex; width: 100%; justify-content: center; gap: 8px; }

/* Steps */
.gaq-steps { display: flex; flex-direction: column; gap: 16px; }
.gaq-step { display: flex; align-items: flex-start; gap: 12px; }
.gaq-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.gaq-step-body { display: flex; flex-direction: column; gap: 2px; }
.gaq-step-body strong { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.gaq-step-body span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Fare rows */
.gaq-fare-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.gaq-fare-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.gaq-fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.gaq-fare-row:last-child { border-bottom: none; padding-bottom: 0; }
.gaq-fare-row span { color: var(--text-muted); }
.gaq-fare-row strong { color: var(--dark); font-weight: 600; }
.gaq-fare-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* Accept list */
.gaq-accept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gaq-accept-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.gaq-accept-list svg { color: var(--orange); flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .gaq-main-inner { grid-template-columns: 1fr; }
  .gaq-sidebar { flex-direction: row; flex-wrap: wrap; }
  .gaq-sidebar-card { flex: 1 1 calc(50% - 10px); min-width: 240px; }
}
@media (max-width: 768px) {
  .gaq-hero { padding-top: 120px; }
  .gaq-hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gaq-hero-copy { max-width: 100%; }
  .gaq-hero-alt { align-self: stretch; flex-shrink: 1; padding: 20px; }
  .gaq-call-link { font-size: 1.1rem; }
  .gaq-form-wrap { padding: 16px; }
  .gaq-form-head { margin-bottom: 20px; }
  .gaq-form-head h2 { font-size: 1.2rem; }
  .gaq-form { gap: 14px; }
  .gaq-row { grid-template-columns: 1fr; gap: 12px; }
  .gaq-checkboxes { grid-template-columns: 1fr; }
  .gaq-sidebar { flex-direction: column; }
  .gaq-sidebar-card { flex: none; min-width: 0; }
  .gaq-section-label { font-size: 0.8rem; margin-bottom: 12px; }
  .gaq-steps-mini { flex-direction: column; align-items: flex-start; gap: 6px; }
  .gaq-main-inner { gap: 24px; }
  .gaq-submit-btn { white-space: normal; text-align: center; }
  .gaq-submit-btn .gaq-btn-text { white-space: normal; }
  .gaq-fare-row { font-size: 0.78rem; }
}

/* =====================================================
   LEGAL PAGES (Privacy Policy & Terms)
   ===================================================== */

.legal-section { background: var(--bg-light); }

.legal-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* Body */
.legal-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px;
}

.legal-body h1 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 12px;
  padding-top: 4px;
}

.legal-body h2:first-of-type { margin-top: 24px; }

.legal-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-body ul li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-body a {
  color: var(--orange);
  text-decoration: none;
}

.legal-body a:hover { text-decoration: underline; }

.legal-body em { font-style: italic; }

.legal-contact-list {
  list-style: none !important;
  padding-left: 0 !important;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px !important;
  margin-bottom: 16px;
}

.legal-contact-list li {
  padding-left: 0 !important;
  font-size: 0.875rem !important;
}

/* Sidebar */
.legal-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}

.legal-sidebar-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.legal-sidebar-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.legal-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-sidebar-card ul li a {
  font-size: 0.83rem;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s;
}

.legal-sidebar-card ul li a:hover { color: #e07010; text-decoration: underline; }

.legal-sidebar-card .btn { width: 100%; justify-content: center; }

/* Responsive */
@media (max-width: 1024px) {
  .legal-inner { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .legal-sidebar-card { flex: 1 1 200px; }
}

@media (max-width: 640px) {
  .legal-body { padding: 24px; }
  .legal-sidebar { flex-direction: column; }
  .legal-sidebar-card { flex: none; }
}

/* =====================================================
   MOBILE FIXED FOOTER BAR
   ===================================================== */

.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    height: 64px;
  }

  .mcta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .mcta-btn:last-child { border-right: none; }
  .mcta-btn:active { background: rgba(255,255,255,0.06); }

  .mcta-book { color: var(--orange); }
  .mcta-book svg { color: var(--orange); }

  .mcta-call { color: rgba(255,255,255,0.85); }
  .mcta-call:hover { color: #fff; }

  .mcta-whatsapp { color: #25d366; }
  .mcta-whatsapp svg { color: #25d366; }

  /* Push page content up so it's not hidden behind the bar */
  body { padding-bottom: 64px; }
}

/* ============================================================
   FLEET PAGE
   ============================================================ */

.fleet-hero {
  background: var(--dark2);
  padding: 130px 0 44px;
  position: relative;
  overflow: hidden;
}

.fleet-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(245,130,31,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.fleet-hero-inner {
  position: relative;
  z-index: 1;
}

.fleet-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.fleet-hero-title em { font-style: normal; color: var(--orange); }

.fleet-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  max-width: 600px;
  line-height: 1.75;
}

/* Fleet Cards */
.fleet-section { background: var(--bg-light); }

.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.fleet-card:last-child { margin-bottom: 0; }

.fleet-card-alt .fleet-card-image { order: 2; }
.fleet-card-alt .fleet-card-body  { order: 1; }

.fleet-card-image {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 300px;
  position: relative;
}

.fleet-card-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
}

.fleet-img-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
}

.fleet-img-missing .fleet-img-fallback { display: flex; }

.fleet-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  width: fit-content;
}

.fleet-badge-gold  { background: #c9a227; }
.fleet-badge-blue  { background: #1e6fd6; }
.fleet-badge-dark  { background: var(--dark); }

.fleet-card-body h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.fleet-capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.fleet-capacity svg { color: var(--orange); flex-shrink: 0; }

.fleet-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fleet-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fleet-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.fleet-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.fleet-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Fleet Quote Section */
.fleet-quote-section { background: var(--white); }
#quoteSection { scroll-margin-top: 80px; }
@media (max-width: 768px) { #quoteSection { scroll-margin-top: 110px; } }

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

.fleet-quote-copy p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fleet-quote-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleet-quote-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.fleet-quote-contacts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  background: #25d366;
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
}

.btn-whatsapp:hover { background: #1ebe5d; }

.fleet-quote-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 28px;
  border: 1px solid var(--border);
  margin-top: 20px;
}

.fqi-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fqi-item svg { flex-shrink: 0; margin-top: 2px; }

.fqi-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.fqi-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Fleet responsive */
@media (max-width: 768px) {
  .fleet-hero { padding-top: 130px; }
}

@media (max-width: 900px) {
  .fleet-card { grid-template-columns: 1fr; }
  .fleet-card-alt .fleet-card-image { order: 0; }
  .fleet-card-alt .fleet-card-body  { order: 0; }
  .fleet-card-image { min-height: 220px; padding: 24px; }
  .fleet-card-body { padding: 28px 24px; }
  .fleet-quote-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .fleet-hero-title { font-size: 1.8rem; }
  .fleet-card-body h2 { font-size: 1.4rem; }
}

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */

.conf-hero {
  background: var(--dark2);
  padding: 130px 0 64px;
  text-align: center;
  position: relative;
}

.conf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(245,130,31,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.conf-hero-inner {
  position: relative;
  z-index: 1;
}

.conf-check {
  width: 72px;
  height: 72px;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #22c55e;
}

.conf-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.conf-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.conf-ref-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(245,130,31,0.12);
  border: 1.5px solid rgba(245,130,31,0.4);
  border-radius: 12px;
  padding: 14px 32px;
  gap: 4px;
}

.conf-ref-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.conf-ref-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.conf-details-section { background: var(--bg-light); }

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

.conf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
}

.conf-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.conf-table { width: 100%; border-collapse: collapse; }

.conf-table th {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  padding: 10px 12px;
  border-bottom: 1px solid #f5f5f5;
  width: 140px;
  vertical-align: top;
}

.conf-table td {
  font-size: 0.9rem;
  color: var(--dark);
  padding: 10px 12px;
  border-bottom: 1px solid #f5f5f5;
}

.conf-next-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
}

.conf-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.conf-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.conf-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conf-steps li strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.conf-steps li p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.conf-cta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.conf-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.conf-cta { display: flex; flex-direction: column; gap: 10px; }
.conf-cta p { margin: 0 0 4px; }

@media (max-width: 768px) {
  .conf-hero { padding-top: 130px; }
  .conf-grid { grid-template-columns: 1fr; }
  .conf-ref-num { font-size: 1.3rem; }
}

/* ── Google Places Autocomplete ── */
.pac-container {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  font-family: var(--font-body);
  margin-top: 4px;
  overflow: hidden;
}
.pac-container::after { display: none; }
.pac-item {
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text);
  border-top: 1px solid var(--border);
  cursor: pointer;
  line-height: 1.4;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected {
  background: #fff7ed;
}
.pac-item-query {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.pac-matched {
  color: var(--orange);
  font-weight: 700;
}
.pac-icon {
  background-image: none !important;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-color: var(--orange);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-2.083 3.204-4.511 3.204-7.327a8.5 8.5 0 10-17 0c0 2.816 1.26 5.244 3.204 7.327a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-2.083 3.204-4.511 3.204-7.327a8.5 8.5 0 10-17 0c0 2.816 1.26 5.244 3.204 7.327a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
