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

:root {
  --p: #6a003c;
  --pd: #430026;
  --gold: #f5b544;
  --ink: #15151b;
  --muted: #69707d;
  --soft: #fff7fb;
  --line: #e8e9ee;
  --white: #fff;
  --dark: #111118;
  --shadow: 0 20px 70px rgba(28, 9, 20, 0.12);
  --radius: 14px;
  --transition: 0.22s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fbfbfc;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: Manrope, sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, 92%); margin: auto; }

/* Top bar */
.top {
  background: #151118;
  color: #fff;
  font-size: 12.5px;
}
.topin {
  height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topin a { color: #fff; font-weight: 700; }
.topin a:hover { color: var(--gold); }

/* Navigation */
.nav {
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navin {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font: 800 24px Manrope;
  color: var(--p);
  flex-shrink: 0;
}
.logo i { color: var(--gold); font-style: normal; }

.links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.links a:not(.btn):not(.callChip) {
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.links a:not(.btn):not(.callChip):hover,
.links a.active {
  color: var(--p);
}
.links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--p);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.primary {
  background: var(--p);
  color: #fff;
  box-shadow: 0 8px 22px rgba(106, 0, 60, 0.28);
}
.primary:hover { background: var(--pd); box-shadow: 0 10px 28px rgba(106, 0, 60, 0.35); }
.gold {
  background: var(--gold);
  color: #1b1710;
}
.outline {
  border-color: #dfe1e7;
  background: #fff;
}
.outline:hover { border-color: var(--p); color: var(--p); }

.callChip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: var(--p);
  background: #f8eaf1;
  padding: 10px 16px;
  border-radius: 12px;
  transition: var(--transition);
  white-space: nowrap;
}
.callChip:hover { background: var(--p); color: #fff; }
.callChip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28c76f;
  box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.6);
  animation: pulseDot 1.8s infinite;
  flex: 0 0 8px;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(40, 199, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 199, 111, 0); }
}

