/* ============================================================
   John's Creek Charter Bus Company — styles.css
   Production-ready stylesheet
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary:       #0a1f3c;
  --primary-mid:   #0e2d55;
  --primary-light: #1a4a7a;
  --accent:        #d4872a;
  --accent-light:  #f0a84a;
  --accent-dark:   #a86320;
  --white:         #ffffff;
  --off-white:     #f8f9fb;
  --light-gray:    #f1f4f8;
  --mid-gray:      #dde3ec;
  --dark-gray:     #556070;
  --text:          #1a2537;
  --text-light:    #64748b;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.18);
  --transition:    .3s ease;
  --header-h:      80px;
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  padding-top: var(--header-h);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

.two-col-wide {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 48px;
}

.two-col-content {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 48px;
}

.section {
  padding: 80px 0;
}

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

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
    border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================================
   TWO-TIER HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.header-topbar {
  background: var(--accent);
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: transform .35s ease;
  font-size: 0.82rem;
  color: var(--white);
  overflow: hidden;
}

.header-topbar a {
  color: var(--white);
  text-decoration: none;
}

.header-topbar a:hover {
  text-decoration: underline;
  color: var(--white);
}

.header-topbar-left,
.header-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-main {
  background: var(--primary);
  height: 52px;
  display: flex;
  align-items: center;
  position: relative;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header.scrolled .header-topbar {
  transform: translateY(-100%);
}

.site-header.scrolled .header-main {
  box-shadow: var(--shadow);
}

.site-header.opaque .header-topbar {
  transform: translateY(0);
}

/* ============================================================
   LOGO
   ============================================================ */
.logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-name {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.2;
}

.logo-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   DESKTOP NAV
   ============================================================ */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-link.active {
  color: var(--accent-light);
}

.drop-arrow {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition);
}

.nav-item.has-dropdown:hover .drop-arrow,
.nav-item.has-dropdown:focus-within .drop-arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  z-index: 100;
  padding: 8px 0;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background .2s, color .2s;
}

.dropdown-link:hover {
  background: var(--light-gray);
  color: var(--accent);
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn {
  font-size: 0.88rem;
  padding: 9px 20px;
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
#mob-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--primary-mid);
  z-index: 999;
  transform: translateY(-110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s ease, visibility .35s ease;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

#mob-nav.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mob-nav-inner {
  padding: 16px 24px 32px;
}

.mob-link {
  display: block;
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 1rem;
  transition: color var(--transition);
}

.mob-link:hover {
  color: var(--accent-light);
}

.mob-group {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mob-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mob-group-parent {
  flex: 1;
  padding: 12px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
}

.mob-group-parent:hover {
  color: var(--accent-light);
}

.mob-expand-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  padding: 8px;
  cursor: pointer;
  line-height: 1;
  transition: transform var(--transition);
}

.mob-expand-btn[aria-expanded="true"] {
  transform: rotate(45deg);
}

.mob-sub {
  display: none;
  padding-left: 16px;
  padding-bottom: 8px;
}

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

.mob-sub-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.mob-sub-link:hover {
  color: var(--accent-light);
}

.mob-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mob-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.mob-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mob-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mob-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-cta-row {
  padding: 20px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   HERO (SPLIT LAYOUT)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  position: relative;
}

.hero-left {
  flex: 0 0 50%;
  background: var(--primary);
  padding: 120px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.hero-right {
  flex: 0 0 55%;
  background: url('/img/charter-bus-hero-2.jpg') center / cover no-repeat var(--primary-mid);
  margin-left: -5%;
}

.hero-eyebrow {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.scroll-arrow {
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
  margin-top: auto;
}

.scroll-arrow:hover {
  color: rgba(255, 255, 255, .9);
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--accent);
  padding: 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 24px;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 1.2rem;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  flex-shrink: 0;
}

/* ============================================================
   FLEET ROWS
   ============================================================ */
.fleet-rows {
  display: flex;
  flex-direction: column;
}

.fleet-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--mid-gray);
  transition: border-left .2s;
}

.fleet-row.hovered {
  border-left: 3px solid var(--accent);
}

.fleet-row.reverse {
  flex-direction: row-reverse;
}

.fleet-row-img {
  flex: 0 0 40%;
  overflow: hidden;
  min-height: 280px;
}

.fleet-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.fleet-row:hover .fleet-row-img img {
  transform: scale(1.03);
}

.fleet-row-content {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-row-content .capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fleet-row-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.fleet-row-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.amenities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.amenity-tag {
  font-size: 0.78rem;
  background: var(--light-gray);
  color: var(--dark-gray);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--mid-gray);
}

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.step-number {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.step-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   SERVICES LIST
   ============================================================ */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--mid-gray);
  align-items: flex-start;
}

.service-row-icon {
  flex: 0 0 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.service-row-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--accent);
}

.service-row-content {
  flex: 1;
}

.service-row-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.service-row-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.service-arrow-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color var(--transition), color var(--transition);
}

.service-arrow-link:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-featured {
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius-lg);
  padding: 40px;
  border-left: 4px solid var(--accent);
  position: relative;
  margin-bottom: 32px;
}

.testimonial-featured::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 16px;
  left: 32px;
  font-family: Georgia, serif;
  opacity: .6;
}

