/* ===== CSS VARIABLES ===== */
:root {
  --black: #1a2240;
  --black-soft: #f0f4ff;
  --black-card: #ffffff;
  --gold: #C8102E;
  --gold-light: #e03050;
  --gold-dark: #9a0a22;
  --blue: #1a3a8f;
  --blue-dark: #102870;
  --blue-light: #2a50c0;
  --white: #ffffff;
  --white-dim: rgba(26,34,64,0.6);
  --white-subtle: rgba(26,34,64,0.06);
  --border: rgba(26,58,143,0.18);
  --border-hover: rgba(200,16,46,0.45);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(200,16,46,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #ffffff;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; background: var(--blue);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: #ffffff; letter-spacing: 0.3em;
  animation: loaderPulse 1.5s ease infinite;
}
.loader-logo img { width: 25%; margin: 0 auto; }
.loader-bar {
  width: 160px; height: 1px; background: rgba(255,255,255,0.25);
  margin-top: 24px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--gold-light);
  animation: loaderFill 2s ease forwards;
}
.loader-sub {
  margin-top: 16px; font-size: 0.7rem; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
@keyframes loaderPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
@keyframes loaderFill { from{width:0} to{width:100%} }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
  background: var(--blue);
}
nav.scrolled {
  background: var(--blue);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(26,58,143,0.15);
  box-shadow: 0 2px 20px rgba(26,34,64,0.08);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 400;
  color: var(--blue); letter-spacing: 0.15em;
  width: 15%; cursor: pointer;
}
.nav-logo span { color: var(--blue-dark); width: 15%; }
.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* Active nav link — reflects current page */
.nav-links a.nav-active:not(.nav-cta) {
  color: var(--gold);
  position: relative;
}
.nav-links a.nav-active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.nav-links .nav-cta.nav-active {
  background: var(--gold);
  color: #ffffff !important;
}

.nav-cta {
  padding: 10px 28px; border: 1px solid var(--gold);
  color: var(--gold) !important; font-size: 0.7rem !important;
  letter-spacing: 0.25em !important; text-transform: uppercase;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold); color: #ffffff !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 1px; background: var(--blue);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--blue); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
  color: #ffffff; letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ===== PAGE ROUTING ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1e5c 0%, #1a3a8f 50%, #0d1e5c 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/Hero-Image.jpg') center/cover no-repeat;
  opacity: 0.7;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #0d1e5c 100%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden; z-index: 1;
}
.hero-lines::before {
  content: ''; position: absolute;
  top: -20%; left: -10%; width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  transform: rotate(15deg); opacity: 0.2;
}
.hero-lines::after {
  content: ''; position: absolute;
  top: -20%; right: 20%; width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, #ffffff, transparent);
  transform: rotate(-8deg); opacity: 0.06;
}
.hero-content {
  position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 32px;
  animation: fadeInUp 1s ease both;
}
.hero-badge::before, .hero-badge::after {
  content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.5); opacity: 0.8;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.05; letter-spacing: 0.02em;
  color: #ffffff; margin-bottom: 24px;
  animation: fadeInUp 1s 0.15s ease both;
}
.hero-headline em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem); font-weight: 300;
  color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 48px;
  letter-spacing: 0.03em; line-height: 1.8;
  animation: fadeInUp 1s 0.3s ease both;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  animation: fadeInUp 1s 0.45s ease both;
}
.btn-primary {
  padding: 16px 40px; background: var(--gold); color: #ffffff;
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,16,46,0.35);
}
.btn-outline {
  padding: 15px 40px; background: transparent;
  border: 1px solid rgba(255,255,255,0.4); color: #ffffff;
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: fadeInUp 1s 0.6s ease both;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1; transform:scaleY(1)} 50%{opacity:0.4; transform:scaleY(0.7)} }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: block;
}
.testimonials-section .section-label { color: rgba(255,255,255,0.7); }
.testimonials-section .section-title { color: #ffffff; }
.testimonials-header { text-align: center; margin-bottom: 0; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; color: var(--blue-dark);
}
.section-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 32px 0; opacity: 0.6;
}
.divider.center { margin: 32px auto; }

