/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark: #1a1a1a;
  --mid: #242424;
  --silver: #c0c0c0;
  --silver-light: #d8d8d8;
  --gold: #ffffff;
  /*--gold-light: #d4af5a;*/
  --gold-light: #f5f5f5;
  --white: #f5f5f5;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  /*--gradient-gold: linear-gradient(135deg, #8a6d2a 0%, #d4af5a 50%, #8a6d2a 100%);*/
  /*--gradient-silver: linear-gradient(135deg, #888 0%, #e0e0e0 50%, #888 100%);*/
  --gradient-gold: linear-gradient(135deg, #d9d9d9 0%, #ffffff 50%, #d9d9d9 100%);
--gradient-silver: linear-gradient(135deg, #bfbfbf 0%, #f5f5f5 50%, #bfbfbf 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Kaisei+Decol&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 14px 60px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-logo img {
  height: 80px;
  filter: drop-shadow(0 0 12px rgba(184,150,62,0.3));
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1000;
}
.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.custom-pop-contact a {
  display: flex;
  flex: 1;
  background-color: #000;
  padding: 15px 0;
  text-align: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: navajowhite;
}
.custom-pop-contact {
  display: flex;
  gap: 0 10px;
}

@media(max-width:767px){
.custom-pop-contact {
gap: 10px 10px;
  flex-direction: column;
}

}

/* ============================================================
   HERO (Homepage)
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.92) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&q=95") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 20%, rgba(0,0,0,0.45) 100%);
}
.hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(0deg, rgba(10,5,0,1) 0%, rgba(184,150,62,0.04) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 0 30px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(184, 150, 62, 0.4);
  padding: 8px 20px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-badge span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-badge::before,
.hero-badge::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.hero-logo {
  display: block;
  margin: 0 auto 28px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(184,150,62,0.25)) brightness(1.08);
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.hero-title {
 font-family: "Cinzel", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.hero-stats {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
  z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
}
.hero-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.94) 100%),
    url("https://images.unsplash.com/photo-1545558014-8692077e9b5c?w=1920&q=95") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
.page-hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(10,5,0,1) 0%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 30px;
}
.page-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.page-hero-title em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: #2e2e2e;
  color: var(--white);
  padding: 16px 42px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #3e3e3e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
#booking-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
  padding: 0 60px;
}
.booking-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
}
.bb-field {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.bb-field:hover { background: rgba(184, 150, 62, 0.06); }
.bb-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.bb-input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  width: 100%;
  cursor: pointer;
}
.bb-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.bb-btn {
  background: #2e2e2e;
  color: var(--white);
  border: none;
  padding: 0 40px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
}
.bb-btn:hover { background: #3e3e3e; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 120px 60px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-tag::before,
.section-tag::after { content: "── "; opacity: 0.5; }
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gradient-gold);
  margin: 24px auto 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features { background: var(--charcoal); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--dark);
  padding: 52px 44px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,62,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 150, 62, 0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon { font-size: 36px; margin-bottom: 24px; display: none; }
.feature-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 500;
}
.feature-desc { font-size: 13px; color: var(--white); line-height: 1.8; }
.feature-number {
  position: absolute;
  bottom: 28px; right: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: rgba(184, 150, 62, 0.06);
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   FLEET SLIDER
   ============================================================ */
#fleet {
  background: var(--black);
  padding: 120px 60px;
  overflow: hidden;
}
.fleet-slider-wrapper { position: relative; overflow: hidden; }
.fleet-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.fleet-slide {
  width: 33.333%;
  flex: 0 0 33.333%;
  padding: 0 8px;
  box-sizing: border-box;
}
.fleet-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 560px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s;
}
.fleet-card:hover { border-color: rgba(255, 255, 255, 0.18); }
.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: grayscale(15%) brightness(0.75);
}
.fleet-card:hover .fleet-img {
  transform: scale(1.05);
/*   filter: grayscale(0%) brightness(0.55); */
}
.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 35%, rgba(0,0,0,0.1) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: all 0.4s;
}
/* .fleet-card:hover .fleet-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.2) 100%);
} */
.fleet-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.fleet-specs { display: flex; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.fleet-spec {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
}
.fleet-spec span { color: var(--white); font-weight: 600; margin-right: 4px; }
.fleet-features {
  font-size: 12px;
  color: var(--white);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.05s;
  margin-bottom: 20px;
}
.fleet-card:hover .fleet-features { opacity: 1; transform: translateY(0); }
.fleet-btn {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 11px 26px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s;
  background: transparent;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  align-self: flex-start;
}
.fleet-card:hover .fleet-btn { opacity: 1; transform: translateY(0); }
.fleet-btn:hover { background: #2e2e2e; border-color: #2e2e2e; }

/* Fleet arrows */
.fleet-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.fleet-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.fleet-arrow-prev { left: -24px; }
.fleet-arrow-next { right: -24px; }
.fleet-arrow:disabled { opacity: 0.2; cursor: default; }

/* Fleet dots */
.fleet-dots { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.fleet-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.fleet-dot.active { background: var(--white); width: 28px; border-radius: 3px; }

/* Fleet Grid page tags */
.fleet-tag {
  position: absolute;
  top: 20px; left: 20px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 62, 0.5);
  padding: 5px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}
.fleet-specs-row { display: flex; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.fleet-spec span { color: var(--gold); }
.fleet-short-desc {
  font-size: 11px;
  color: var(--white);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.05s;
  margin-bottom: 12px;
}
.fleet-features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s;
  margin-bottom: 16px;
}
.fleet-card:hover .fleet-short-desc,
.fleet-card:hover .fleet-features-tags { opacity: 1; transform: translateY(0); }
.ftag {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 8px;
}
.fleet-card.wide { grid-column: span 2; aspect-ratio: auto; min-height: 400px; }

/* Fleet filter */
#fleet-grid { background: var(--black); }
.fleet-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 10px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184, 150, 62, 0.06);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--charcoal); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: rgba(184, 150, 62, 0.25);
  transform: translateY(-6px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 32px; margin-bottom: 22px; display:none; }
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 500;
}
.service-desc { font-size: 12px; color: var(--white); line-height: 1.85; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 24px;
  font-weight: 600;
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }

