/* ============================================
   Race Luxury Travels - Premium Stylesheet
   Palette: Imperial Navy, Onyx Black, Brushed Silver
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --imperial-navy: #0a1628;
  --navy-deep: #0d1f3c;
  --onyx-black: #0b0b0b;
  --brushed-silver: #b8bfc6;
  --silver-light: #d4d9df;
  --silver-muted: #8a929a;
  --gold-accent: #c9a96e;
  --gold-light: #e2c992;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--onyx-black);
  color: var(--silver-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1.05rem;
  color: var(--brushed-silver);
  line-height: 1.8;
}

.text-gold { color: var(--gold-accent); }
.text-silver { color: var(--brushed-silver); }

/* ---------- Utility ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 120px 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--brushed-silver);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-accent);
  margin: 2rem 0;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-accent);
  color: var(--onyx-black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background: rgba(201, 169, 110, 0.05);
}

/* ---------- Floating Action Buttons ---------- */
.floating-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

.floating-wa-wrap {
  position: relative;
}

.btn-liaison {
  background: var(--gold-accent);
  color: var(--onyx-black);
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.4);
  animation: pulse-gold 2s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-liaison:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(201, 169, 110, 0.5);
  color: var(--onyx-black);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.btn-whatsapp svg,
.btn-liaison svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- WhatsApp Region Picker --- */
.wa-picker {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  background: #111;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 14px;
  padding: 0.9rem;
  width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  z-index: 1001;
}

.wa-picker-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 0.7rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
  cursor: pointer;
}

.wa-option:hover {
  background: rgba(37,211,102,0.1);
}

.wa-flag {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.wa-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.wa-region {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}

.wa-number {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--silver-muted);
  letter-spacing: 0.02em;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 10px 40px rgba(201, 169, 110, 0.4); }
  50% { box-shadow: 0 10px 60px rgba(201, 169, 110, 0.6); }
}

/* ---------- Preloader (Luxury Car) ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--onyx-black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.preloader-logo {
  width: 110px;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: plFadeDown 0.8s ease 0.1s forwards;
}

@keyframes plFadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Track & Car --- */
.preloader-track-wrap {
  position: relative;
  width: 100%;
  height: 100px;
}

.preloader-car-wrap {
  position: absolute;
  bottom: 4px;
  left: 0;
  animation: carDrive 2.2s cubic-bezier(0.25, 0, 0.35, 1) 0.3s both;
}

@keyframes carDrive {
  0%   { transform: translateX(-300px); }
  100% { transform: translateX(calc(100vw + 120px)); }
}

.preloader-car-svg {
  width: 260px;
  height: auto;
  display: block;
  transform: scaleX(-1);
}

/* Alloy wheel spin — transform-box makes origin the wheel's own center */
.wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.5s linear infinite;
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* --- Road line --- */
.preloader-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,169,110,0.25) 20%,
    rgba(201,169,110,0.55) 50%,
    rgba(201,169,110,0.25) 80%,
    transparent 100%);
  overflow: hidden;
}

.preloader-road-shine {
  position: absolute;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  animation: roadShine 1.6s ease-in-out 0.3s infinite;
}

@keyframes roadShine {
  from { left: -50%; }
  to   { left: 140%; }
}

/* --- Tagline --- */
.preloader-tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-top: 2.5rem;
  opacity: 0;
  animation: plFadeDown 0.8s ease 0.5s forwards;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1320px;
  z-index: 9000;
  padding: 1.1rem 2.5rem;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  top: 1rem;
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(201, 169, 110, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.55);
  padding: 0.75rem 2.5rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.nav-logo img {
  height: 42px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-light);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  padding: 0.7rem 1.8rem !important;
  border: 1px solid var(--gold-accent) !important;
  color: var(--gold-accent) !important;
  letter-spacing: 0.12em !important;
}

.nav-cta:hover {
  background: var(--gold-accent) !important;
  color: var(--onyx-black) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 9999;
}

.nav-toggle span {
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.3px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.3px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* no extra padding needed — floating navbar overlaps hero by design */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(11, 11, 11, 0.7) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-content .section-label {
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-accent);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeInUp 1s ease 1.5s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--imperial-navy);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.stat-item p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-muted);
}

/* ---------- Intro / Editorial Section ---------- */
.editorial-section {
  background: var(--onyx-black);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-image {
  position: relative;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s ease;
}

.editorial-image:hover img {
  transform: scale(1.03);
}

.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

.editorial-text .section-subtitle {
  margin-bottom: 2rem;
}

.editorial-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-accent);
  font-size: 1rem;
}

.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--silver-muted);
}

/* ---------- Services / Bento Grid ---------- */
.services-section {
  background: var(--imperial-navy);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 1.5rem;
  margin-top: 4rem;
}

/* Image-backed bento cards */
.bento-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bento-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.8s ease, filter 0.5s ease;
}