#fleet-anchor { padding-bottom: 0; }

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 60px;
}
.cat-card {
  position: relative; height: 420px; overflow: hidden; cursor: pointer;
}
.cat-card img {
  height: 100%; transition: transform 0.7s ease;
  filter: brightness(0.5);
}
.cat-card:hover img { transform: scale(1.08); filter: brightness(0.65); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px;
}
.cat-card-label {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 8px;
}
.cat-card-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
  color: var(--white); line-height: 1.2;
}
.cat-card-arrow {
  margin-top: 16px; width: 32px; height: 1px; background: var(--gold-light);
  position: relative; transition: width var(--transition);
}
.cat-card-arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold-light); border-right: 1px solid var(--gold-light);
  transform: rotate(45deg);
}
.cat-card:hover .cat-card-arrow { width: 52px; }

/* ===== WHY CHOOSE ===== */
.why-section { background: #f0f4ff; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 60px;
}
.why-image-wrap { position: relative; }
.why-image-wrap img { height: 560px; object-fit: cover; }
.why-image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 1px solid rgba(26,58,143,0.25); pointer-events: none;
}
.why-features { display: flex; flex-direction: column; gap: 36px; }
.why-feature {
  display: flex; gap: 24px; align-items: flex-start;
  padding-bottom: 36px; border-bottom: 1px solid rgba(26,58,143,0.15);
}
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(26,58,143,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition);
}
.why-feature:hover .why-icon { background: var(--gold); color: #ffffff; border-color: var(--gold); }
.why-feature-title {
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: 6px; font-weight: 500;
}
.why-feature-text { font-size: 0.875rem; color: rgba(26,34,64,0.6); line-height: 1.7; }

/* ===== FLEET PAGE ===== */
.fleet-page-section { padding-top: 130px; background: #ffffff; }
.fleet-page-description {
  color: rgba(26,34,64,0.6); font-size: 0.9rem; max-width: 520px; margin-top: -8px;
}
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
}
.fleet-card {
  background: #ffffff; overflow: hidden;
  border: 1px solid rgba(26,58,143,0.12); box-shadow: 0 2px 16px rgba(26,34,64,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.fleet-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(200,16,46,0.12);
}
.fleet-card-img { height: 220px; overflow: hidden; }
.fleet-card-img img { height: 100%; transition: transform 0.6s ease; filter: brightness(0.85); }
.fleet-card:hover .fleet-card-img img { transform: scale(1.06); filter: brightness(1); }
.fleet-card-body { padding: 28px 28px 32px; }
.fleet-card-cat {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.fleet-card-name {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 400;
  color: var(--blue-dark); margin-bottom: 16px; line-height: 1.2;
}
.fleet-card-specs {
  display: flex; gap: 20px; margin-bottom: 24px;
}
.fleet-spec { display: flex; flex-direction: column; gap: 2px; }
.fleet-spec-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(26,34,64,0.5); }
.fleet-spec-val { font-size: 0.78rem; color: var(--blue-dark); }
.fleet-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(26,58,143,0.1); padding-top: 20px;
}
.fleet-price { display: flex; flex-direction: column; }
.fleet-price-val {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--gold);
}
.fleet-price-label { font-size: 0.6rem; letter-spacing: 0.2em; color: rgba(26,34,64,0.5); text-transform: uppercase; }
.fleet-book-btn {
  padding: 10px 22px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.fleet-book-btn:hover { background: var(--gold); color: #ffffff; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--blue-dark));
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}
.testi-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 36px 32px;
  transition: border-color var(--transition);
}
.testi-card:hover { border-color: rgba(200,16,46,0.5); }
.testi-stars { color: var(--gold-light); font-size: 0.9rem; letter-spacing: 4px; margin-bottom: 20px; }
.testi-text {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 300;
  font-style: italic; color: #ffffff; line-height: 1.7; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  object-fit: cover; flex-shrink: 0;
}
.testi-name { font-size: 0.78rem; font-weight: 500; color: #ffffff; }
.testi-role { font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.55); text-transform: uppercase; }

/* ===== BOOKING PAGE ===== */
.booking-section { min-height: 100vh; padding: 120px 0 80px; background: #f8f9ff; }
.booking-intro { text-align: center; max-width: 580px; margin: 0 auto 60px; }
.booking-description { color: rgba(26,34,64,0.6); font-size: 0.88rem; }
.booking-wrapper {
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start;
}
.booking-form-wrap {
  background: #ffffff; border: 1px solid rgba(26,58,143,0.12); padding: 48px;
  box-shadow: 0 4px 30px rgba(26,34,64,0.08);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue); font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  background: #f8f9ff; border: 1px solid rgba(26,58,143,0.18);
  color: var(--blue-dark); font-family: var(--font-body); font-size: 0.875rem;
  padding: 14px 18px; width: 100%; outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); background: rgba(26,58,143,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(26,34,64,0.3); }
