/* ══════════════════════════════════════════════════════════
   THIQQA — Inner Pages Shared CSS
   css/pages.css
   Used by: cities/*.html and fleet/*.html
══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --green: #0d2b1f;
  --green2: #142e20;
  --green3: #1a3a28;
  --green4: #224030;
  --gold: #c9a84c;
  --gold2: #e2c06a;
  --gold3: #f5e4a8;
  --cream: #f7f1e3;
  --white: #ffffff;
  --text: #d4c9b0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --slow: cubic-bezier(.25, .46, .45, .94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--green);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--green);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── NOISE ──────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  transition: background .4s var(--ease), padding .4s var(--ease);
}

nav.scrolled {
  background: rgba(13, 43, 31, .92);
  backdrop-filter: blur(14px);
  padding: .9rem 5vw;
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
}

.nav-logo span {
  color: var(--gold2);
}

.nav-back {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .25s;
}

.nav-back:hover {
  color: var(--gold2);
}

.nav-back svg {
  width: 16px;
  height: 16px;
}

/* ── HERO ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 8s var(--slow) forwards;
}

/* Gradient placeholder when no image */
.page-hero-img {
  background: linear-gradient(160deg, #0a2518, #1a4a2e 40%, #2d6b45);
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1);
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(13, 43, 31, .92) 0%, rgba(13, 43, 31, .4) 60%, rgba(13, 43, 31, .2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 4rem;
  width: 100%;
}

.page-hero-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .7s .2s var(--ease) forwards;
}

.page-hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .8s .35s var(--ease) forwards;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold2);
}

.page-hero-sub {
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  color: rgba(244, 235, 213, .75);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp .7s .5s var(--ease) forwards;
}

.page-hero-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
  opacity: 0;
  animation: fadeUp .7s .65s var(--ease) forwards;
}

.hero-meta-chip {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid rgba(201, 168, 76, .35);
  padding: .4rem 1rem;
  border-radius: 20px;
}

/* ── MAIN CONTENT ───────────────────────────────────────── */
.page-main {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.section-pad {
  padding: 6rem 0;
}

/* Section tag */
.section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .6rem;
}

.gold-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1.4rem 0;
}

/* ── INTRO BLOCK ────────────────────────────────────────── */
.intro-block {
  background: var(--green2);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.intro-text h2 em {
  font-style: italic;
  color: var(--gold2);
}

.intro-text p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.intro-quote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  background: rgba(201, 168, 76, .06);
}

.intro-img-wrap {
  position: relative;
  height: 480px;
}

.intro-img-main {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a4a2e, #0d2b1f);
}

.intro-img-main img {
  height: 100%;
  opacity: .8;
}

.intro-img-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 48%;
  height: 42%;
  border: 3px solid var(--green2);
  border-radius: 2px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d6b45, #1a4a2e);
}

.intro-img-accent img {
  opacity: .85;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* ── HIGHLIGHTS / ATTRACTIONS GRID ─────────────────────── */
.highlights-section {
  background: var(--green);
}

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

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold2);
}

.section-header p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
  margin-top: .8rem;
  max-width: 600px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: var(--green2);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 168, 76, .15);
}

.highlight-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a4a2e, #0d2b1f);
}

.highlight-card-img img {
  height: 100%;
  transition: transform .5s var(--slow);
  opacity: .85;
}

.highlight-card:hover .highlight-card-img img {
  transform: scale(1.06);
}

.highlight-card-num {
  position: absolute;
  top: .9rem;
  left: .9rem;
  font-family: var(--serif);
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(201, 168, 76, .9);
  padding: .2rem .6rem;
  border-radius: 2px;
  letter-spacing: .05em;
}

.highlight-card-body {
  padding: 1.5rem;
}

.highlight-card-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: .5rem;
}

.highlight-card-body p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.75;
}

.highlight-card-tag {
  display: inline-block;
  margin-top: .9rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .2rem .65rem;
  border-radius: 2px;
}

/* ── FACTS STRIP ────────────────────────────────────────── */
.facts-strip {
  background: var(--green3);
  border-top: 1px solid rgba(201, 168, 76, .1);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: rgba(201, 168, 76, .08);
}

.fact-box {
  background: var(--green3);
  padding: 2.4rem 1.5rem;
  text-align: center;
  transition: background .3s;
}

.fact-box:hover {
  background: var(--green4);
}

.fact-icon {
  font-size: 1.8rem;
  margin-bottom: .6rem;
}

.fact-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: .3rem;
}

.fact-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── TIPS SECTION ───────────────────────────────────────── */
.tips-section {
  background: var(--green2);
  border-top: 1px solid rgba(201, 168, 76, .1);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: var(--green3);
  padding: 1.8rem 1.6rem;
  border-radius: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .3s, background .3s;
}

.tip-card:hover {
  border-color: var(--gold);
  background: var(--green4);
}

.tip-icon {
  font-size: 1.5rem;
  margin-bottom: .9rem;
}

.tip-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .5rem;
}

.tip-card p {
  font-size: .83rem;
  color: var(--text);
  line-height: 1.7;
}