/* Services list (alternating blocks) */
#services-grid { background: var(--black); }
.services-list { display: flex; flex-direction: column; gap: 3px; }
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; min-height: 420px; }
.svc-block.reverse .svc-image { order: 2; }
.svc-block.reverse .svc-content { order: 1; }
.svc-image { position: relative; overflow: hidden; }
.svc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.7) grayscale(10%);
}
.svc-image:hover .svc-img { transform: scale(1.05); filter: brightness(0.85) grayscale(0%); }
.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.svc-cat-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,62,0.5);
  padding: 6px 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}
.svc-content {
  background: var(--dark);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--glass-border);
  transition: border-color 0.4s;
}
.svc-block:hover .svc-content { border-color: rgba(184,150,62,0.2); }
.svc-icon-lg { font-size: 38px; margin-bottom: 20px; display: block; }
.svc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.svc-title em { font-style: italic; color: var(--gold-light); }
.svc-desc { font-size: 14px; color: var(--white); line-height: 1.9; margin-bottom: 24px; }
.svc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.svc-feat {
  font-size: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-feat::before { content: "✓"; color: var(--gold); font-size: 10px; flex-shrink: 0; }
.svc-link {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Montserrat", sans-serif;
  align-self: flex-start;
}
.svc-link:hover { background: var(--gold); color: var(--black); }

/* Extra services grid */
#extra-services { background: var(--charcoal); }
.extra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.extra-card {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.extra-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.extra-card:hover { border-color: rgba(184,150,62,0.25); transform: translateY(-6px); }
.extra-card:hover::after { transform: scaleX(1); }
.extra-icon { font-size: 32px; margin-bottom: 20px; display: block; }
.extra-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.extra-desc { font-size: 13px; color: var(--white); line-height: 1.8; margin-bottom: 24px; }
.extra-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,150,62,0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.extra-link:hover { color: var(--gold-light); border-color: var(--gold-light); }
.extra-num {
  position: absolute;
  bottom: 24px; right: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  color: rgba(184, 150, 62, 0.05);
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
#why {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.05) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}
.why-title em { font-style: italic; color: var(--gold-light); }
.why-desc { font-size: 14px; color: var(--white); line-height: 1.9; margin-bottom: 40px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; align-items: flex-start; gap: 18px; }
.why-check {
  width: 36px; height: 36px;
  border: 1px solid rgba(184, 150, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.why-feature-text h4 { font-size: 14px; color: var(--white); font-weight: 500; margin-bottom: 6px; }
.why-feature-text p { font-size: 12px; color: var(--white); line-height: 1.7; }
.why-right { position: relative; }
.why-img-wrapper { position: relative; }
.why-img { width: 100%; height: 520px; object-fit: cover; filter: grayscale(20%) brightness(0.8); }
.why-img-accent {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 60%; height: 40%;
  border: 2px solid rgba(184, 150, 62, 0.3);
  pointer-events: none;
}
.why-badge {
  position: absolute;
  top: 30px; right: -30px;
  background: var(--charcoal);
  border: 1px solid rgba(184, 150, 62, 0.3);
  padding: 24px 28px;
  text-align: center;
}
.why-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
#book { background: var(--charcoal); }
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2px;
  background: var(--dark);
  border: 1px solid var(--glass-border);
}
.booking-left {
  padding: 70px 60px;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(184,150,62,0.08) 100%);
  position: relative;
  overflow: hidden;
}
.booking-left::before {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.1) 0%, transparent 70%);
}
.booking-left-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.booking-left-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.booking-left-title em { font-style: italic; color: var(--gold-light); }
.booking-left-desc { font-size: 13px; color: var(--white); line-height: 1.9; margin-bottom: 44px; }
.booking-promises { display: flex; flex-direction: column; gap: 16px; }
.booking-promise { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--white); }
.booking-promise-icon { color: var(--gold); font-size: 16px; }
.booking-right { padding: 60px; }
.booking-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 14px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  width: 100%;
}
.form-control:focus {
  border-color: rgba(184, 150, 62, 0.5);
  background: rgba(184, 150, 62, 0.04);
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.3); }
select.form-control { cursor: pointer; }
.form-control option { background: var(--dark); }
.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 18px;
  background: #2e2e2e;
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
}
.form-submit:hover {
  background: #3e3e3e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--black); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  padding: 44px;
  position: relative;
  transition: all 0.4s;
}
.testi-card:hover { border-color: rgba(184,150,62,0.2); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 22px; }
.testi-quote {
  font-size: 13px;
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-quote::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(184, 150, 62, 0.4);
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--gold);
}
.testi-name { font-size: 13px; color: var(--white); font-weight: 500; }
.testi-role { font-size: 11px; color: var(--white); margin-top: 3px; letter-spacing: 0.5px; }
.testi-google { position: absolute; top: 28px; right: 28px; font-size: 11px; color: var(--white); opacity: 0.5; }


