/* RCK Transportation — shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0A1F3D;
  --navy-deep: #061429;
  --navy-soft: #1c3458;
  --gold: #C9A36B;
  --gold-deep: #A6824A;
  --gold-light: #E5D4B5;
  --cream: #FDFBF7;
  --cream-warm: #F7F2E8;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #5C5C5C;
  --text-mute: #8a8579;
  --border: #E8E2D5;
  --border-soft: #F0EBDF;
  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.06);
  --shadow-md: 0 8px 28px rgba(10, 31, 61, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 31, 61, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-deep); }

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

/* ============ NAVIGATION ============ */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 1000;
  padding: 16px 0;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.5rem; color: var(--navy);
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.logo span { color: var(--gold-deep); font-weight: 500; }

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 0.94rem; color: var(--text);
  position: relative; padding: 6px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-cta {
  background: var(--navy); color: var(--cream) !important;
  padding: 11px 22px; border-radius: 6px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--navy-deep); color: var(--cream) !important; transform: translateY(-1px); }

.menu-toggle {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--navy);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.25s, background 0.2s;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy); color: var(--cream);
  box-shadow: 0 6px 20px rgba(10, 31, 61, 0.25);
}
.btn-primary:hover { background: var(--navy-deep); color: var(--cream); box-shadow: 0 10px 28px rgba(10, 31, 61, 0.35); }
.btn-gold {
  background: var(--gold); color: var(--white);
  box-shadow: 0 6px 20px rgba(201, 163, 107, 0.35);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(253, 251, 247, 0.4);
}
.btn-ghost:hover { background: rgba(253, 251, 247, 0.1); color: var(--cream); }

