/* =============================================
   ATH-ECS — Luxury Executive Chauffeur Service
   Main Stylesheet
   ============================================= */

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

/* ---- SCROLL PROGRESS BAR ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ---- LUXURY SVG ICONS ---- */
.lx-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1em; height: 1em;
}
.service-card-icon   .lx-icon { width: 30px; height: 30px; }
.service-detail-icon .lx-icon { width: 28px; height: 28px; }
.why-icon            .lx-icon { width: 22px; height: 22px; }
.fleet-cap-icon-wrap .lx-icon { width: 20px; height: 20px; }
.vehicle-spec-icon   .lx-icon { width: 18px; height: 18px; }
.contact-info-icon   .lx-icon { width: 20px; height: 20px; }
.footer-contact-icon .lx-icon { width: 14px; height: 14px; }
.about-badge-icon    .lx-icon { width: 26px; height: 26px; }
.post-meta-icon      .lx-icon { width: 14px; height: 14px; }
.service-feature-check .lx-icon { width: 11px; height: 11px; stroke-width: 2.5; }

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #CD7F32;
  --gold-light:  #E8A55A;
  --gold-dark:   #A06020;
  --bg:          #0D0B09;
  --bg2:         #111009;
  --bg3:         #151310;
  --card-bg:     #161310;
  --border:      rgba(205,127,50,.15);
  --text:        #EDE8E0;
  --text-muted:  #7A706A;
  --white:       #FFFFFF;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', sans-serif;
  --radius:      0px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
input, select, textarea { font-family: var(--sans); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--alt { background: var(--bg2); }
.section--dark { background: #070605; }

.gold-text {
  background: linear-gradient(135deg, #CD7F32 0%, #E8A55A 50%, #CD7F32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  margin-bottom: 20px;
}
.label::before, .label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.label::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.glass-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(205,127,50,.3);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(205,127,50,.45);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold {
  border: 1px solid rgba(205,127,50,.5);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(205,127,50,.08);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(13,11,9,.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2em;
  background: linear-gradient(135deg, #CD7F32 0%, #E8A55A 50%, #CD7F32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(237,232,224,.75);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  cursor: pointer;
}
.lang-toggle:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(13,11,9,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-120%);
  transition: transform 0.4s ease;
  z-index: 999;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(237,232,224,.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/athens-luxury-chauffeur-mercedes-s580-sunset-greece-hero.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,.35) 0%, rgba(13,11,9,.55) 50%, rgba(13,11,9,.88) 100%);
}
.hero-overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,11,9,.5), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}
.hero-label {
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.hero-label::before, .hero-label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .7;
}
.hero-h1 {
  font-size: clamp(42px, 7vw, 88px);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.7);
  opacity: 0;
  animation: fadeUp .8s .2s ease forwards;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp .8s .4s ease forwards;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .6s ease forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: .5; }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .7s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }
.about-img-wrap { overflow: hidden; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
}
.about-badge-icon { color: var(--gold); margin-bottom: 8px; }
.about-badge-text { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; letter-spacing: .1em; }
.about-badge-title { font-family: var(--serif); font-size: 14px; color: var(--text); }

.about-text h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 36px; font-size: 15px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.stat-value {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .05em;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,.95) 0%, rgba(13,11,9,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.service-card-icon { color: var(--gold); margin-bottom: 12px; }
.service-card-title { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 8px; }
.service-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}
.service-card:hover .service-card-desc { max-height: 100px; opacity: 1; }
.service-card-corner {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 8px;
  height: 1px;
  background: var(--gold);
  transition: width .4s ease;
}
.service-card:hover .service-card-corner { width: 20px; }

/* =============================================
   FLEET PREVIEW
   ============================================= */