/* ===== BOOKING POPUP OVERLAY ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.active {
  display: flex;
}

/* ===== POPUP CARD ===== */
.popup-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 0;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  animation: popupIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(28px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* ===== TABS ===== */
.popup-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e0e0e0;
}
.popup-tab {
  padding: 16px 10px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999;
  background: #f5f5f5;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.popup-tab.active {
  background: #ffffff;
  color: #0a0a0a;
  border-bottom: 2px solid #0a0a0a;
}

/* ===== CLOSE BUTTON ===== */
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-size: 18px;
  line-height: 1;
  z-index: 10;
  transition: color 0.2s;
}
.popup-close:hover { color: #0a0a0a; }

/* ===== FORM BODY ===== */
.popup-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== INPUT ROWS ===== */
.popup-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f4f4;
  border: 1px solid #e4e4e4;
  padding: 13px 14px;
  transition: border-color 0.2s;
}
.popup-input-row:focus-within {
  border-color: #0a0a0a;
}
.popup-input-icon {
  color: #888;
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1;
}
.popup-input-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1a1a1a;
  min-width: 0;
}
.popup-input-row input::placeholder {
  color: #aaa;
}

/* Via row — lighter, add/swap controls */
.popup-via-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  border: 1px solid #e4e4e4;
  padding: 11px 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-via-row:hover { background: #f0f0f0; }
.popup-via-add {
  width: 20px;
  height: 20px;
  border: 1.5px solid #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888;
  flex-shrink: 0;
  line-height: 1;
}
.popup-via-label {
  flex: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #aaa;
}
.popup-via-swap {
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}
.popup-via-swap:hover { color: #0a0a0a; }

/* ===== DIVIDER ===== */
.popup-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 4px 0;
}

/* ===== DATE / TIME ROW ===== */
.popup-trip-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: #f4f4f4;
  border: 1px solid #e4e4e4;
  transition: border-color 0.2s;
}
.popup-trip-row:focus-within { border-color: #0a0a0a; }

.popup-radio {
  width: 16px;
  height: 16px;
  accent-color: #0a0a0a;
  flex-shrink: 0;
  cursor: pointer;
}
.popup-trip-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  min-width: 68px;
}
.popup-date-input,
.popup-time-input {
  background: none;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #1a1a1a;
  cursor: pointer;
}
.popup-time-group {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.popup-time-sep {
  font-size: 13px;
  color: #888;
}

/* Disabled / inactive return row */
.popup-trip-row.inactive {
  opacity: 0.45;
  pointer-events: none;
}
.popup-trip-row.active-row .popup-radio { cursor: pointer; }

/* ===== SUBMIT BUTTON ===== */
.popup-submit {
  width: 100%;
  background: #0a0a0a;
  color: #ffffff;
  border: none;
  padding: 18px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s, transform 0.2s;
  margin-top: 4px;
}
.popup-submit:hover {
  background: #242424;
  transform: translateY(-1px);
}
.popup-submit svg {
  width: 16px;
  height: 16px;
}
.comp-details ul li {
  list-style: none;
  font-size: 13px;
}
.comp-details ul li span {
  font-weight: 600;
}
.comp-details ul {
  margin: 10px 0;
}
.page-template-our-services  #extra-services{
	display:none;
}
.single-blog .section-inner {
  padding: 140px 0 60px;
}
.blog-post-image img {
  width: 100%;
  object-fit: cover;
}
.blog-post-image {
  margin: 20px 0;
}
.blog-post-content h2 {
  margin: 10px 0 10px;
}
.blog-post-content h3 {
  margin: 20px 0;
}
.blog-post-date {
  margin-top: 10px;
}
.blog-post-content p {
  margin-bottom: 6px;
}
.blog-post-content ul {
  padding-left: 15px;
  margin: 10px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
  .popup-card { max-width: 100%; }
  .popup-body { padding: 18px 14px 16px; }
  .popup-trip-row { flex-wrap: wrap; gap: 8px; }
  .popup-time-group { margin-left: 0; }
  .popup-trip-label { min-width: auto; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--charcoal); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; filter: grayscale(15%) brightness(0.85); }