.bento-card:hover .bento-card-img img {
  transform: scale(1.07);
  filter: brightness(0.4);
}

.bento-card-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card.featured {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-card .card-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: rgba(201, 169, 110, 0.6);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.8rem;
  display: block;
}

.bento-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: var(--white);
}

.bento-card.featured h3 {
  font-size: 1.9rem;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--brushed-silver);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-bottom: 0;
}

.bento-card.featured p {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 1.2rem;
}

.bento-card:hover p {
  max-height: 200px;
  opacity: 1;
  margin-bottom: 1.2rem;
}

.bento-card .card-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bento-card.featured .card-link {
  opacity: 1;
  transform: translateY(0);
}

.bento-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

.bento-card .card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.bento-card:hover .card-link::after {
  transform: translateX(5px);
}

/* ---------- Hubs Section ---------- */
.hubs-section {
  background: var(--onyx-black);
}

.hubs-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

.hub-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

.hub-card.hub-featured {
  height: 520px;
}

.hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.5);
}

.hub-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.4);
}

.hub-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  transition: var(--transition);
}

.hub-card-features {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.hub-card:hover .hub-card-features {
  max-height: 200px;
}

.hub-card-features span {
  font-size: 0.8rem;
  color: var(--silver-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hub-card-features span::before {
  content: '—';
  color: var(--gold-accent);
  font-size: 0.7rem;
}

.hub-card-content .hub-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.8rem;
}

.hub-card-content h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.hub-card-content p {
  font-size: 0.95rem;
  color: var(--brushed-silver);
  max-width: 400px;
}

.hub-tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

/* ---------- Wow Factors / Features ---------- */
.wow-section {
  background: linear-gradient(180deg, var(--imperial-navy) 0%, var(--onyx-black) 100%);
}

.wow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.wow-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.wow-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  background: rgba(201, 169, 110, 0.03);
}

.wow-card .wow-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.wow-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.wow-card p {
  font-size: 0.95rem;
  color: var(--silver-muted);
}

/* ---------- Fleet Showcase ---------- */
.fleet-section {
  background: var(--onyx-black);
  position: relative;
  overflow: hidden;
}

.fleet-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 22, 40, 0.3));
  pointer-events: none;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.fleet-image {
  position: relative;
}

.fleet-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.fleet-image .fleet-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--gold-accent);
  color: var(--onyx-black);
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fleet-details h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.fleet-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--gold-accent);
}

.fleet-feature span {
  font-size: 0.9rem;
  color: var(--silver-light);
}

/* ---------- Testimonial / Quote ---------- */
.quote-section {
  background: var(--imperial-navy);
  text-align: center;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-accent);
  line-height: 1;
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}

.quote-author {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-section .cta-bg img,
.cta-section .cta-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(11, 11, 11, 0.85));
  z-index: -1;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

.cta-content p {
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--onyx-black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--silver-muted);
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--silver-muted);
}

.footer-col ul li a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--silver-muted);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-social a {
  color: var(--silver-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-social a svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold-accent);
}

/* ---------- About Page ---------- */
.page-hero {
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem; /* offset for floating navbar */
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero .hero-bg img,
.page-hero .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.7), rgba(11, 11, 11, 0.9));
  z-index: -1;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Content */
.about-content {
  background: var(--onyx-black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-accent);
  font-style: italic;
  border-left: 2px solid var(--gold-accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
}

/* Values */
.values-section {
  background: var(--imperial-navy);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-5px);
}

.value-card .value-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--silver-muted);
}

/* ---------- Services Page ---------- */
.services-detail {
  background: var(--onyx-black);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block:last-child {
  border-bottom: none;
}

.service-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: brightness(0.8);
}

.service-info .service-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(201, 169, 110, 0.15);
  font-weight: 300;
  margin-bottom: 1rem;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-info p {
  margin-bottom: 1.5rem;
}

.service-info ul li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--brushed-silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-info ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-accent);
}

/* ---------- Fleet Page ---------- */
.fleet-hero-section {
  background: var(--onyx-black);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: var(--transition);
}

.fleet-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-5px);
}

.fleet-card-image {
  height: 300px;
  overflow: hidden;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.05);
}

.fleet-card-info {
  padding: 2rem;
}

.fleet-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.fleet-card-info p {
  font-size: 0.9rem;
  color: var(--silver-muted);
  margin-bottom: 1.5rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--brushed-silver);
}

.fleet-spec::before {
  content: '✓';
  color: var(--gold-accent);
  font-size: 0.75rem;
}

/* ---------- Contact Page ---------- */
.contact-section {
  background: var(--onyx-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail .contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-accent);
  font-size: 1.2rem;
}