.fleet-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.fleet-header h2 { font-size: clamp(30px, 4vw, 48px); }
.fleet-header p { color: var(--text-muted); }

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fleet-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card-bg);
}
.fleet-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #8f8e87;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .7s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.04); }
.fleet-card-body { padding: 28px 32px; }
.fleet-badge {
  display: inline-block;
  background: rgba(205,127,50,.15);
  border: 1px solid rgba(205,127,50,.3);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.fleet-card-title { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }
.fleet-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-spec {
  font-size: 11px;
  border: 1px solid rgba(205,127,50,.3);
  color: var(--gold);
  padding: 3px 12px;
  letter-spacing: .05em;
}

/* Fleet capacity display */
.fleet-capacity {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.fleet-cap-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fleet-cap-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(205,127,50,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.fleet-cap-val {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
}
.fleet-cap-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.testi-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1400&q=60');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.testi-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,.88);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.testi-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testi-star { color: var(--gold); font-size: 13px; }
.testi-text { font-size: 14px; color: rgba(237,232,224,.78); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px; }
.testi-name { font-family: var(--serif); font-size: 16px; margin-bottom: 3px; }
.testi-role { font-size: 11px; color: var(--text-muted); }

/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-card { cursor: pointer; }
.blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.blog-cat {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-date { font-size: 11px; color: var(--text-muted); }
.blog-card-title {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   PHOTO GALLERY
   ============================================= */
.section--gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}
.gallery-grid .g-wide  { grid-column: span 2; }
.gallery-grid .g-tall  { grid-row: span 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: var(--bg-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .4s ease;
  filter: brightness(.92);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-body);
  letter-spacing: .04em;
  line-height: 1.4;
}
.gallery-item-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(205,127,50,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  transform: scale(.8);
}
.gallery-item:hover .gallery-item-zoom {
  opacity: 1;
  transform: scale(1);
}
.gallery-item-zoom svg { width: 16px; height: 16px; stroke: #fff; fill: none; }

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,4,2,.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  transition: opacity .2s ease;
}
.lb-caption {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-body);
  letter-spacing: .06em;
  text-align: center;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(205,127,50,.2);
  border: 1px solid rgba(205,127,50,.4);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover { background: rgba(205,127,50,.55); }
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(205,127,50,.15);
  border: 1px solid rgba(205,127,50,.35);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lb-nav:hover { background: rgba(205,127,50,.45); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-grid .g-wide { grid-column: span 2; }
  .gallery-grid .g-tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-grid .g-wide,
  .gallery-grid .g-tall { grid-column: span 1; grid-row: span 1; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  padding: 112px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(13,11,9,.78); }
.cta-banner-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.cta-banner h2 { font-size: clamp(32px, 5vw, 60px); color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 40px; font-size: 16px; line-height: 1.75; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #070605;
  border-top: 1px solid rgba(205,127,50,.2);
}
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 72px 0 56px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .2em;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(205,127,50,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 14px;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: var(--serif);
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(13,11,9,.6) 50%, rgba(13,11,9,.2) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(36px, 5vw, 62px); color: var(--white); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.service-detail:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-icon { color: var(--gold); margin-bottom: 16px; }
.service-detail-title { font-size: clamp(26px, 3vw, 40px); margin-bottom: 14px; }
.service-detail-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; font-size: 15px; }
.service-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(237,232,224,.8);
}
.service-feature-check { color: var(--gold); flex-shrink: 0; font-size: 12px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
}
.why-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(205,127,50,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.why-title { font-family: var(--serif); font-size: 18px; margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   FLEET PAGE
   ============================================= */
.vehicle-section { padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.vehicle-section:last-child { border-bottom: none; }
.vehicle-hero { position: relative; aspect-ratio: 21/9; overflow: hidden; margin-bottom: 40px; background: #8f8e87; }
.vehicle-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.vehicle-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,11,9,.85) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding-left: 48px;
}
.vehicle-hero-badge {
  display: inline-block;
  border: 1px solid rgba(205,127,50,.4);
  background: rgba(205,127,50,.12);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 12px;
}
.vehicle-hero-title { font-size: clamp(32px, 4vw, 52px); color: var(--white); margin-bottom: 6px; }
.vehicle-hero-sub { font-size: 13px; color: rgba(255,255,255,.5); }
.vehicle-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.vehicle-interior { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.vehicle-interior img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.vehicle-interior:hover img { transform: scale(1.04); }
.vehicle-specs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.vehicle-spec-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.vehicle-spec-icon { color: var(--gold); }
.vehicle-spec-val { font-family: var(--serif); font-size: 26px; font-weight: 700; line-height: 1; margin-bottom: 3px; }
.vehicle-spec-name { font-size: 11px; color: var(--text-muted); }
.vehicle-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.vehicle-features-title { font-family: var(--serif); font-size: 18px; margin-bottom: 16px; }
.vehicle-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.vehicle-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(237,232,224,.8);
}
.vehicle-feature-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.fleet-standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.fleet-standard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
}
.fleet-standard-val { font-family: var(--serif); font-size: 52px; font-weight: 800; margin-bottom: 8px; }
.fleet-standard-desc { font-size: 13px; color: var(--text-muted); }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px; }
.blog-filter-btn {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: none;
}
.blog-filter-btn:hover { border-color: rgba(205,127,50,.4); color: var(--text); }
.blog-filter-btn.active { border-color: var(--gold); background: rgba(205,127,50,.08); color: var(--gold); }

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 56px;
  cursor: pointer;
}
.blog-featured-img { overflow: hidden; }
.blog-featured-img img {
  width: 100%; min-height: 400px;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  background: var(--card-bg);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-cat {
  display: inline-block;
  border: 1px solid rgba(205,127,50,.3);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.blog-featured-title { font-family: var(--serif); font-size: 30px; margin-bottom: 14px; line-height: 1.3; transition: color var(--transition); }
.blog-featured:hover .blog-featured-title { color: var(--gold); }
.blog-featured-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }

.blog-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.blog-post-item { display: block; cursor: pointer; }
.blog-post-item.hidden { display: none; }

/* =============================================
   BLOG POST PAGE
   ============================================= */
.post-hero { position: relative; height: 60vh; min-height: 420px; overflow: hidden; }
.post-hero-img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(13,11,9,.5) 50%, rgba(13,11,9,.2) 100%);
}
.post-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.post-cat {
  display: inline-block;
  border: 1px solid rgba(205,127,50,.3);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.post-title { font-size: clamp(28px, 4vw, 48px); color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.7); line-height: 1.2; }
.post-meta { display: flex; align-items: center; gap: 24px; margin-top: 40px; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.06); }
.post-meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.post-meta-icon { color: var(--gold); }
.post-body { max-width: 760px; }
.post-body p { font-size: 15px; color: rgba(237,232,224,.82); line-height: 1.9; margin-bottom: 24px; }
.post-body h2 { font-size: 24px; color: var(--text); margin: 40px 0 14px; }
.post-body h3 { font-size: 20px; color: var(--text); margin: 32px 0 12px; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-cta { margin-top: 56px; background: var(--card-bg); border: 1px solid var(--border); padding: 48px; text-align: center; }
.post-cta h3 { font-family: var(--serif); font-size: 28px; margin-bottom: 10px; }
.post-cta p { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--gold); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  cursor: pointer;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(205,127,50,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.contact-info-item:hover .contact-info-icon { border-color: var(--gold); }
.contact-info-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-val { font-size: 14px; transition: color var(--transition); }
.contact-info-item:hover .contact-info-val { color: var(--gold); }
.availability-card { background: var(--card-bg); border: 1px solid var(--border); padding: 24px; margin-top: 12px; }
.avail-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
.avail-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.avail-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.avail-text { font-size: 13px; color: rgba(237,232,224,.8); line-height: 1.65; }

.booking-form-card { background: var(--card-bg); border: 1px solid var(--border); padding: 48px; }
.booking-form-title { font-family: var(--serif); font-size: 28px; margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--sans);
  border-radius: 0;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(122,112,106,.5); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input.error, .form-select.error { border-color: #e53e3e; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CD7F32' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  background-color: rgba(255,255,255,.03);
}
.form-select option { background: #1a1713; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-error-msg { font-size: 11px; color: #fc8181; }
.whatsapp-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(205,127,50,.05);
  border: 1px solid rgba(205,127,50,.2);
  margin-top: 20px;
}
.whatsapp-note p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.form-submit {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
  font-size: 12px;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content { background: var(--card-bg); border: 1px solid var(--border); padding: 52px; max-width: 860px; }
.legal-date { font-size: 11px; color: var(--text-muted); margin-bottom: 36px; letter-spacing: .05em; }
.legal-content h2 { font-size: 20px; margin: 32px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 17px; margin: 24px 0 10px; color: rgba(237,232,224,.9); }
.legal-content p { font-size: 14px; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 14px 0; }
.legal-content ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content a { color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-header { grid-template-columns: 1fr; gap: 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse { direction: ltr; }
  .vehicle-detail-grid { grid-template-columns: 1fr; }
  .fleet-standards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .booking-form-card { padding: 28px 20px; }
  .legal-content { padding: 28px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .vehicle-specs-row { grid-template-columns: 1fr; }
  .vehicle-features-list { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE VISIBILITY — Single-Page Navigation
   ============================================= */
.page { display: none; }
.page.active { display: block; }
