:root {
  --bg: #FCFCFC;
  --text: #0F171F;
  --muted: #51565B;
  --line: #DBDEE1;
  --soft: #EDF2F8;
  --primary: #A20519;
  --primary-2: #7F0415;
  --accent-2: #3E8343;
  --white: #ffffff;
  --shadow: 0 12px 36px rgba(17, 24, 39, 0.12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-muted { background: var(--soft); }
.section-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: var(--white); }
.eyebrow { color: var(--accent-2); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 12px; }
.eyebrow.light { color: rgba(255,255,255,.8); }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.1; margin: 0 0 16px; }
h1 { font-size: clamp(42px, 6vw, 70px); color: #fff; }
h1 span { color: #EDF2F8; }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3, h4, p { margin-top: 0; }
p { color: var(--muted); }
.section-primary p, .section-primary h2, .section-primary h3 { color: var(--white); }
.centered { text-align: center; }
.section-intro { max-width: 760px; margin: 0 auto 48px; }
.split { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: start; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: .25s ease; cursor: pointer; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-2); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-light { background: var(--white); color: var(--text); }
.btn-block { width: 100%; }
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; }
.top-bar { background: var(--primary); color: var(--white); font-size: 14px; }
.top-bar-inner, .nav-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-inner { min-height: 42px; gap: 16px; }
.top-left, .top-right { display: flex; gap: 18px; align-items: center; }
.nav-wrap { background: rgba(252,252,252,.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(229,231,235,.9); }
.nav-inner { min-height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}
.brand strong { display: block; font-size: 20px; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.accent { color: var(--accent-2); }
.desktop-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.desktop-nav a { padding: 10px 12px; font-weight: 600; font-size: 14px; color: #1A222B; }
.desktop-nav a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #FFFFFF; border-radius: 12px; padding: 10px 12px; font-size: 18px; }
.mobile-nav {
  display: none; flex-direction: column; gap: 2px; padding: 0 16px 16px; background: #FFFFFF; border-top: 1px solid var(--line);
}
.mobile-nav a { padding: 12px 10px; font-weight: 600; }
.mobile-nav.open { display: flex; }
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 120px; overflow: hidden; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?q=80&w=2940&auto=format&fit=crop');
  background-size: cover; background-position: center;
}
.hero-overlay { background: linear-gradient(to bottom, rgba(12,19,28,.68), rgba(12,19,28,.45), rgba(255,255,255,.10)); }
.hero-content { position: relative; z-index: 1; padding: 52px 0 84px; text-align: center; }
.hero-subtitle { color: rgba(255,255,255,.92); max-width: 760px; margin: 0 auto 28px; font-size: 18px; }
.trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; color: rgba(255,255,255,.86); font-weight: 600; margin-bottom: 30px; }
.booking-card { max-width: 980px; margin: 0 auto; background: #FFFFFF; border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; text-align: left; }
.booking-head { background: var(--primary); color: #fff; padding: 18px 24px; font-weight: 700; }
.booking-body { padding: 28px; }
.trip-type-row { display: flex; gap: 18px; margin-bottom: 18px; }
.booking-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; color: #51565B; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border-radius: 12px; border: 1px solid var(--line); background: #FFFFFF; color: var(--text);
  font: inherit;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-wide { grid-column: span 2; }
.form-submit { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 6px; }
.route-pills { margin-top: 38px; }
.route-pills p { color: rgba(255,255,255,.84); margin-bottom: 10px; }
.pill-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pill-wrap span { padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.24); color: #fff; backdrop-filter: blur(8px); font-size: 14px; }
.card-grid { display: grid; gap: 22px; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.four-up { grid-template-columns: repeat(4, 1fr); }
.two-up { grid-template-columns: repeat(2, 1fr); }
.info-card, .jet-card, .offer-card, .testimonial-card, .form-card, .contact-card, .stats-card {
  background: #FFFFFF; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 6px 20px rgba(17,24,39,.04);
}
.info-card { padding: 26px; }
.icon-circle {
  width: 52px; height: 52px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(162,5,25,.08); color: var(--primary); font-size: 22px; margin-bottom: 18px;
}
.sub-ital { color: var(--accent-2); font-style: italic; margin-bottom: 10px; }
.steps-block { margin-top: 68px; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 28px; }
.steps-grid span {
  width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px;
}
.image-cards img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 20px; }
.meta { color: var(--muted); font-size: 14px; }
.tag { display: inline-block; margin-bottom: 14px; padding: 7px 12px; border-radius: 999px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; }
.price strong { color: var(--primary); font-size: 30px; margin-right: 8px; }
.centered-actions { text-align: center; margin-top: 30px; }
.about-grid { align-items: center; }
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0 28px; }
.highlights-grid h3 { font-size: 18px; margin-bottom: 6px; }
.stats-card { padding: 36px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; backdrop-filter: blur(10px); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 18px; }
.stats-grid strong { display: block; font-size: 40px; color: #fff; margin-bottom: 6px; }
.stats-grid span, .stat-note { color: rgba(255,255,255,.85); }
.stat-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); text-align: center; }
.testimonial-card { padding: 26px; }
.quote-mark { color: rgba(162,5,25,.24); font-size: 52px; line-height: 1; }
.stars { color: #A20519; letter-spacing: 2px; margin-bottom: 16px; }
.author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.author span {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(162,5,25,.08); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-weight: 800;
}
.author small { display: block; color: var(--muted); margin-top: 4px; }
.faq-wrap { max-width: 900px; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 8px 0; }
.faq-list summary { cursor: pointer; list-style: none; font-weight: 700; padding: 18px 0; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0 0 16px; }
.contact-grid { align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0; }
.contact-card { padding: 18px; }
.contact-card strong { display: block; margin-bottom: 8px; }
.contact-card a { color: var(--primary); font-weight: 700; }
.assist-box { border: 1px solid rgba(162,5,25,.18); background: rgba(162,5,25,.04); border-radius: 20px; padding: 24px; }
.form-card { padding: 28px; }
.contact-form, .two-fields { display: grid; gap: 16px; }
.two-fields { grid-template-columns: repeat(2, 1fr); }
.site-footer { background: #0F171F; color: rgba(255,255,255,.88); padding: 68px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 26px; }
.footer-grid h4 { color: #fff; margin-bottom: 14px; }
.footer-grid a { display: block; color: rgba(255,255,255,.72); margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.72); max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: rgba(255,255,255,.72); margin: 0; }
@media (max-width: 1080px) {
  .desktop-nav, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .three-up, .four-up { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .top-bar-inner { flex-direction: column; justify-content: center; padding: 8px 0; }
  .top-left, .top-right { flex-wrap: wrap; justify-content: center; }
  .hero { padding-top: 150px; }
  .booking-form, .three-up, .four-up, .two-up, .steps-grid, .highlights-grid, .contact-cards, .two-fields, .footer-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: span 1; }
  .split, .nav-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .container { width: min(100% - 24px, 1180px); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .mobile-nav-toggle,
    .navbar-toggler,
    .menu-toggle,
    .menu-btn,
    .hamburger {
        margin-left: auto !important;
        margin-right: 10px !important;
        display: block;
    }

    header, .header, .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-actions {
    margin-left: auto !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    margin-left: 0 !important;
  }
}