.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%; height: 260px;
  object-fit: cover;
  border: 4px solid var(--charcoal);
  filter: grayscale(15%) brightness(0.85);
}
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-title em { font-style: italic; color: var(--gold-light); }
.about-desc { font-size: 14px; color: var(--white); line-height: 1.95; margin-bottom: 20px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-value { border-left: 2px solid rgba(184,150,62,0.4); padding-left: 18px; }
.about-value h4 { font-size: 13px; color: var(--white); font-weight: 500; margin-bottom: 6px; }
.about-value p { font-size: 12px; color: var(--white); line-height: 1.7; }

/* ============================================================
   AREAS
   ============================================================ */
#areas { background: var(--black); padding: 80px 60px; }
.areas-inner { max-width: 1400px; margin: 0 auto; }
.areas-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: var(--white);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-tag {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
  transition: all 0.3s;
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
#trust-strip {
  background: var(--charcoal);
  padding: 48px 60px;
  border-top: 1px solid rgba(184,150,62,0.12);
  border-bottom: 1px solid rgba(184,150,62,0.12);
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { font-size: 24px; }
.trust-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); }

/* ============================================================
   AMENITIES STRIP
   ============================================================ */
#amenities-strip {
  background: var(--charcoal);
  padding: 50px 60px;
  border-top: 1px solid rgba(184,150,62,0.1);
  border-bottom: 1px solid rgba(184,150,62,0.1);
}
.amenities-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.amenity-item { display: flex; align-items: center; gap: 14px; padding: 0 30px; }
.amenity-icon { font-size: 22px; }
.amenity-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); font-weight: 500; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
#how-it-works { background: var(--black); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 70px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,150,62,0.15) 0%, rgba(184,150,62,0.5) 50%, rgba(184,150,62,0.15) 100%);
}
.process-step { text-align: center; position: relative; }
.ps-number-wrap {
  width: 64px; height: 64px;
  border: 1px solid rgba(184, 150, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  background: var(--black);
}
.ps-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ps-title { font-family: "Cormorant Garamond", serif; font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.ps-desc { font-size: 13px; color: var(--white); line-height: 1.8; }

/* ============================================================
   BESPOKE / BOOKING CTA SECTIONS
   ============================================================ */
#bespoke-cta,
#booking-cta {
  background: var(--dark);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
#bespoke-cta::before,
#booking-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,62,0.07) 0%, transparent 70%);
}
.bespoke-inner,
.bc-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bespoke-title,
.bc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.bespoke-title em,
.bc-title em { font-style: italic; color: var(--gold-light); }
.bespoke-desc,
.bc-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.bespoke-btns,
.bc-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  padding: 80px 60px 40px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(184,150,62,0.2));
  object-fit: contain;
}
.footer-tagline { font-size: 13px; color: var(--white); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before { content: "—"; opacity: 0.3; font-size: 10px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; }
.footer-contact-icon { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 13px; color: var(--white); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.3); }
.footer-cta {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.footer-cta:hover { opacity: 0.85; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 998;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 14px 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(184, 150, 62, 0.4);
  transition: all 0.3s;
  display: none;
}
.floating-cta.visible { display: block; animation: fadeUp 0.4s; }
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(184, 150, 62, 0.5);
}
.menu-toggle {
  position: absolute;
  right: 1.5rem;
  top: 49%;
  transform: translate(0, -50%);
  height: 26px;
  width: 29px;
}
.menu-toggle, .menu-toggle:hover {
  color: #000;
}

.menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.menu-toggle-bar.menu-toggle-bar--top {
  transform: translate(0, -8px);
}
.menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translate(0, 8px);
}
.nav-open .menu-toggle-bar.menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.nav-open .menu-toggle-bar.menu-toggle-bar--middle {
  opacity: 0;
}
.nav-open .menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
.cus-ham {
  display: none;
}


   /* HERO */
    .vehicle-hero {
      height: 85vh;
      min-height: 600px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .vehicle-hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.95) 100%), url("https://images.unsplash.com/photo-1563720223185-11003d516935?w=1920&q=95") center/cover no-repeat;
      transform: scale(1.05);
      animation: heroZoom 20s ease-out forwards;
    }

    @keyframes heroZoom {
      to {
        transform: scale(1);
      }
    }

    .vehicle-hero-content {
      position: relative;
      z-index: 2;
      padding: 0 60px 70px;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }

    .breadcrumb {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s forwards;
    }

    .breadcrumb a {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: var(--gold-light);
    }

    .breadcrumb-sep {
      color: rgba(184, 150, 62, 0.4);
      font-size: 12px;
    }

    .breadcrumb-current {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .vehicle-hero-badge {
      display: inline-block;
      border: 1px solid rgba(184, 150, 62, 0.5);
      padding: 6px 18px;
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeUp 0.8s 0.4s forwards;
    }

    .vehicle-hero-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 8px;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
    }

    .vehicle-hero-sub {
      font-size: 13px;
      color: var(--silver);
      letter-spacing: 1px;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s forwards;
    }

    .vehicle-hero-specs {
      display: flex;
      gap: 40px;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
      flex-wrap: wrap;
    }

    .vh-spec {
      text-align: left;
    }

    .vh-spec-val {
      font-family: "Cormorant Garamond", serif;
      font-size: 28px;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .vh-spec-label {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
      margin-top: 4px;
    }

    .vh-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
      align-self: stretch;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* STICKY INQUIRY */
    .sticky-inquiry {
      position: fixed;
      right: 30px;
      bottom: 30px;
      z-index: 888;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }

    .sticky-book {
      background: var(--gradient-gold);
      color: var(--black);
      padding: 14px 24px;
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 8px 30px rgba(184, 150, 62, 0.4);
      opacity: 0;
      transform: translateY(20px);
    }

    .sticky-book.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .sticky-book:hover {
      box-shadow: 0 12px 40px rgba(184, 150, 62, 0.55);
    }

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: all 0.8s ease;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: all 0.8s ease;
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* GALLERY */
    #gallery {
      background: var(--charcoal);
      padding: 80px 60px;
    }

    .gallery-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 3px;
    }

    .gallery-item {
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }

    .gallery-item:first-child {
      grid-row: 1/3;
      grid-column: 1/2;
    }

    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.6s ease;
      filter: brightness(0.8);
    }

    .gallery-item:hover .gallery-img {
      transform: scale(1.06);
      filter: brightness(1);
    }

    .gallery-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 20px;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-item:hover .gallery-label {
      opacity: 1;
    }

    /* MAIN CONTENT */
    #vehicle-content {
      background: var(--black);
      padding: 100px 60px;
    }

    .vc-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 80px;
      align-start: start;
    }

    .vc-left {}

    .vc-right {}

    .section-tag {
      display: inline-block;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      font-weight: 500;
    }

    .section-tag::before,
    .section-tag::after {
      content: "── ";
      opacity: 0.5;
    }

    .vc-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 300;
      color: var(--white);
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .vc-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .vc-desc {
      font-size: 14px;
      color: var(--silver);
      line-height: 2;
      margin-bottom: 32px;
    }

    

    /* SPECS TABLE */
    .specs-section {
      margin-bottom: 60px;
    }

    .specs-title {
      font-family: "Cormorant Garamond", serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 28px;
    }

    .specs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--glass-border);
    }

    .spec-row {
      background: var(--dark);
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      transition: background 0.3s;
    }

    .spec-row:hover {
      background: var(--mid);
    }

    .spec-label {
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }

    .spec-value {
      font-size: 14px;
      color: var(--white);
    }

    /* FEATURES LIST */
    .features-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 40px;
    }

    .feat-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .feat-check {
      width: 18px;
      height: 18px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .feat-check::after {
      content: "✓";
      font-size: 10px;
      color: var(--gold);
    }

    .feat-text {
      font-size: 13px;
      color: var(--silver);
      line-height: 1.6;
    }

    .feat-text strong {
      color: var(--white);
      font-weight: 500;
    }

    /* STICKY BOOKING PANEL */
    .booking-panel {
      background: var(--dark);
      border: 1px solid var(--glass-border);
      padding: 40px 36px;
      position: sticky;
      top: 100px;
    }

    .bp-title {
      font-family: "Cormorant Garamond", serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 6px;
    }

    .bp-sub {
      font-size: 12px;
      color: var(--silver);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .bp-price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid var(--glass-border);
    }

    .bp-from {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--silver);
    }

    .bp-price {
      font-family: "Cormorant Garamond", serif;
      font-size: 40px;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .bp-per {
      font-size: 11px;
      color: var(--silver);
    }

    .bp-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }

    .bp-feat {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--silver);
    }

    .bp-feat::before {
      content: "✓";
      color: var(--gold);
      font-size: 10px;
    }

