/* ============================================================
   ARION LUXURY TRANSPORTATION — Design System
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', 'Inter', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* --- CSS Variables --- */
:root {
  --teal: #2d3b3b;
  --teal-light: #3d5a5a;
  --gold: #c4a35a;
  --gold-light: #d4b86a;
  --green: #3d6b5e;
  --green-light: #4d7b6e;
  --cream: #f5f5f0;
  --gray-100: #f7f7f5;
  --gray-200: #e8e8e4;
  --gray-300: #d0d0cc;
  --gray-600: #6b6b6b;
  --gray-800: #333;
  --white: #fff;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* --- Typography --- */
.font-archivo { font-family: 'Archivo', sans-serif; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-white { color: #fff; }
.text-gray { color: var(--gray-600); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.15em; }
.tracking-wider { letter-spacing: 0.2em; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.italic { font-style: italic; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-teal { background: var(--teal); color: #fff; }
.bg-gray { background: var(--gray-100); }

/* --- Grid --- */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--teal);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  background: rgba(196, 163, 90, 0.1);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-text strong {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-logo-text span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
  position: relative;
}
.nav-link:hover { opacity: 0.8; }
.nav-link.active { opacity: 1; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.7;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  padding-top: 12px;
  min-width: 220px;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-panel {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  overflow: hidden;
  padding: 8px 0;
}
.nav-dropdown-panel a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-800);
  font-size: 14px;
  transition: background 0.15s;
}
.nav-dropdown-panel a:hover { background: var(--gray-100); color: var(--teal); }
.nav-dropdown-panel a:first-child { font-weight: 600; border-bottom: 1px solid var(--gray-200); margin-bottom: 4px; padding-bottom: 12px; }

/* Book Now button */
.btn-book-nav {
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-book-nav:hover { background: var(--green-light); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--teal);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  color: #fff;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .sub-links { padding-left: 20px; }
.mobile-menu .sub-links a { font-size: 14px; opacity: 0.8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-light); }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--teal);
}
.btn-white:hover { background: var(--gray-100); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-light); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-light); }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,59,59,0.7), rgba(45,59,59,0.5));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  opacity: 0.9;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  max-width: 700px;
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page hero (no image, solid teal bg) */
.hero-solid {
  background: var(--teal);
  min-height: 280px;
  padding: 60px 0;
}
.hero-solid .hero-content { padding: 40px 24px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

/* Service card (alternating layout) */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.service-card.reverse { direction: rtl; }
.service-card.reverse > * { direction: ltr; }
.service-card-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.service-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-card-body p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card-body ul {
  margin-bottom: 24px;
}
.service-card-body li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.service-card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Fleet card */
.fleet-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.fleet-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.fleet-card-body {
  padding: 20px;
}
.fleet-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.fleet-card-body .price {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 700;
}
.fleet-card-body .passengers {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.fleet-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--gray-600);
}
.fleet-card-body .ideal {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.fleet-card-body .ideal strong {
  color: var(--gray-800);
}

/* Review card */
.review-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}
.review-quote {
  font-size: 24px;
  color: var(--gray-300);
  margin-bottom: 8px;
  line-height: 1;
}
.review-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-author-info h4 { font-size: 0.9rem; font-weight: 600; }
.review-author-info span { font-size: 0.75rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--teal);
  color: #fff;
  padding: 48px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-item {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}
.pricing-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.pricing-item .price {
  font-family: 'Archivo', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
}
.pricing-item .unit {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ============================================================
   AMENITIES GRID
   ============================================================ */
.amenity-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.amenity-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.amenity-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.amenity-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.faq-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step-item { text-align: center; }
.step-number {
  font-family: 'Archivo', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}
.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.contact-info .text-gold {
  font-style: italic;
}
.contact-detail {
  margin-bottom: 24px;
}
.contact-detail .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 1.1rem;
  font-weight: 500;
}
.contact-detail a { color: var(--teal); }
.contact-form {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: var(--gray-100);
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--teal);
}
textarea.form-input { min-height: 120px; resize: vertical; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.trust-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badge::before {
  content: '●';
  font-size: 8px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle.centered {
  margin: 0 auto;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--gray-600);
  margin-bottom: 32px;
  font-size: 1.1rem;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.dest-card-overlay h3 { font-size: 1.3rem; }

/* ============================================================
   CONTENT SECTIONS (for service/destination detail pages)
   ============================================================ */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-section.reverse { direction: rtl; }
.content-section.reverse > * { direction: ltr; }
.content-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.content-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.content-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-text ul { margin-bottom: 24px; }
.content-text li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--gray-600);
}
.content-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--teal);
}
.legal-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}
.legal-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.legal-content li {
  list-style: disc;
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-100);
  padding: 60px 0 0;
  border-top: 1px solid var(--gray-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-icon { border-color: var(--teal); color: var(--teal); background: rgba(45,59,59,0.05); }
.footer-brand .nav-logo-text strong { color: var(--teal); }
.footer-brand .nav-logo-text span { color: var(--gray-600); }
.footer-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-800);
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-phone {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: var(--gray-800);
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-col .review-link {
  color: var(--gold);
  font-weight: 600;
}
.footer-certs {
  margin-top: 20px;
}
.footer-certs h5 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.footer-certs p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-600);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--gray-600);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 400px; }
  .hero h1 { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-card.reverse { direction: ltr; }
  .content-section { grid-template-columns: 1fr; }
  .content-section.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
}

/* ============================================================
   QUICK BOOKING BAR
   ============================================================ */
.quick-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.quick-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quick-bar-text {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.quick-bar-text strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.quick-bar-buttons {
  display: flex;
  gap: 12px;
}

/* ============================================================
   FEATURE LIST (with icons)
   ============================================================ */
.feature-list .feature-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-item h4::before {
  content: '▎';
  color: var(--teal);
}
.feature-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 20px;
}

/* Certification badges */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.cert-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-600);
  font-weight: 600;
}

/* Differentiator cards */
.diff-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px;
}
.diff-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.diff-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Home page specific - experience cards */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.experience-card {
  text-align: center;
  padding: 24px;
}
.experience-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* Blog preview cards */
.blog-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--gray-200);
}
.blog-card-body { padding: 20px; }
.blog-card-body .tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.blog-card-body .read-time {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Scroll banner */
.scroll-banner {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
  overflow: hidden;
}
.scroll-banner-inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-600);
}
.scroll-banner-inner span::before {
  content: '●';
  margin-right: 12px;
  color: var(--gold);
}

/* Shuttle card (home page) */
.shuttle-card {
  background: var(--teal);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.shuttle-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.shuttle-card-body h3 { font-size: 1.3rem; margin-bottom: 16px; }
.shuttle-card-body p { opacity: 0.8; margin-bottom: 24px; font-size: 0.95rem; }
.shuttle-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .shuttle-card { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .scroll-banner-inner { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* Center-justify all text on homepage and site-wide */
.section .container {
  text-align: center;
}
.content-section {
  text-align: left;
}
.card-body {
  text-align: center;
}
.diff-card {
  text-align: center;
}
.review-card {
  text-align: center;
}
.footer-col, .footer-brand {
  text-align: left;
}

.floating-book-btn:hover {
  background: #d4b36a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .floating-book-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 22px;
    font-size: 13px;
  }
}