/* ============ LAYOUT ============ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  color: var(--gold-deep); font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-header h2 {
  font-size: 2.8rem; margin-bottom: 18px;
}
.section-header p {
  font-size: 1.15rem; color: var(--text-soft);
}
.divider {
  width: 60px; height: 2px; background: var(--gold);
  margin: 0 auto 24px;
}

/* ============ PAGE HEADER (interior pages) ============ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 163, 107, 0.18), transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 163, 107, 0.10), transparent 70%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.page-header .eyebrow { color: var(--gold); }
.page-header h1 {
  color: var(--cream); font-size: 3.4rem; margin-bottom: 18px;
}
.page-header p {
  font-size: 1.2rem; opacity: 0.9; max-width: 640px; margin: 0 auto;
}
.breadcrumb {
  margin-top: 28px; font-size: 0.92rem; opacity: 0.75;
}
.breadcrumb a { color: var(--gold); }

/* ============ HERO (home only) ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, #04101f 100%);
  color: var(--cream);
  padding: 170px 0 110px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 163, 107, 0.20), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 163, 107, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px;
  align-items: center; position: relative; z-index: 1;
}
.hero h1 {
  color: var(--cream); font-size: 3.8rem; line-height: 1.08;
  margin-bottom: 24px; font-weight: 700;
}
.hero h1 em {
  color: var(--gold); font-style: italic; font-weight: 600;
}
.hero p.lead {
  font-size: 1.22rem; opacity: 0.92; margin-bottom: 36px;
  max-width: 540px; line-height: 1.6;
}
.hero-trust {
  display: flex; gap: 28px; margin-bottom: 40px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(253, 251, 247, 0.12);
}
.trust-item { font-size: 0.92rem; opacity: 0.85; }
.trust-item strong {
  display: block; color: var(--gold); font-size: 1.6rem;
  font-family: 'Playfair Display', serif; font-weight: 700;
  margin-bottom: 2px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--cream);
  color: var(--text);
  border-radius: 14px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-badge {
  position: absolute; top: -14px; right: 30px;
  background: var(--gold); color: var(--white);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-card h3 {
  font-size: 1.5rem; color: var(--navy); margin-bottom: 8px;
}
.hero-card .sub { color: var(--text-soft); margin-bottom: 28px; font-size: 0.97rem; }
.quick-info { display: flex; flex-direction: column; gap: 18px; }
.quick-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border-soft);
}
.quick-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.quick-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream-warm); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.quick-info-text strong {
  display: block; color: var(--navy); margin-bottom: 2px;
  font-size: 0.95rem; font-weight: 600;
}
.quick-info-text a, .quick-info-text span {
  color: var(--text-soft); font-size: 0.95rem;
}

/* ============ FEATURE GRID ============ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.feature {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: 38px 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 22px;
}
.feature h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature p { color: var(--text-soft); font-size: 0.97rem; }

/* ============ SPLIT SECTION ============ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.split-text h2 { font-size: 2.4rem; margin-bottom: 22px; }
.split-text p {
  font-size: 1.08rem; color: var(--text-soft); margin-bottom: 18px;
}
.split-text ul { list-style: none; margin: 24px 0; }
.split-text ul li {
  padding: 12px 0 12px 32px; position: relative;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}
.split-text ul li:last-child { border-bottom: none; }
.split-text ul li::before {
  content: '✓'; position: absolute; left: 0; top: 11px;
  color: var(--gold-deep); font-weight: 700; font-size: 1.1rem;
}

.split-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 16px; padding: 60px 50px;
  color: var(--cream); position: relative; overflow: hidden;
}
.split-visual::before {
  content: '"'; position: absolute; top: -30px; left: 30px;
  font-size: 14rem; color: var(--gold); opacity: 0.25;
  font-family: 'Playfair Display', serif; line-height: 1;
}
.split-visual blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; line-height: 1.5; font-style: italic;
  margin-bottom: 24px; position: relative; z-index: 1;
  font-weight: 500;
}
.split-visual cite {
  color: var(--gold); font-style: normal; font-weight: 600;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  display: block; padding-top: 20px; border-top: 1px solid rgba(201, 163, 107, 0.3);
}

/* ============ STATS ============ */
.stat-band {
  background: var(--cream-warm);
  padding: 80px 0; text-align: center;
}
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 700; color: var(--navy);
  display: block; line-height: 1;
}
.stat-num span { color: var(--gold-deep); }
.stat-label {
  color: var(--text-soft); font-size: 0.95rem; margin-top: 10px;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--cream);
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial {
  background: var(--white); border-radius: 12px;
  padding: 36px; border: 1px solid var(--border-soft);
  display: flex; flex-direction: column;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--text); line-height: 1.55;
  margin-bottom: 24px; font-weight: 500; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border-soft);
}
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.author-meta { color: var(--text-mute); font-size: 0.85rem; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(201, 163, 107, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 28px; }
.cta-band h2 {
  color: var(--cream); font-size: 2.6rem; margin-bottom: 16px;
}
.cta-band p { font-size: 1.15rem; opacity: 0.92; margin-bottom: 32px; }
.cta-band-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ SERVICE CARDS (services page) ============ */
.service-detail {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.service-detail-card {
  background: var(--white); border-radius: 14px;
  padding: 40px; border: 1px solid var(--border-soft);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-detail-card .feature-icon { margin-bottom: 24px; }
.service-detail-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-detail-card p { color: var(--text-soft); margin-bottom: 18px; }
.service-detail-card ul { list-style: none; }
.service-detail-card ul li {
  padding: 6px 0 6px 24px; position: relative;
  font-size: 0.95rem; color: var(--text);
}
.service-detail-card ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--gold-deep);
}

/* ============ FLEET ============ */
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.fleet-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; border: 1px solid var(--border-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--gold);
  border-bottom: 4px solid var(--gold);
}
.fleet-content { padding: 32px; }
.fleet-content h3 { font-size: 1.5rem; margin-bottom: 8px; }
.fleet-tagline {
  color: var(--gold-deep); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.fleet-content p { color: var(--text-soft); margin-bottom: 18px; font-size: 0.97rem; }
.fleet-features { list-style: none; }
.fleet-features li {
  padding: 8px 0 8px 24px; position: relative;
  font-size: 0.92rem; border-bottom: 1px solid var(--border-soft);
}
.fleet-features li:last-child { border-bottom: none; }
.fleet-features li::before {
  content: '✓'; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700;
}

/* ============ AREAS GRID ============ */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.area-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 24px;
  text-align: center; transition: all 0.2s;
}
.area-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; color: var(--navy); margin-bottom: 4px; font-weight: 600;
}
.area-card .area-zip { color: var(--text-mute); font-size: 0.85rem; }