/*     .btn-primary {
      background: var(--gradient-gold);
      color: var(--black);
      padding: 16px 42px;
      border: none;
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      letter-spacing: 2.5px;
      font-weight: 700;
      text-transform: uppercase;
      transition: all 0.3s;
      text-decoration: none;
      display: block;
      text-align: center;
      width: 100%;
      margin-bottom: 12px;
    } */

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(184, 150, 62, 0.45);
    }

    .btn-outline-sm {
      background: transparent;
      color: var(--white);
      padding: 14px 42px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      font-weight: 500;
      text-transform: uppercase;
      transition: all 0.3s;
      text-decoration: none;
      display: block;
      text-align: center;
      width: 100%;
    }

    .btn-outline-sm:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    .bp-trust {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--glass-border);
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .bp-trust-item {
      font-size: 10px;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.35);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* WHY CHOOSE */
    #why-choose {
      background: var(--charcoal);
      padding: 100px 60px;
    }

    .wc-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .wc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .wc-card {
      background: var(--dark);
      padding: 44px 36px;
      border: 1px solid var(--glass-border);
      position: relative;
      overflow: hidden;
      transition: all 0.4s;
    }

    .wc-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(184, 150, 62, 0.05) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .wc-card:hover {
      transform: translateY(-4px);
      border-color: rgba(184, 150, 62, 0.28);
    }

    .wc-card:hover::before {
      opacity: 1;
    }

    .wc-icon {
      font-size: 32px;
      margin-bottom: 20px;
      display: block;
    }

    .wc-title {
      font-family: "Cormorant Garamond", serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 14px;
    }

    .wc-desc {
      font-size: 13px;
      color: var(--silver);
      line-height: 1.8;
    }

    .wc-num {
      position: absolute;
      bottom: 24px;
      right: 28px;
      font-family: "Cormorant Garamond", serif;
      font-size: 60px;
      color: rgba(184, 150, 62, 0.05);
      font-weight: 700;
      line-height: 1;
    }

    /* TESTIMONIALS */
    #testimonials {
      background: var(--black);
      padding: 100px 60px;
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .test-card {
      background: var(--dark);
      border: 1px solid var(--glass-border);
      padding: 36px 32px;
      position: relative;
      transition: all 0.4s;
    }

    .test-card:hover {
      border-color: rgba(184, 150, 62, 0.2);
      transform: translateY(-4px);
    }

    .test-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px;
    }

    .star {
      color: var(--gold);
      font-size: 13px;
    }

    .test-text {
      font-size: 14px;
      color: var(--silver);
      line-height: 1.9;
      margin-bottom: 24px;
      font-style: italic;
    }

    .test-author {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .test-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gradient-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Cormorant Garamond", serif;
      font-size: 18px;
      color: var(--black);
      font-weight: 500;
    }

    .test-name {
      font-size: 13px;
      color: var(--white);
      font-weight: 500;
    }

    .test-role {
      font-size: 11px;
      color: var(--silver);
      letter-spacing: 1px;
    }

    .test-quote {
      position: absolute;
      top: 28px;
      right: 28px;
      font-family: "Cormorant Garamond", serif;
      font-size: 60px;
      color: rgba(184, 150, 62, 0.08);
      line-height: 1;
    }

    /* RELATED FLEET */
    #related-fleet {
      background: var(--charcoal);
      padding: 100px 60px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .related-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 4/3;
      background: var(--dark);
    }

    .related-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.6s ease;
      filter: grayscale(20%) brightness(0.65);
    }

    .related-card:hover .related-img {
      transform: scale(1.07);
      filter: grayscale(0%) brightness(0.45);
    }

    .related-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }

    .related-name {
      font-family: "Cormorant Garamond", serif;
      font-size: 20px;
      color: var(--white);
      font-weight: 400;
      margin-bottom: 8px;
    }

    .related-link {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border: 1px solid var(--gold);
      padding: 8px 18px;
      display: inline-block;
      transition: all 0.3s;
      margin-top: 10px;
    }

    .related-link:hover {
      background: var(--gold);
      color: var(--black);
    }

