/* ============================================
   FLEX LIFESTYLE GROUP — Main Stylesheet
   Black & white luxury, editorial typography
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --near-black: #141414;
  --charcoal: #1f1f1f;
  --graphite: #2a2a2a;
  --smoke: #6b6b6b;
  --silver: #b8b8b8;
  --pearl: #e8e8e8;
  --off-white: #f5f5f0;
  --white: #ffffff;
  --gold: #c9a961;

  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3.5rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.5rem;
  height: 1px;
  background: var(--black);
}

.italic-accent {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--black);
  color: var(--pearl);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.topbar a { color: var(--pearl); display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pearl);
  transition: all 0.3s var(--ease);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.logo {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text { line-height: 1; }
.logo-text small {
  display: block;
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.2rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  padding: 0.75rem 1.5rem !important;
  background: var(--black);
  color: var(--white) !important;
  letter-spacing: 0.12em !important;
  transition: background 0.3s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--graphite); }

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: transparent;
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease);
  font-size: 1rem;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%),
    url('../images/hero.svg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
  max-width: 900px;
}
.hero .eyebrow { color: var(--pearl); }
.hero .eyebrow::before { background: var(--white); }
.hero h1 {
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.hero h1 .italic-accent { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 580px;
  color: var(--pearl);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-meta-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: var(--pearl);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}

/* ========== SECTIONS ========== */
section { padding: 6rem 0; }
.section-dark { background: var(--black); color: var(--pearl); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--silver); }
.section-dark .eyebrow::before { background: var(--white); }
.section-cream { background: var(--off-white); }

.section-head {
  max-width: 780px;
  margin-bottom: 4rem;
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { padding-left: 0; padding-right: 0; }
.section-head.centered .eyebrow::before { display: none; }
.section-head p {
  font-size: 1.05rem;
  color: var(--smoke);
  margin-top: 1.5rem;
  line-height: 1.75;
}
.section-dark .section-head p { color: var(--silver); }

/* ========== TWO-COLUMN INTRO ========== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.intro-grid .eyebrow { margin-bottom: 2rem; }
.intro-lead {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.intro-body {
  font-size: 1rem;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ========== SERVICES GRID (split chauffeur/aviation) ========== */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  min-height: 580px;
}
.service-card {
  position: relative;
  padding: 4.5rem 2.75rem;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 580px;
  transition: all 0.6s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.service-card:hover::before { transform: scale(1.06); }
.service-card-concierge::before { background-image: url('../images/concierge-split.svg'); }
.service-card-chauffeur::before { background-image: url('../images/chauffeur-split.svg'); }
.service-card-aviation::before { background-image: url('../images/aviation-split.svg'); }

.service-card > * { position: relative; z-index: 2; }
.service-card .service-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--white);
}
.service-card p {
  color: var(--pearl);
  font-size: 0.98rem;
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}
.service-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s var(--ease);
  width: fit-content;
}
.service-card .btn-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  gap: 1rem;
}

/* ========== FLEET ========== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--pearl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.fleet-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f0f0ed 0%, #d8d8d3 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.fleet-image.type-vclass { background-image: linear-gradient(135deg, rgba(20,20,20,0.4), rgba(20,20,20,0.4)), url('../images/vclass.svg'); background-size: cover; }
.fleet-image.type-sclass { background-image: linear-gradient(135deg, rgba(20,20,20,0.4), rgba(20,20,20,0.4)), url('../images/sclass.svg'); background-size: cover; }
.fleet-image.type-range { background-image: linear-gradient(135deg, rgba(20,20,20,0.4), rgba(20,20,20,0.4)), url('../images/range.svg'); background-size: cover; }
.fleet-image.type-escalade { background-image: linear-gradient(135deg, rgba(20,20,20,0.4), rgba(20,20,20,0.4)), url('../images/escalade.svg'); background-size: cover; }
.fleet-image.type-jet { background-image: linear-gradient(135deg, rgba(20,20,20,0.3), rgba(20,20,20,0.6)), url('../images/jet.svg'); background-size: cover; }
.fleet-image.type-helicopter { background-image: linear-gradient(135deg, rgba(20,20,20,0.3), rgba(20,20,20,0.6)), url('../images/helicopter.svg'); background-size: cover; }

.fleet-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.fleet-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fleet-body h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: var(--display);
}
.fleet-body .fleet-sub {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1rem;
}
.fleet-specs {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--pearl);
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--smoke);
}
.fleet-specs span { display: flex; align-items: center; gap: 0.4rem; }

/* ========== SERVICES LIST ========== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--graphite);
}
.services-list .service-item {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--graphite);
  border-right: 1px solid var(--graphite);
  transition: background 0.3s var(--ease);
}
.services-list .service-item:hover { background: var(--graphite); }
.services-list .service-item:nth-child(3n) { border-right: none; }
.services-list .service-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}
.services-list .service-item h4 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.services-list .service-item p {
  color: var(--silver);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========== PROCESS / STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 3rem;
  border-top: 1px solid var(--pearl);
}
.step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.step h4 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.step p { color: var(--smoke); font-size: 0.95rem; line-height: 1.7; }

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(100%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  color: var(--pearl);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--pearl);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--pearl);
}
.testimonial p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial cite {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-top: 1.25rem;
  border-top: 1px solid var(--pearl);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--silver);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer h5 {
  color: var(--white);
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.75rem; font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer .logo { color: var(--white); margin-bottom: 1.5rem; }
.footer .footer-about {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 320px;
  color: var(--silver);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--graphite);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--smoke);
  letter-spacing: 0.05em;
}
.socials { display: flex; gap: 1rem; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--graphite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.socials svg { width: 14px; height: 14px; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ========== PAGE BANNER (interior pages) ========== */
.page-banner {
  background: var(--black);
  color: var(--white);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: grayscale(100%);
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); margin-bottom: 1rem; }
.page-banner p { color: var(--pearl); max-width: 640px; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 0.75rem; opacity: 0.5; }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .info-block { margin-bottom: 2.5rem; }
.contact-info h4 {
  font-family: var(--body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.contact-info p, .contact-info a {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
}
.contact-info a:hover { color: var(--gold); }

/* ========== FORM ========== */
.form {
  background: var(--off-white);
  padding: 3rem;
  border: 1px solid var(--pearl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--smoke);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--silver);
  background: var(--white);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--black);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--body); }

/* ========== BOOKING PAGE ========== */
.booking-frame-wrap {
  border: 1px solid var(--pearl);
  padding: 1rem;
  background: var(--white);
  margin-top: 2rem;
}
.booking-frame {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.option-card {
  padding: 2rem;
  border: 1px solid var(--pearl);
  background: var(--white);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.option-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
}
.option-card .option-icon {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.option-card h4 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.option-card p { color: var(--smoke); font-size: 0.9rem; }

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .service-split { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; padding: 4rem 2.5rem; }
  .services-list .service-item:nth-child(3n) { border-right: 1px solid var(--graphite); }
  .services-list .service-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .nav { padding: 1rem 0; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-menu.active { right: 0; }
  .nav-menu a { font-size: 1rem; }
  .menu-toggle { display: flex; }
  .topbar { font-size: 0.7rem; padding: 0.5rem 0; }
  .topbar-inner { justify-content: center; gap: 0.75rem; text-align: center; }
  .topbar-left, .topbar-right { gap: 1rem; }

  .hero { min-height: 85vh; }
  .hero-content { padding: 5rem 0 5rem; }
  .hero-meta-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .services-list { grid-template-columns: 1fr; }
  .services-list .service-item { border-right: none !important; }

  .fleet-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }

  .logo-text small { display: none; }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