/* ── CTA STRIP ──────────────────────────────────────────── */
.page-cta {
  background: var(--green);
  border-top: 1px solid rgba(201, 168, 76, .15);
  text-align: center;
  padding: 5rem 5vw;
}

.page-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-cta h2 em {
  font-style: italic;
  color: var(--gold2);
}

.page-cta p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2.4rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
  padding: .9rem 2.4rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  transition: background .25s, transform .2s, box-shadow .25s;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: .9rem 2.4rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .35);
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  transition: border-color .25s, color .25s, transform .2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold2);
  transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.page-footer {
  background: #081510;
  border-top: 1px solid rgba(201, 168, 76, .12);
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.page-footer-logo span {
  color: var(--gold2);
}

.page-footer p {
  font-size: .75rem;
  color: rgba(180, 168, 140, .4);
}

.page-footer .slogan {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: .85rem;
}

/* ── FLEET PAGE SPECIFIC ────────────────────────────────── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.vehicle-card {
  background: var(--green2);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 168, 76, .2);
}

.vehicle-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.vehicle-card-img img {
  height: 100%;
  transition: transform .5s var(--slow);
  opacity: .92;
}

.vehicle-card:hover .vehicle-card-img img {
  transform: scale(1.04);
}

/* ── Image Slider ── */
.vehicle-slides {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
}

.vehicle-slides img {
  min-width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: .92;
  flex-shrink: 0;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 30, 20, .65);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold2);
  width: 32px;
  height: 32px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .2s, opacity .2s;
  font-size: .9rem;
  line-height: 1;
  padding: 0;
}

.slide-btn:hover {
  background: rgba(201, 168, 76, .2);
}

.slide-btn.prev {
  left: .6rem;
}

.slide-btn.next {
  right: .6rem;
}

.slide-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.slide-dots {
  position: absolute;
  bottom: .55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  z-index: 5;
}

.slide-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transition: background .2s;
}

.slide-dot.active {
  background: var(--gold2);
}

.vehicle-badge {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: rgba(201, 168, 76, .9);
  color: var(--green);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2px;
}

.vehicle-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
}

.vehicle-card-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: .3rem;
}

.vehicle-card-subtitle {
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: .8rem;
  letter-spacing: .04em;
}

.vehicle-card-body p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  color: var(--text);
}

.spec-item svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.vehicle-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.vehicle-tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .22rem .6rem;
  border-radius: 2px;
}

.vehicle-card-footer {
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px solid rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vehicle-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold2);
}

.vehicle-price span {
  font-size: .75rem;
  color: var(--text);
  font-family: var(--sans);
}

.book-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold2);
  padding: .45rem 1.1rem;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s;
  font-family: var(--sans);
  text-decoration: none;
  display: inline-block;
}

.book-btn:hover {
  background: rgba(201, 168, 76, .12);
}

/* ── OTHER CITIES / FLEET STRIP ─────────────────────────── */
.others-section {
  background: var(--green3);
  border-top: 1px solid rgba(201, 168, 76, .1);
}

.others-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.other-chip {
  display: block;
  padding: .9rem 1rem;
  background: var(--green2);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 2px;
  text-align: center;
  font-size: .82rem;
  color: var(--text);
  transition: border-color .25s, color .25s, background .25s;
}

.other-chip:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: var(--green3);
}

.other-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: .15rem;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-img-wrap {
    height: 320px;
  }

  .intro-img-accent {
    left: 0;
    bottom: -1rem;
  }

  .page-hero {
    height: 55vh;
    min-height: 380px;
  }

  .page-hero-content {
    padding-bottom: 2.5rem;
  }

  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .facts-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding: 4rem 0;
  }

  /* Hero */
  .page-hero {
    height: 50vh;
    min-height: 340px;
  }

  .page-hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .page-hero-content {
    padding: 0 4vw 2rem;
  }

  .page-hero-meta {
    gap: .6rem;
  }

  .hero-meta-chip {
    font-size: .65rem;
    padding: .3rem .75rem;
  }

  /* Intro */
  .intro-text h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .intro-quote {
    font-size: 1rem;
    padding: .8rem 1.1rem;
  }

  .intro-img-wrap {
    height: 240px;
  }

  .intro-img-accent {
    display: none;
  }

  /* Highlights */
  .highlights-grid,
  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card-img {
    height: 180px;
  }

  /* Facts */
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-box {
    padding: 1.8rem 1rem;
  }

  .fact-value {
    font-size: 1.5rem;
  }

  /* Tips */
  .tips-grid {
    grid-template-columns: 1fr;
  }

  /* Others */
  .others-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Vehicle */
  .vehicle-specs {
    grid-template-columns: 1fr;
  }

  .vehicle-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }

  .book-btn {
    width: 100%;
    text-align: center;
  }

  /* CTA */
  .page-cta {
    padding: 3.5rem 4vw;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Footer */
  .page-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
    padding: 1.5rem 4vw;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 400px) {
  .page-hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

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

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

  .vehicle-slides img {
    height: 180px;
  }
}