.form-select option { background: #ffffff; color: var(--blue-dark); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-radio-group { display: flex; gap: 20px; }
.form-radio-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(26,34,64,0.65); cursor: pointer;
  transition: color var(--transition);
}
.form-radio-label:hover { color: var(--blue); }
.form-radio-label input[type="radio"] { accent-color: var(--blue); width: 14px; height: 14px; }

/* Honeypot — keep off-screen, not display:none (bots ignore that) */
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
  pointer-events: none; tab-index: -1;
}

.form-submit {
  width: 100%; padding: 18px; background: var(--gold); color: #ffffff;
  font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 600; border: none; cursor: pointer;
  margin-top: 8px; transition: background var(--transition), box-shadow var(--transition);
}
.form-submit:hover { background: var(--gold-dark); box-shadow: 0 8px 30px rgba(200,16,46,0.3); }
.form-submit:disabled { background: #555; cursor: not-allowed; }
.form-msg {
  margin-top: 16px; padding: 14px 20px; font-size: 0.8rem; text-align: center; display: none;
}
.form-msg.success { background: rgba(74,201,74,0.1); border: 1px solid rgba(74,201,74,0.3); color: #4ac94a; display: block; }
.form-msg.error { background: rgba(201,74,74,0.1); border: 1px solid rgba(201,74,74,0.3); color: #c94a4a; display: block; }

/* ===== BOOKING SIDEBAR ===== */
.booking-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: #f8f9ff; border: 1px solid rgba(26,58,143,0.12); padding: 32px;
}
.sidebar-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  color: var(--blue-dark); margin-bottom: 20px;
}
.sidebar-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(26,58,143,0.1);
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-icon { color: var(--blue); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.sidebar-item-text { font-size: 0.82rem; color: rgba(26,34,64,0.65); line-height: 1.6; }
.sidebar-item-text strong { color: var(--blue-dark); display: block; font-weight: 500; margin-bottom: 2px; }
.price-calc { background: var(--blue); border: 1px solid var(--blue-dark); padding: 32px; }
.price-calc-title { font-family: var(--font-display); font-size: 1.2rem; color: #ffffff; margin-bottom: 20px; }
.price-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.price-row.total {
  border-bottom: none; border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 8px; padding-top: 16px; color: #ffffff; font-weight: 500;
}
.price-row .price-val { color: var(--gold-light); font-family: var(--font-display); font-size: 1rem; }
.price-row.total .price-val { font-size: 1.4rem; }
.price-calc-note {
  font-size: 0.65rem; color: rgba(255,255,255,0.65); margin-top: 14px; line-height: 1.6;
}

/* ===== MAP SECTION ===== */
.map-section { padding: 0; }
.map-wrap { position: relative; height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.8) contrast(1.1) brightness(0.7); }
.map-overlay {
  position: absolute; top: 40px; left: 60px;
  background: rgba(26,58,143,0.97); border: 1px solid rgba(255,255,255,0.15);
  padding: 28px 32px; backdrop-filter: blur(10px);
}
.map-overlay-title {
  font-family: var(--font-display); font-size: 1.1rem; color: #ffffff; margin-bottom: 12px;
}
.map-overlay-text { font-size: 0.78rem; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  background: var(--blue-dark); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: #ffffff;
}
.footer-logo img { width: 200px; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 240px; }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-slim { padding: 30px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.footer-book-link { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease infinite;
  cursor: pointer;
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float:hover { background: #128C7E; transform: scale(1.08); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 40px rgba(37,211,102,0.7)} }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--blue); padding: 24px 0;
}
.stats-inner {
  display: flex; justify-content: space-around; align-items: center;
  max-width: 900px; margin: 0 auto; padding: 0 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; color: #ffffff;
}
.stat-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 24px 32px; }
  nav.scrolled { padding: 16px 32px; }
  .nav-logo { width: 40%; }
  .hamburger span { background: var(--white); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrap { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 70px 0; }
  .container { padding: 0 24px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .cat-card { height: 280px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .booking-form-wrap { padding: 28px 24px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .booking-sidebar { grid-template-columns: 1fr; }
  .map-overlay { left: 20px; right: 20px; top: 20px; }
  .wa-float { bottom: 20px; right: 20px; }
}