.contact-detail h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--silver-muted);
  margin-bottom: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: rgba(201, 169, 110, 0.03);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select option {
  background: var(--onyx-black);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---------- Tablet: 1024px ---------- */
@media (max-width: 1024px) {
  .navbar {
    width: calc(100% - 2rem);
    padding: 1rem 1.5rem;
  }

  .editorial-grid,
  .about-grid,
  .fleet-showcase,
  .service-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-block:nth-child(even) {
    direction: ltr;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 320px 320px;
  }

  .bento-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hubs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ---------- Mobile: 768px ---------- */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .navbar {
    width: calc(100% - 1.2rem);
    top: 0.6rem;
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
  }

  .navbar.scrolled {
    top: 0.4rem;
    border-radius: 12px;
  }

  .nav-logo img {
    height: 34px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(201, 169, 110, 0.1);
    z-index: 8999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* --- Hero --- */
  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* --- Stats --- */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* --- Section headings --- */
  h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .section-padding {
    padding: 70px 0;
  }

  /* --- Editorial image height --- */
  .editorial-image img,
  .about-image img {
    height: 320px;
  }

  /* --- Bento Grid --- */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 1rem;
  }

  .bento-card {
    height: 220px;
  }

  .bento-card.featured {
    grid-column: span 1;
    grid-row: span 1;
    height: 260px;
  }

  .bento-card-img img {
    filter: brightness(0.4);
  }

  .bento-card-body {
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.2) 100%);
  }

  .bento-card .card-number {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .bento-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  .bento-card.featured h3 {
    font-size: 1.3rem;
  }

  /* Always show text on mobile */
  .bento-card p {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bento-card .card-link {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.68rem;
  }

  /* --- Hubs --- */
  .hubs-grid {
    grid-template-columns: 1fr;
  }

  .hub-card,
  .hub-card.hub-featured {
    height: 320px;
  }

  .hub-card-content {
    padding: 1.5rem;
  }

  .hub-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .hub-card-content p {
    font-size: 0.82rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Hide features on mobile — too much content */
  .hub-card-features {
    display: none;
  }

  .hub-tag {
    margin-top: 0.8rem;
    font-size: 0.65rem;
  }

  .hub-card-content .hub-label {
    font-size: 0.62rem;
    margin-bottom: 0.4rem;
  }

  /* --- Wow cards --- */
  .wow-grid {
    grid-template-columns: 1fr;
  }

  .wow-card {
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .wow-card .wow-icon {
    font-size: 1.6rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .wow-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .wow-card p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  /* --- Values --- */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    text-align: left;
  }

  .value-card .value-icon {
    font-size: 1.6rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }

  .value-card p {
    font-size: 0.85rem;
  }

  /* --- Fleet grid cards --- */
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fleet-card-image {
    height: 200px;
  }

  .fleet-card-info {
    padding: 1.4rem;
  }

  .fleet-card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .fleet-card-info p {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .fleet-specs {
    gap: 0.5rem;
  }

  .fleet-spec {
    font-size: 0.75rem;
  }

  /* --- Service blocks --- */
  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 50px 0;
  }

  .service-block:nth-child(even) {
    direction: ltr;
  }

  .service-image img {
    height: 280px;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* --- Quote --- */
  .quote-text {
    font-size: 1.3rem;
  }

  /* --- Page Hero --- */
  .page-hero {
    height: 50vh;
    min-height: 360px;
    padding-top: 4rem;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  /* --- Floating Buttons --- */
  .floating-buttons {
    bottom: 1rem;
    right: 0.8rem;
    gap: 0.5rem;
  }

  .btn-liaison,
  .btn-whatsapp {
    padding: 0.65rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  /* --- Footer mobile: center everything --- */
  .footer {
    padding: 60px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* --- Divider center on mobile --- */
  .divider {
    margin: 2rem auto;
  }
}

/* ---------- Small Mobile: 480px ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .bento-grid {
    grid-template-rows: unset;
    gap: 0.8rem;
  }

  .bento-card {
    height: 190px;
  }

  .bento-card.featured {
    height: 230px;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
  }

  .section-padding {
    padding: 55px 0;
  }

  .hub-card,
  .hub-card.hub-featured {
    height: 300px;
  }

  .hub-card-content {
    padding: 1.8rem;
  }

  .hub-card-content h3 {
    font-size: 1.5rem;
  }

  .wow-card {
    padding: 2rem 1.5rem;
  }

  .fleet-feature {
    padding: 0.8rem 1rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .floating-buttons {
    bottom: 0.8rem;
    right: 0.6rem;
  }

  .btn-liaison span,
  .btn-whatsapp span {
    display: none;
  }

  .btn-liaison,
  .btn-whatsapp {
    padding: 0.75rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
    font-size: 0;
    letter-spacing: 0;
  }

  .btn-liaison svg,
  .btn-whatsapp svg {
    width: 20px;
    height: 20px;
  }

  .quote-text {
    font-size: 1.1rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}