.testimonial-featured blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .9);
  margin: 0;
  padding-top: 40px;
  font-style: italic;
}

.testimonial-featured .t-attr {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-sm {
  background: rgba(255, 255, 255, .07);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.testimonial-sm p {
  color: rgba(255, 255, 255, .85);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.t-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.t-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .5);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--accent);
  padding: 60px 0;
}

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

.cta-banner h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

/* ============================================================
   BOOKING BOX
   ============================================================ */
.booking-box {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--mid-gray);
}

.booking-box h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.booking-box .bb-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.booking-box .bb-phone:hover {
  color: var(--accent-dark);
}

.booking-box .bb-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

/* ============================================================
   SPECS TABLE
   ============================================================ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.specs-table th,
.specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--mid-gray);
}

.specs-table th {
  background: var(--light-gray);
  font-weight: 600;
  color: var(--primary);
  width: 40%;
}

.specs-table tr:last-child td,
.specs-table tr:last-child th {
  border-bottom: none;
}

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--mid-gray);
  color: var(--text);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FLEET COMPARE TABLE
   ============================================================ */
.fleet-compare-wrapper {
  overflow-x: auto;
}

.fleet-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.fleet-compare-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.fleet-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--mid-gray);
  vertical-align: top;
}

.fleet-compare-table tr:nth-child(even) {
  background: var(--light-gray);
}

.fleet-compare-table tr:hover {
  background: rgba(212, 135, 42, .08);
}

/* ============================================================
   SCENARIO CARDS
   ============================================================ */
.scenario-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scenario-card {
  background: var(--light-gray);
  border-left: 4px solid var(--accent);
  padding: 28px;
  border-radius: var(--radius);
}

.scenario-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.scenario-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT HERO CARD
   ============================================================ */
.contact-hero-card {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.contact-hero-card h2 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-hero-card p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
  font-size: 1rem;
}

.contact-hero-card .big-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

.contact-hero-card .big-phone:hover {
  text-decoration: underline;
  color: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-info-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--mid-gray);
}

.contact-info-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info-card p,
.contact-info-card address {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: normal;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform .2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-a p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   AMENITIES GRID
   ============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

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

.amenity-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: var(--primary-mid);
  padding: 60px 0;
  text-align: center;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--mid-gray);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.breadcrumb li:last-child {
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   VEHICLE DETAIL
   ============================================================ */
.vehicle-detail-layout {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: start;
}

.vehicle-detail-sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.vehicle-detail-img {
  object-fit: contain;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background-color: var(--light-gray);
  display: block;
}

.vehicle-eyebrow {
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.service-detail-layout {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 48px;
  align-items: start;
}

.service-sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

/* ============================================================
   RECOMMENDED VEHICLES
   ============================================================ */
.rec-vehicles {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rec-vehicle-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition);
}

.rec-vehicle-card:hover {
  background: var(--mid-gray);
  color: var(--text);
}

.rec-vehicle-thumb {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-pre {
  background: var(--accent);
  padding: 28px 0;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
}

.footer-pre a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

.footer-pre a:hover {
  color: var(--white);
  opacity: 0.85;
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, .7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  margin-top: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .45);
}

/* ============================================================
   FLOAT CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform .2s;
  animation: pulse-btn 2s infinite;
}

.float-call:hover {
  transform: scale(1.1);
}

.float-call svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 135, 42, .5); }
  50%       { box-shadow: 0 0 0 12px rgba(212, 135, 42, 0); }
}

/* ============================================================
   INLINE LINK COLORS
   ============================================================ */
.section p a,
.section li a {
  color: var(--accent);
  text-decoration: underline;
}

.section p a:hover,
.section li a:hover {
  color: var(--accent-dark);
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- 1024px Tablet breakpoint --- */
@media (max-width: 1024px) {
  .desktop-nav,
  .desktop-only,
  .nav-cta.desktop-only {
    display: none !important;
  }

  .mob-toggle {
    display: flex;
  }

  #mob-nav {
    display: block;
  }

  .fleet-row,
  .fleet-row.reverse {
    flex-direction: column;
  }

  .fleet-row-img {
    min-height: 220px;
    width: 100%;
    flex: none;
  }

  .two-col-wide,
  .service-detail-layout,
  .vehicle-detail-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-sticky,
  .service-sticky {
    position: static;
  }

  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    align-items: center;
  }
}

/* --- 768px Mobile breakpoint --- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-left {
    flex: none;
    min-height: 60vh;
    clip-path: none;
    padding: 100px 32px 60px;
  }

  .hero-right {
    flex: none;
    height: 40vh;
    width: 100%;
    margin-left: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .testimonials-sm {
    grid-template-columns: 1fr;
  }

  .scenario-cards {
    grid-template-columns: 1fr;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

  .two-col-content {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* --- 480px Small mobile breakpoint --- */
@media (max-width: 480px) {
  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-item {
    width: 50%;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .trust-item:not(:last-child)::after {
    display: none;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-card {
    padding: 32px 24px;
  }

  .contact-hero-card .big-phone {
    font-size: 1.6rem;
  }

  .hero-left {
    padding: 100px 24px 48px;
  }

  .fleet-row-content {
    padding: 28px 24px;
  }

  .cta-banner {
    padding: 40px 0;
  }
}
