@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --card: #16161f;
  --border: #2a2a3a;
  --gold: #f5c842;
  --gold2: #e8b820;
  --gold-glow: rgba(245,200,66,0.15);
  --text: #f0ede8;
  --text-muted: #888899;
  --white: #ffffff;
  --danger: #ff4d6d;
  --success: #2ecc71;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: none; border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,200,66,0.3); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold-glow); }
.btn-ghost { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION ── */
.section { padding: 5rem 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted); font-size: 1rem;
  max-width: 540px; line-height: 1.7;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 0 5%;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,200,66,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(100,80,200,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0f 0%, #0f0f18 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 500;
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.75;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.feature-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--gold-glow); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── FLEET ── */
.fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.fleet-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(245,200,66,0.25); }
.fleet-img {
  width: 100%; height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
}
.fleet-body { padding: 1.5rem; }
.fleet-type { font-size: 0.7rem; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.4rem; }
.fleet-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; }
.fleet-specs { display: flex; gap: 1.2rem; margin-bottom: 1.2rem; }
.fleet-spec { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.fleet-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.fleet-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

/* ── HOW IT WORKS ── */
.steps-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 3rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute; top: 35px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
}
.step-item { text-align: center; padding: 0 1rem; }
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--card); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
  margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
}
.step-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: var(--gold-glow); border: 1px solid rgba(245,200,66,0.3);
}
.author-name { font-size: 0.9rem; font-weight: 600; }
.author-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 5% 5rem;
  background: linear-gradient(135deg, #1c1810 0%, #1a1505 50%, #141208 100%);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 20px;
  padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700;
  max-width: 500px;
}
.cta-banner h2 span { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.8rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  text-decoration: none; transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: var(--text-muted);
}

/* ── FORM INPUTS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.form-control {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: var(--transition); outline: none; width: 100%;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }

/* ── PAGE BANNER ── */
.page-banner {
  padding: 8rem 5% 4rem;
  background: linear-gradient(180deg, #0f0f1a 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,200,66,0.08) 0%, transparent 60%);
}
.page-banner-content { position: relative; z-index: 1; text-align: center; }
.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  margin-bottom: 0.8rem;
}
.page-banner p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-glow); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-card h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; height: 420px; }
.about-img-main, .about-img-accent {
  border-radius: var(--radius); overflow: hidden;
  position: absolute;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.about-img-main {
  width: 75%; height: 100%;
  background: linear-gradient(135deg, #1a1a28, #12121c);
  border: 1px solid var(--border); left: 0; top: 0;
}
.about-img-accent {
  width: 55%; height: 55%;
  background: linear-gradient(135deg, #1f1a10, #171205);
  border: 1px solid rgba(245,200,66,0.3);
  right: 0; bottom: 0;
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); }
.team-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gold-glow); border: 2px solid rgba(245,200,66,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem;
}
.team-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.team-role { font-size: 0.8rem; color: var(--gold); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.tag {
  display: inline-block; padding: 0.25rem 0.8rem;
  background: var(--gold-glow); color: var(--gold);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 100px; font-size: 0.75rem; font-weight: 500;
}
.success-msg { color: var(--success); font-size: 0.88rem; margin-top: 0.5rem; display: none; }
.error-msg { color: var(--danger); font-size: 0.88rem; margin-top: 0.5rem; display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .about-img-stack { height: 280px; margin-bottom: 2rem; }
  .steps-row::before { display: none; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 4%; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner { padding: 2.5rem; }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text); text-decoration: none; font-size: 1.4rem; font-weight: 500; transition: var(--transition); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.animate-up { animation: fadeUp 0.7s ease both; }
.animate-up:nth-child(1) { animation-delay: 0.1s; }
.animate-up:nth-child(2) { animation-delay: 0.2s; }
.animate-up:nth-child(3) { animation-delay: 0.3s; }
.animate-up:nth-child(4) { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════
   HERO SPLIT LAYOUT + QUICK BOOKING CARD
   ══════════════════════════════════════════════ */

/* Two-column hero */
.hero-content-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
  animation-delay: 0.5s !important;
}

/* Quick booking card */
.quick-book-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,215,0,0.08);
}

.quick-book-header {
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border-bottom: 1px solid rgba(255,215,0,0.15);
  padding: 1.5rem 1.75rem 1.2rem;
  text-align: center;
}

.quick-book-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.quick-book-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}

.quick-book-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.quick-book-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Input groups */
.quick-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.quick-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.quick-dot-green { background: #22c55e; box-shadow: 0 0 6px #22c55e88; }
.quick-dot-red   { background: #ef4444; box-shadow: 0 0 6px #ef444488; }

.quick-input {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.quick-input::placeholder { color: rgba(255,255,255,0.3); }
.quick-input:focus {
  border-color: var(--gold);
  background: rgba(255,215,0,0.06);
  box-shadow: 0 0 0 3px rgba(255,215,0,0.12);
}

/* Divider between inputs */
.quick-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.quick-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.quick-divider-icon {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
  width: 24px;
  text-align: center;
}

/* CTA button */
.quick-book-btn {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  letter-spacing: 0.01em;
}

.quick-book-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0.75rem 0 0;
}

/* ── RESPONSIVE: stack on mobile ── */
@media (max-width: 900px) {
  .hero-content-split {
    grid-template-columns: 1fr;
    padding: 0 1.25rem 2.5rem;
    gap: 2rem;
  }
  .hero-right {
    justify-content: stretch;
  }
  .quick-book-card {
    max-width: 100%;
  }
}
