@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ========================================
   CSS Variables
======================================== */
:root {
  --primary-dark:         #002844;
  --primary-accent:       #a92467;
  --primary-accent-hover: #7c173e;
  --bg-light:             #f4f5f7;
  --bg-lighter:           #f9f9f9;
  --footer-dark:          #15222e;
  --text-secondary:       #959ead;
  --text-muted:           #666;
  --text-body:            #555;
  --white:                #ffffff;
  --border-light:         rgba(0, 40, 68, 0.08);
  --shadow-soft:          0 2px 12px rgba(12, 14, 28, 0.08);
  --shadow-card:          0 4px 16px rgba(0, 40, 68, 0.08);
  --shadow-elevated:      0 8px 32px rgba(0, 40, 68, 0.1);
  --shadow-hover:         0 12px 40px rgba(0, 40, 68, 0.16);
  /* car-card specific */
  --cream:                #faf7f2;
  --cream-warm:           #f5efe6;
  --warm-gray:            #6b6260;
  --radius-sm:            8px;
  --radius-lg:            16px;
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after { box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
}

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

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

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

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4 {
  font-family: "Roboto Slab", serif;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.85;
  font-family: "Roboto Slab", serif;
}

p:last-child { margin-bottom: 0; }

/* ========================================
   Top nav bar
======================================== */
.top-nav {
  background: var(--bg-light);
  color: var(--primary-dark);
  text-align: center;
  padding: 10px;
}

.top-nav p {
  margin: 0;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   Main navigation
======================================== */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.main-nav .logo a {
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
  text-decoration: none;
}

.main-nav .menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav .menu a {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  font-family: "Roboto", sans-serif;
}

.main-nav .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  transition: width 0.2s ease;
}

.main-nav .menu a:hover::after,
.main-nav .menu a.active::after { width: 100%; }

.main-nav .menu a:hover,
.main-nav .menu a.active { color: var(--primary-accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  transition: all 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   ARTICLE HEADER  (Claude blog layout)
   — editorial two-column: H1 left, meta right
======================================== */
.article-header {
  background: var(--bg-light);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--border-light);
}

/* Social proof — inline under H1 */
.social-proof-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 0;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f5a623;
  font-size: 0.95rem;
}

.rating-score {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-left: 4px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.rating-divider {
  color: var(--border-light);
  font-size: 1.1rem;
}

.rating-detail {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-detail i {
  color: var(--primary-accent);
  font-size: 0.8rem;
}

.article-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 80px;
  align-items: start;
}


/* Very large editorial H1 — matches Claude's display size */
.article-header-main h1 {
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

.article-lead {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 600px;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

/* Metadata sidebar — Claude-style labels + values */
.article-meta {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meta-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.meta-label i {
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
  color: var(--text-muted);
}

.meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding-left: 21px;
  font-family: "Roboto", sans-serif;
}

/* Copy link button */
.copy-link-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copy-link-btn:hover { color: var(--primary-accent); }

/* Inline CTA in sidebar */
.meta-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: "Roboto", sans-serif;
  margin-top: 8px;
  transition: background 0.2s ease;
}

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

/* ========================================
   Layout helpers
======================================== */
/* Narrow reading column — editorial blog width */
.reading-col {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}


.section {
  padding: 80px 0;
}

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

.section-label {
  display: inline-block;
  color: var(--primary-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-family: "Roboto", sans-serif;
}

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

.section-header .section-label { margin-bottom: 10px; }

.section-description {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 16px auto 0;
  font-family: "Roboto", sans-serif;
}

/* Reading col: space headings from labels */
.reading-col .section-label { display: block; }
.reading-col h2 { margin-bottom: 20px; margin-top: 6px; }

/* Inline content links */
.reading-col p a,
.article-lead a,
.faq-answer p a {
  color: var(--primary-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.reading-col p a:hover,
.article-lead a:hover,
.faq-answer p a:hover {
  color: var(--primary-accent-hover);
}

/* Destination card title links */
.dest-content h3 a {
  color: var(--primary-dark);
  text-decoration: none;
}

.dest-content h3 a:hover {
  color: var(--primary-accent);
}

.section-intro-text {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   Buttons
======================================== */
.btn-primary {
  display: inline-block;
  background: var(--primary-accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid var(--primary-accent);
  font-family: "Roboto", sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid var(--border-light);
  font-family: "Roboto", sans-serif;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.45);
  font-family: "Roboto", sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-large { padding: 18px 48px; font-size: 1rem; }

/* ========================================
   Stat bar
======================================== */
.stat-bar {
  display: flex;
  align-items: stretch;
  background: var(--bg-light);
  border-radius: 4px;
  margin: 40px 0 0;
  overflow: hidden;
}

.stat-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px;
}

.stat-bar-divider {
  width: 1px;
  background: var(--border-light);
}

.stat-number {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   Fleet grid
======================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* 3rd card spans both columns to sit centred */
.fleet-grid .car-card:nth-child(3):last-child {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.fleet-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--text-muted);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

.fleet-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  font-family: "Roboto", sans-serif;
}

/* ── Car cards — identical to carhire page ── */
.car-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 40, 68, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.car-image-wrap {
  background: linear-gradient(145deg, var(--cream-warm), var(--cream));
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.car-image-wrap img {
  width: 100%;
  max-width: 280px;
  height: 160px;
  object-fit: contain;
}

.car-info {
  padding: 20px 24px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-info h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
  color: var(--primary-dark);
  line-height: 1.3;
}

.car-info h3 span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.car-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 40, 68, 0.06);
}

.car-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--warm-gray);
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}

.car-features span i {
  color: var(--primary-accent);
  font-size: 0.8125rem;
}

.price-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px 24px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%);
  border-top: 1px solid rgba(0, 40, 68, 0.06);
  gap: 4px;
}

.price-section .price {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--warm-gray);
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.total-price {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Roboto Slab", serif;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.book-btn {
  display: block;
  margin-top: 14px;
  padding: 13px 32px;
  background-color: var(--primary-accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.3px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.book-btn:hover {
  background-color: var(--primary-accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.fleet-browse-link {
  margin-top: 28px;
  text-align: center;
}

.fleet-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-accent);
  font-family: "Roboto", sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.fleet-browse-btn:hover { color: var(--primary-accent-hover); }

/* ========================================
   Self-drive vs Chauffeur comparison table
======================================== */
.compare-table {
  margin: 32px 0;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.compare-header {
  background: var(--primary-dark);
}

.compare-col-label {
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: "Roboto", sans-serif;
}

.compare-col-head {
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.compare-row {
  border-top: 1px solid var(--border-light);
}

.compare-row:nth-child(even) { background: var(--bg-lighter); }

.compare-col {
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: var(--text-body);
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
  border-left: 1px solid var(--border-light);
}

.compare-row .compare-col-label {
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: "Roboto", sans-serif;
}

.compare-yes  { color: #16a34a; }
.compare-no   { color: #dc2626; }
.compare-neutral { color: var(--text-muted); }

/* Info callout */
.info-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(169, 36, 103, 0.06);
  border-left: 4px solid var(--primary-accent);
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
  margin-top: 28px;
}

.info-callout i {
  font-size: 1.125rem;
  color: var(--primary-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.info-callout p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  font-family: "Roboto", sans-serif;
  line-height: 1.65;
}

/* ========================================
   How to book — numbered steps
======================================== */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.step-item:last-child { border-bottom: none; }

.step-number {
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-light);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  padding-top: 4px;
  -webkit-text-stroke: 2px var(--border-light);
  color: transparent;
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.step-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  font-family: "Roboto", sans-serif;
}

.cta-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ========================================
   Destinations grid
======================================== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.dest-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.2s ease;
}

.dest-card:hover { box-shadow: var(--shadow-elevated); }

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

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-img img { transform: scale(1.05); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,40,68,0.55) 100%);
}

.dest-content {
  padding: 24px 28px;
  background: var(--white);
}

.dest-distance {
  font-size: 0.8125rem;
  color: var(--primary-accent);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Roboto", sans-serif;
}

.dest-content h3 { margin-bottom: 12px; }

.dest-content p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   Driving tips grid
======================================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.tip-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 28px 24px;
  transition: box-shadow 0.2s ease;
}

.tip-card:hover { box-shadow: var(--shadow-card); }

.tip-icon {
  width: 48px;
  height: 48px;
  background: rgba(169, 36, 103, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tip-icon i {
  font-size: 1.125rem;
  color: var(--primary-accent);
}

.tip-card h3 { margin-bottom: 10px; font-size: 1rem; }

.tip-card p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   Why Kizingo list
======================================== */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}

.why-item:last-child { border-bottom: none; }

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  font-size: 1.25rem;
  color: var(--primary-accent);
}

.why-text h3 { margin-bottom: 8px; font-size: 1.0625rem; }

.why-text p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   FAQ accordion
======================================== */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: "Roboto Slab", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
}

.faq-question:hover { color: var(--primary-accent); }

.faq-icon {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

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

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* ========================================
   CTA section
======================================== */
.section-cta {
  background: var(--white);
  padding: 60px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #003d66 100%);
  border-radius: 6px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

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

/* ========================================
   Footer
======================================== */
footer {
  background-color: var(--footer-dark);
  color: var(--text-secondary);
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Roboto Slab", serif;
}

.footer-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 0.9375rem;
  font-family: "Roboto", sans-serif;
}

.footer-section ul li a { color: var(--text-secondary); }
.footer-section ul li a:hover { color: var(--white); }

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-links a:hover { background: var(--primary-accent); }
.social-links a:hover i { color: var(--white) !important; }

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
}

.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--white); }

.review-us-title {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #959ead;
  margin: 18px 0 10px;
}

.footer-review-links { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-family: "Roboto", sans-serif;
}

.footer-review-btn:hover { transform: translateY(-2px); }

.footer-google-btn {
  background: rgba(255,255,255,0.9);
  color: #3c4043;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.footer-google-btn:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}

.footer-google-btn .fa-google {
  display: inline-block;
  font-size: 13px;
  background: linear-gradient(135deg, #4285F4 20%, #EA4335 50%, #FBBC05 75%, #34A853 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-trip-btn {
  background: #34e0a1;
  color: #000;
  box-shadow: 0 2px 8px rgba(52,224,161,0.2);
}

.footer-trip-btn:hover {
  background: #2bcf93;
  box-shadow: 0 4px 14px rgba(52,224,161,0.3);
  color: #000;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
  .article-header-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }

  .article-meta {
    padding-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 40px;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
  }

  .meta-item { flex-direction: row; align-items: center; gap: 16px; }
  .meta-value { padding-left: 0; }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 40px;
  }

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

@media (max-width: 768px) {
  .main-nav { padding: 16px; }

  .main-nav .menu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 16px;
    box-shadow: var(--shadow-elevated);
  }

  .main-nav .menu.active { display: flex; }

  .main-nav .menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
  }

  .main-nav .menu a:last-child { border-bottom: none; }

  .hamburger { display: flex; }

  .article-header { padding: 48px 0 56px; }

  .article-header-inner { padding: 0 20px; }

  .article-header-main h1 {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .section { padding: 60px 0; }

  .reading-col { padding: 0 20px; }

  .dest-grid  { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }

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

  .compare-table { font-size: 0.875rem; overflow-x: auto; display: block; }

  .step-number { font-size: 1.875rem; width: 44px; }

  .cta-box { padding: 40px 24px; }

  .cta-actions { justify-content: center; }

  .footer-container { grid-template-columns: 1fr; text-align: center; }

  .social-links { justify-content: center; }

  .footer-review-links { justify-content: center; }
}

@media (max-width: 480px) {
  .stat-bar { flex-wrap: wrap; }
  .stat-bar-item { flex: 1 1 45%; }
  .stat-bar-divider { display: none; }

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

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; text-align: center; }

  .meta-item { flex-direction: column; }
}