.booking-panel .btn-primary {
  text-align: center;
  width: 100%;
  margin-bottom: 12px;
}
#vehicle-content .gold-line {
  margin-left: 0 !important;
  margin-bottom: 30px;
}
.related-overlay .footer-cta {
  width: 160px;
  text-align: center;
}
#features .feature-number {
display: none;
}
.why-num {
display: none;
}
.extra-num {
  display: none;
}
.extra-icon , .wc-num , .wc-icon , .trust-icon , .svc-icon-lg {
display: none;
}

.home #features {
  display: none;
}
.values-list .value-icon-wrap {
  display: none;
}

.blog-post h1 {
  font-family: "Cinzel", serif;
  font-weight: 600;
}

.blog-list {
  display: flex;
  gap: 20px 20px;
}
.blog-item a img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}
.blog-page .section-inner {
  padding: 140px 10px 60px;
}
.blog-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	margin-bottom:12px;
}
.blog-page  .section-inner h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Cinzel", serif;
}
.blog-item {
  padding: 15px;
  border: 1px solid #4f4f4f;
}
.blog-item h2 a {
  font-family: "Cinzel", serif;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  line-height: 27px;
  margin: 20px 0 10px;
  display: block;
}
.blog-item .blog-date {
  font-size: 13px;
  margin-bottom: 6px;
}






    /* RESPONSIVE */
    @media(max-width:1100px) {
      .vc-inner {
        grid-template-columns: 1fr;
      }

      .vc-right {
        position: static;
      }

      .booking-panel {
        position: static;
      }

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

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

      .related-grid {
        grid-template-columns: 1fr 1fr;
      }
		.single-blog .section-inner {
  padding: 110px 10px 60px;
}
		.blog-post-image img {
height: 360px;
}
		.blog-list {
flex-direction: column;
}
		.blog-page .section-inner {
  padding: 140px 10px 60px;
}
		.blog-item a img {
  height: 210px;
}
    }

    @media(max-width:768px) {

      .vehicle-hero-content {
        padding: 0 24px 50px;
      }

      #gallery {
        padding: 60px 24px;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
      }

      .gallery-item:first-child {
        grid-row: auto;
        grid-column: auto;
      }

      #vehicle-content {
        padding: 60px 24px;
      }

      #why-choose {
        padding: 60px 24px;
      }

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

      #testimonials {
        padding: 60px 24px;
      }

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

      #related-fleet {
        padding: 60px 24px;
      }

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

      .vehicle-hero-specs {
        gap: 20px;
      }
		.blog-post h1 {
font-size: 24px;
}
.blog-post-title, .blog-post-date {
  text-align: center;
}
		.blog-post-image img {
    height: 220px;
  }
		.blog-page .section-inner {
    padding: 100px 10px 60px;
  }
		
    }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ----- Large tablets / small laptops ----- */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .process-steps::before { display: none; }
  .why-grid { gap: 50px; }
  .about-grid { gap: 60px; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-left::before { display: none; }
  section { padding: 100px 40px !important; }
  #areas { padding: 70px 40px; }
	.nav-links {gap: 26px;}
}