.area-hub {
  background: var(--navy); color: var(--cream); border-color: var(--gold);
}
.area-hub h4 { color: var(--gold); }
.area-hub .area-zip { color: rgba(253, 251, 247, 0.7); }

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: 10px; margin-bottom: 14px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--gold-light); }
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 22px 28px;
  font-weight: 600; font-size: 1.08rem; color: var(--navy);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; color: var(--gold-deep);
  transition: transform 0.2s; line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 28px 24px; color: var(--text-soft); line-height: 1.7; }

/* ============ FORM ============ */
.book-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px;
  align-items: start;
}
.book-info {
  background: var(--cream-warm); border-radius: 14px;
  padding: 40px; position: sticky; top: 100px;
}
.book-info h3 { font-size: 1.5rem; margin-bottom: 8px; }
.book-info > p { color: var(--text-soft); margin-bottom: 28px; }
.book-info .quick-info-item { border-bottom-color: var(--border); }

.book-form {
  background: var(--white); border-radius: 14px;
  padding: 44px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.book-form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.book-form > p { color: var(--text-soft); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 500;
  color: var(--navy); font-size: 0.94rem;
}
.form-group label .req { color: var(--gold-deep); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 1rem; font-family: 'Inter', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 163, 107, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-helper { font-size: 0.85rem; color: var(--text-mute); margin-top: 6px; }
.book-form button[type="submit"] {
  width: 100%; padding: 16px; margin-top: 8px;
  background: var(--navy); color: var(--cream);
  border: none; border-radius: 8px; font-size: 1.05rem; font-weight: 600;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.book-form button[type="submit"]:hover {
  background: var(--navy-deep); transform: translateY(-1px);
}

/* ============ VALUE PROPOSITION ============ */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
}
.value-card {
  display: flex; gap: 22px; padding: 32px;
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border-soft);
}
.value-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--cream-warm); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.value-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value-card p { color: var(--text-soft); font-size: 0.97rem; }

/* ============ TIMELINE ============ */
.timeline {
  max-width: 820px; margin: 0 auto;
  position: relative; padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 2px; background: var(--gold-light);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-year {
  display: inline-block; background: var(--navy); color: var(--gold);
  padding: 4px 12px; border-radius: 4px; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 8px; letter-spacing: 0.5px;
}
.timeline-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.timeline-item p { color: var(--text-soft); }

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep); color: var(--cream);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { opacity: 0.8; font-size: 0.95rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold); font-family: 'Inter', sans-serif;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--cream); opacity: 0.78; font-size: 0.95rem;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul li a:hover { opacity: 1; color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 0.93rem; opacity: 0.85;
}
.footer-contact-item a { color: var(--cream); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: 28px; text-align: center;
  font-size: 0.88rem; opacity: 0.65;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s ease forwards; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner, .split, .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .testimonial-grid, .fleet-grid, .values-grid, .service-detail {
    grid-template-columns: 1fr;
  }
  .areas-grid, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero h1 { font-size: 2.6rem; }
  .page-header h1, .section-header h2, .split-text h2, .cta-band h2 { font-size: 2rem; }
  .hero, .page-header { padding-top: 130px; }
  section, .stat-band { padding: 70px 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0;
    padding: 12px 0; box-shadow: var(--shadow-md);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0 28px; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-links a.nav-cta { margin: 12px 0; text-align: center; }
  .menu-toggle { display: block; }
  .book-info { position: static; }
  .split-visual { padding: 40px 30px; }
  .split-visual blockquote { font-size: 1.2rem; }
}
@media (max-width: 540px) {
  .stat-grid, .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  body { font-size: 16px; }
  section, .stat-band { padding: 60px 0; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .hero-card, .book-form, .book-info { padding: 28px; }
}