/* Mobile menu toggle */
.menuToggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #f5f5f7;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.menuToggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.menuToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menuToggle.open span:nth-child(2) { opacity: 0; }
.menuToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobileNav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobileNav.open { pointer-events: auto; display: block; }
.mobileNav .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 15, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobileNav.open .overlay { opacity: 1; }
.mobileNav .drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 20px 22px 30px;
  overflow-y: auto;
}
.mobileNav.open .drawer { transform: translateX(0); }
.mobileNav .drawerHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mobileNav .closeBtn {
  width: 40px;
  height: 40px;
  border: 0;
  background: #f5f5f7;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.mobileLinks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobileLinks a {
  padding: 14px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: background var(--transition);
}
.mobileLinks a:hover,
.mobileLinks a.active {
  background: #f8eaf1;
  color: var(--p);
}
.mobileActions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobileActions .btn { width: 100%; padding: 15px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff9fc 50%, #f5eaf1 100%);
  padding: 64px 0 80px;
}
.hero:after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: #6a003c10;
  right: -180px;
  top: -150px;
}
.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--p);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
}
h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin: 14px 0 18px;
}
.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.trust b { color: var(--ink); }
.heroVisual { position: relative; }
.heroImg {
  height: 460px;
  border-radius: 24px;
  background: url('https://images.unsplash.com/photo-1517840901100-8179e982acb7?auto=format&fit=crop&w=1200&q=85') center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.heroImg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 10, 15, 0.65));
}
.floating {
  position: absolute;
  background: #fff;
  border: 1px solid #ffffff80;
  box-shadow: 0 18px 45px #210c1b20;
  border-radius: 16px;
  padding: 14px 16px;
  z-index: 2;
}
.f1 { left: -20px; bottom: 32px; }
.f2 { right: -16px; top: 28px; }
.mini {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* Booking widget */
.booking {
  margin-top: -40px;
  position: relative;
  z-index: 8;
  background: #fff;
  border: 1px solid #e7e5e8;
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 22px 60px #2b12201a;
}
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 16px;
  border-radius: 10px;
  background: #f5f5f7;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  color: var(--ink);
  transition: var(--transition);
  user-select: none;
}
.tab:hover { background: #eeeef1; }
.tab.active {
  background: var(--p);
  color: #fff;
}
.bookgrid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.field {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 13px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field:focus-within {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(106, 0, 60, 0.12);
}
.field label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8f99;
  font-weight: 800;
  margin-bottom: 2px;
}
.field input,
.field select,
.field textarea {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  background: transparent;
  padding: 3px 0;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 90px; }
.return-field { display: none; }
.return-field.show { display: block; }

/* Sections */
.section { padding: 80px 0; }
.sectionHead { max-width: 680px; margin-bottom: 36px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.tag {
  display: inline-block;
  color: var(--p);
  background: #f8eaf1;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 12px 0;
}
.muted { color: var(--muted); }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 30px #11111105;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f8eaf1;
  color: var(--p);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}

/* Fleet */
.fleet { overflow: hidden; padding: 0 0 18px; }
.fleetImg {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.fleetBody { padding: 18px; }
.fleetBody h3 { margin: 0 0 6px; font-size: 18px; }
.meta {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.price {
  font-size: 18px;
  font-weight: 800;
  color: var(--p);
  margin: 12px 0;
}
.dark { background: var(--dark); color: #fff; }
.dark .muted { color: #a8aab2; }
.dark .tag { background: #2a1822; color: #ffd77a; }
.dark .card {
  background: #1a1a22;
  border-color: #2a2a34;
}

/* Split / steps */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.imageCard {
  min-height: 420px;
  border-radius: 24px;
  background: center/cover;
  box-shadow: var(--shadow);
}
.steps { display: grid; gap: 14px; }
.step {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--p);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

/* Routes */
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.route {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.route:hover {
  border-color: var(--p);
  box-shadow: 0 8px 24px rgba(106, 0, 60, 0.08);
}
.route small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  font-size: 12.5px;
}

/* CTA */
.cta {
  padding: 60px 0;
  background: linear-gradient(110deg, var(--p), #350020);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(245, 181, 68, 0.12);
  right: -130px;
  top: -170px;
}
.ctaIn {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 { font-size: 34px; margin: 0 0 8px; }
.ctaCallRow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.ctaPhoneBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #1b1710;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}
.ctaPhoneBtn:hover { transform: translateY(-2px); }
.ctaPhoneBtn .ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1b1710;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: 0 0 34px;
  animation: ringPulse 1.8s infinite;
}
@keyframes ringPulse {
  0%, 50%, 100% { transform: rotate(0); }
  5% { transform: rotate(-15deg); }
  10% { transform: rotate(12deg); }
  15% { transform: rotate(-10deg); }
  20% { transform: rotate(6deg); }
  25% { transform: rotate(0); }
}
.ctaPhoneBtn small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.ctaSub {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 12px;
}
.waBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.waBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* FAQ */
.faq { max-width: 820px; margin: auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 16px 18px;
  margin: 8px 0;
  transition: border-color var(--transition);
}
.faq details[open] { border-color: #d4b8c8; }
.faq summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--p);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 12px 0 4px; }

/* Page hero */
.pageHero {
  padding: 60px 0;
  background: linear-gradient(120deg, #fff, #fff4f9);
}
.pageHero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  max-width: 800px;
  margin: 10px 0 14px;
}

/* Forms */
.formBox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.full { grid-column: 1 / -1; }
.formBox .field { padding: 11px 14px; }
.formBox .btn { width: 100%; padding: 15px; font-size: 15px; }
.required::after {
  content: " *";
  color: #d32f2f;
}

/* Stats */
.statCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 8px 30px #11111105;
}
.statCard b {
  display: block;
  font: 800 28px Manrope, sans-serif;
  color: var(--p);
  margin-bottom: 4px;
}
.statCard span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.footer {
  background: #101017;
  color: #b8bac2;
  padding: 56px 0 24px;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer h3 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 14px;
}
.footer a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
  transition: color var(--transition);
}
.footer a:hover { color: #fff; }
.copy {
  border-top: 1px solid #292930;
  margin-top: 36px;
  padding-top: 16px;
  font-size: 12.5px;
}

/* Mobile bottom bar */
.callBar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.callBar a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-weight: 800;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.callBar .callPart { background: var(--gold); color: #1b1710; }
.callBar .waPart { background: #25D366; color: #fff; }
.callBar .bookPart { background: var(--p); color: #fff; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Article (blog) */
.article {
  max-width: 820px;
  margin: auto;
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.article h2 { font-size: 26px; }

/* Utility */
.mobile-only { display: none; }
.desktop-only { display: inline-flex; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .links { gap: 16px; font-size: 13.5px; }
  .callChip { display: none; }
  .heroGrid { grid-template-columns: 1fr 420px; gap: 36px; }
  .bookgrid { grid-template-columns: 1fr 1fr 1fr; }
  .bookgrid .btn { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .heroGrid,
  .split { grid-template-columns: 1fr; }
  .heroImg { height: 380px; }
  .f1 { left: 12px; }
  .f2 { right: 12px; }
  .grid4 { grid-template-columns: 1fr 1fr; }
  .routes { grid-template-columns: 1fr 1fr; }
  .footerGrid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  .links { display: none; }
  .menuToggle { display: flex; }
  .mobile-only { display: flex; }
  .desktop-only { display: none; }

  .topin {
    height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hero { padding: 40px 0 50px; }
  .heroGrid { gap: 28px; }
  .heroImg { height: 300px; border-radius: 18px; }
  .booking { margin-top: 16px; padding: 14px; }
  .bookgrid { grid-template-columns: 1fr; }
  .formGrid,
  .grid3,
  .grid4,
  .routes,
  .footerGrid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .section h2 { font-size: 28px; }
  .pageHero { padding: 40px 0; }
  .pageHero h1 { font-size: 32px; }
  .ctaIn { display: block; }
  .ctaCallRow { flex-direction: column; align-items: stretch; }
  .ctaPhoneBtn,
  .waBtn { justify-content: center; }
  .trust { gap: 12px; }
  .floating { padding: 12px 14px; font-size: 13px; }

  .callBar { display: flex; }
  body { padding-bottom: 56px; }
}

@media (max-width: 400px) {
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }
}