/* ----- Tablets / nav collapse ----- */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links {
    position: absolute;
    bottom: -285px;
    background-color: #000;
    width: 100%;
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    visibility: hidden;
	  transition:all 0.3s ease-in-out;
	  opacity:0;
  }
	.nav-links.open{bottom: -305px;visibility:visible; opacity:1;}
  .hamburger { display: flex; }
  section { padding: 80px 24px !important; }
  #booking-bar { padding: 0 24px; display: none; }
  .why-grid,
  .about-grid,
  .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .why-right { order: -1; }
  .about-images { height: 300px; }
  .about-img-main { height: 300px; }
  .about-img-secondary { display: none; }
  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .why-badge { display: none; }
  .why-img { height: 360px; }
  .booking-left { padding: 50px 32px; }
  .booking-right { padding: 40px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .extra-grid { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 30px; }
  .hero-logo { height: 80px; }
  #fleet { padding: 80px 24px; }
  .fleet-slide { width: 50%; flex: 0 0 50%; }
  .fleet-card { height: 460px; }
  .fleet-arrow-prev { left: -8px; }
  .fleet-arrow-next { right: -8px; }

  /* svc alternating blocks stack on mobile */
  .svc-block,
  .svc-block.reverse { grid-template-columns: 1fr; min-height: auto; }
  .svc-block .svc-image,
  .svc-block.reverse .svc-image { order: 1; height: 280px; }
  .svc-block .svc-content,
  .svc-block.reverse .svc-content { order: 2; padding: 44px 32px; }

  /* process steps to 2 columns already set at 1100, tighten gap */
  .process-steps { gap: 44px 24px; }

  /* trust / amenities strips */
  #trust-strip,
  #amenities-strip { padding: 36px 24px; }
  .trust-inner { justify-content: center; gap: 28px 20px; text-align: left; }
  .amenities-inner { justify-content: center; }
  .amenity-item { padding: 0 16px; }

  .page-hero { height: 55vh; min-height: 380px; }
  #areas { padding: 60px 24px; }
	.story-grid {grid-template-columns: 1fr !important;}
	.why-grid {grid-template-columns: repeat(1,1fr) !important;}
	.values-split {grid-template-columns: 1fr !important;}
	nav {justify-content: start;}
	.cus-ham {display: flex;}
	.nav-logo {width: 70%;}
	.story-img-accent {right: 30px !important;}
	
	
}

/* ----- Small tablets / large phones ----- */
@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .fleet-card.wide { grid-column: span 1; }
  .about-values { grid-template-columns: 1fr 1fr; gap: 14px; }
  .amenities-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .amenity-item { padding: 0; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .booking-left-title { font-size: 30px; }
	.story-img-accent {right: 12px !important;}
	.values-content {padding: 50px 0px !important;}
	#navbar .footer-cta {display: none;}
}

/* ----- Phones ----- */
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .fleet-slide { width: 100%; flex: 0 0 100%; }
  .fleet-card { height: 420px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-divider { width: 40px; height: 1px; }
  .about-values { grid-template-columns: 1fr; }
  .why-features { gap: 14px; }

  nav { padding: 14px 18px; }
  nav.scrolled { padding: 10px 18px; }
  .nav-logo img { height: 56px; }
  .hero-logo { height: 60px; }
  .hero-content { padding: 0 0px; }
	.hero-title {margin-bottom: 6px;font-size:22px;}
	#hero {padding-top: 110px !important;}
	.hero-divider {margin: 0 auto;}
  section { padding: 64px 18px !important; }
  #areas { padding: 48px 18px; }
  #fleet { padding: 64px 18px; }

  .section-header { margin-bottom: 50px; }
  .btn-primary,
  .btn-outline { padding: 14px 28px; font-size: 10px; }
  .hero-ctas,
  .bespoke-btns,
  .bc-btns { gap: 12px; }

  .svc-content { padding: 36px 24px; }
  .svc-image { height: 220px; }
  .extra-card,
  .service-card { padding: 34px 24px; }

  .booking-left { padding: 40px 22px; }
  .booking-right { padding: 32px 22px; }
  .booking-left-title { font-size: 26px; }

  .ps-number-wrap { width: 54px; height: 54px; }

  .floating-cta { bottom: 18px; right: 18px; padding: 12px 20px; font-size: 10px; }

  .page-hero { height: 48vh; min-height: 340px; }
  .page-hero-content { padding: 0 18px; }
	.hero-stats {position: unset;}
	#hero {
  height: auto;
flex-direction: column;
}
}

/* ----- Small phones ----- */
@media (max-width: 400px) {
  .hero-stats { bottom: 30px; }
  .trust-item,
  .amenity-item { gap: 10px; }
  .fleet-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 9px; }
  .footer-top { gap: 28px; }
  .about-value { padding-left: 14px; }
}
