/* Salmanz Voyages — Sky Voyage theme */
:root {
  --blush: #B8D9F5;
  --blush-soft: #D6EAF8;
  --blush-deep: #4A90C8;
  --blush-deeper: #3B82F6;
  --rose-mist: #E8F4FC;
  --paper: #F5FAFF;
  --paper-warm: #F7FBFE;
  --cream: #EEF6FC;
  --white: #FFFFFF;
  --card: #FBFDFF;
  --ink: #1E2A3A;
  --ink-deep: #243447;
  --muted: #5A6B7D;
  --gold: #D4A574;
  --gold-soft: #E8C9A8;
  --champagne: #F5E6D3;
  --shadow: 0 16px 40px rgba(30, 42, 58, 0.1);
  --shadow-rose: 0 12px 32px rgba(74, 144, 200, 0.22);
  --radius: 1.35rem;
  --radius-sm: 0.9rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
  /* legacy aliases remapped to sky family */
  --teal: #5BA3D0;
  --teal-deep: #3B6F9A;
  --green: #6BB5D8;
  --coral: #4A90C8;
  --coral-hot: #3B82F6;
  --saffron: #D4A574;
  --sky: #B8D9F5;
  --magenta: #6B8FD4;
  --pink: #B8D9F5;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(184, 217, 245, 0.55), transparent 38%),
    radial-gradient(circle at 92% 8%, rgba(74, 144, 200, 0.14), transparent 34%),
    radial-gradient(circle at 78% 88%, rgba(212, 165, 116, 0.14), transparent 42%),
    radial-gradient(circle at 20% 70%, rgba(214, 234, 248, 0.5), transparent 40%),
    var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blush-deeper); text-underline-offset: 0.2em; }
a:hover { color: var(--blush-deep); }
strong { font-weight: 700; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink-deep);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header — translucent sky glass */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(245, 250, 255, 0.82);
  border-bottom: 1px solid rgba(184, 217, 245, 0.65);
  box-shadow: 0 1px 0 rgba(212, 165, 116, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: white;
  background: linear-gradient(135deg, #4A90C8, #5BA3D0 50%, #3B6F9A);
  box-shadow: 0 8px 20px rgba(74, 144, 200, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-deep);
}
.logo-text span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:not(.btn):hover { color: var(--blush-deep); }

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blush-deep), #5BA3D0);
  cursor: pointer;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-around;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: white;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blush-deep), #3B82F6);
  color: white;
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover { color: white; filter: brightness(1.05); }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(184, 217, 245, 0.9);
}
.btn-secondary:hover {
  border-color: var(--blush-deep);
  color: var(--blush-deeper);
  background: var(--paper-warm);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { color: white; filter: brightness(1.05); }

.btn-sm { padding: 0.55rem 1rem; font-size: 0.88rem; }

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-blobs .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.6;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}
.blob-1 { width: 22rem; height: 22rem; background: #B8D9F5; top: -4rem; left: -6rem; }
.blob-2 { width: 18rem; height: 18rem; background: #D6EAF8; top: 18%; right: -5rem; animation-delay: -2s; }
.blob-3 { width: 14rem; height: 14rem; background: #E8C9A8; bottom: 0; left: 28%; animation-delay: -4s; opacity: 0.45; }
.blob-4 { width: 10rem; height: 10rem; background: #4A90C8; top: 12%; left: 48%; animation-delay: -1s; opacity: 0.25; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blush-deeper);
  background: rgba(184, 217, 245, 0.45);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}
.accent-coral { color: var(--blush-deeper); background: rgba(74, 144, 200, 0.16); }
.accent-sky { color: #3B6F9A; background: rgba(126, 184, 224, 0.32); }
.accent-saffron { color: #8B6914; background: rgba(212, 165, 116, 0.22); }
.accent-magenta { color: #3B6F9A; background: rgba(107, 143, 212, 0.18); }
.accent-teal { color: #3B6F9A; background: rgba(91, 163, 208, 0.18); }
.accent-green { color: #3B6F9A; background: rgba(107, 181, 216, 0.2); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #4A90C8, #5BA3D0 45%, #D4A574);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-pills li {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: white;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(120deg, #B8D9F5, #4A90C8, #D4A574);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: var(--ink);
}

.photo-stack {
  position: relative;
  min-height: 22rem;
}
.photo {
  margin: 0;
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid white;
  background: white;
  transition: transform 0.35s ease;
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(30, 42, 58, 0.78);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.photo-a {
  width: 72%;
  aspect-ratio: 4/3;
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-3deg);
}
.photo-b {
  width: 48%;
  aspect-ratio: 5/4;
  right: 0;
  top: 12%;
  z-index: 3;
  transform: rotate(6deg);
  border-color: var(--blush);
}
.photo-c {
  width: 52%;
  aspect-ratio: 5/4;
  left: 18%;
  bottom: 0;
  z-index: 1;
  transform: rotate(2deg);
  border-color: var(--gold-soft);
}
.photo:hover { transform: rotate(0deg) scale(1.03); z-index: 4; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2.25rem; }
.section-head h2,
.buses-copy h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}
.section-lead { color: var(--muted); margin: 0; }

/* Packages */
.package-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .package-grid { grid-template-columns: repeat(3, 1fr); }
}

.package-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(184, 217, 245, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.package-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 24px 48px rgba(30, 42, 58, 0.14);
  border-color: var(--blush-deep);
}
.tint-teal { border-color: rgba(91, 163, 208, 0.45); }
.tint-green { border-color: rgba(107, 181, 216, 0.5); }
.tint-coral { border-color: rgba(74, 144, 200, 0.55); }
.tint-sky { border-color: rgba(126, 184, 224, 0.65); }
.tint-saffron { border-color: rgba(212, 165, 116, 0.65); }
.tint-magenta { border-color: rgba(107, 143, 212, 0.55); }

.package-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.package-card:hover .package-img img { transform: scale(1.07); }

.tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(251, 253, 255, 0.95);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(30, 42, 58, 0.12);
  border: 1px solid rgba(184, 217, 245, 0.6);
}

.package-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}
.package-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.25;
}
.package-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.card-cta {
  margin-top: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--blush-deeper);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.card-cta::after { content: "→"; transition: transform 0.2s ease; }
.card-cta:hover { color: var(--blush-deep); }
.card-cta:hover::after { transform: translateX(4px); }

.more-packages {
  margin-top: 2rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background:
    linear-gradient(135deg, rgba(184, 217, 245, 0.35), rgba(214, 234, 248, 0.4) 45%, rgba(212, 165, 116, 0.18));
  border: 2px dashed rgba(74, 144, 200, 0.4);
  padding: 1.75rem;
}
.more-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.more-inner h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}
.more-inner p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* Buses */
.buses {
  background: linear-gradient(180deg, #EEF6FC 0%, #F5FAFF 55%, var(--paper) 100%);
}
.buses-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .buses-grid { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.check-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-deep), #5BA3D0);
  color: white;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.buses-panel {
  display: grid;
  gap: 0.9rem;
}
.bus-card {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--blush);
  border: 1px solid rgba(184, 217, 245, 0.5);
  border-left: 5px solid var(--blush-deep);
  transition: transform 0.2s ease;
}
.bus-card:nth-child(2) { border-left-color: var(--gold); }
.bus-card:nth-child(3) { border-left-color: #5BA3D0; }
.bus-card:hover { transform: translateX(6px); }
.bus-icon {
  grid-row: 1 / span 2;
  font-size: 1.75rem;
  align-self: center;
}
.bus-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.bus-card span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Why */
.why-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 217, 245, 0.55);
  border-top: 5px solid var(--blush-deep);
}
.why-card:nth-child(2) { border-top-color: var(--gold); }
.why-card:nth-child(3) { border-top-color: #5BA3D0; }
.why-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(184, 217, 245, 0.35);
}
.why-card:nth-child(2)::after { background: rgba(212, 165, 116, 0.22); }
.why-card:nth-child(3)::after { background: rgba(91, 163, 208, 0.2); }

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blush-deep), #D4A574);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}
.why-card:nth-child(2) .why-num {
  background: linear-gradient(135deg, #D4A574, #4A90C8);
  -webkit-background-clip: text;
  background-clip: text;
}
.why-card:nth-child(3) .why-num {
  background: linear-gradient(135deg, #5BA3D0, #B8D9F5);
  -webkit-background-clip: text;
  background-clip: text;
}
.why-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.why-card p { margin: 0; color: var(--muted); }

/* Contact */
.contact {
  background:
    radial-gradient(circle at 0% 50%, rgba(184, 217, 245, 0.45), transparent 42%),
    radial-gradient(circle at 100% 20%, rgba(212, 165, 116, 0.18), transparent 38%),
    var(--cream);
}
.contact-wrap {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 820px) {
  .contact-wrap { grid-template-columns: 1.2fr 0.8fr; align-items: stretch; }
}

.contact-list {
  margin: 1.5rem 0;
}
.contact-list > div {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed rgba(184, 217, 245, 0.7);
}
.contact-list dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-list dd { margin: 0; font-weight: 600; }
.contact-list a { text-decoration: none; font-size: 1.2rem; }
.muted { color: var(--muted); font-weight: 600; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-card {
  position: relative;
  background: linear-gradient(160deg, #5BA3D0, #4A90C8 45%, #3B6F9A);
  color: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-rose);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-card-label {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,255,255,0.22);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.85rem;
}
.contact-card p:last-of-type {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.contact-card strong { color: var(--champagne); }

.confetti span {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  opacity: 0.75;
  animation: confetti 5s ease-in-out infinite;
}
.confetti span:nth-child(1) { background: #D4A574; top: 12%; right: 14%; }
.confetti span:nth-child(2) { background: #D6EAF8; top: 30%; right: 8%; width: 0.55rem; height: 0.55rem; animation-delay: -1s; border-radius: 50%; }
.confetti span:nth-child(3) { background: #B8D9F5; bottom: 22%; right: 18%; animation-delay: -2s; }
.confetti span:nth-child(4) { background: #E8C9A8; top: 55%; right: 28%; animation-delay: -0.5s; transform: rotate(25deg); }
.confetti span:nth-child(5) { background: #fff; bottom: 12%; right: 8%; animation-delay: -1.5s; }

@keyframes confetti {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(18deg); }
}

/* Footer — deep navy ink */
.site-footer {
  background: var(--ink-deep);
  color: #C5D5E8;
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
}
.site-footer p { margin: 0.25rem 0 0; color: #8FA3B8; font-size: 0.92rem; }
.footer-note { max-width: 28rem; }
.back-top {
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
}
.back-top:hover { color: var(--champagne); }

/* FAB */
.fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform 0.2s ease;
}
.fab-wa:hover { transform: scale(1.08); color: white; }

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(245, 250, 255, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 2px solid var(--blush);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 0.75rem 0.5rem;
    border-radius: 0.65rem;
  }
  .site-nav a:not(.btn):hover { background: rgba(184, 217, 245, 0.35); }
  .site-nav .btn { margin-top: 0.35rem; width: 100%; }
  .photo-stack { min-height: 18rem; margin-top: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob, .confetti span, .photo, .package-card, .btn, .fab-wa, .bus-card {
    animation: none !important;
    transition: none !important;
  }
}

/* Contact extras */
.badge-primary {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blush-deep), #5BA3D0);
  color: white;
  vertical-align: middle;
}
.sub-dd {
  margin-top: 0.35rem !important;
  font-weight: 500 !important;
  color: var(--muted);
  font-size: 0.95rem;
}
.sub-dd a { font-size: 1rem !important; }
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.social-row a {
  font-weight: 700;
  text-decoration: none;
  color: var(--blush-deeper);
  background: rgba(184, 217, 245, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
}
.social-row a:hover {
  background: linear-gradient(135deg, rgba(74, 144, 200, 0.2), rgba(212, 165, 116, 0.2));
  color: var(--blush-deep);
}

.footer-addr {
  margin-top: 0.35rem !important;
  font-size: 0.85rem !important;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  max-width: 22rem;
}
.footer-links a {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--champagne); }

/* Tabbed destination catalogue */
.trip-catalogue {
  padding-top: 2.25rem;
  background: linear-gradient(180deg, rgba(238, 246, 252, 0.85), transparent 32%);
}
.catalogue-head { margin-bottom: 1.35rem; }
.primary-tab-shell {
  background: rgba(251, 253, 255, 0.85);
  border: 1px solid rgba(184, 217, 245, 0.65);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 0.65rem;
  box-shadow: 0 18px 42px rgba(30, 42, 58, 0.08);
}
.primary-tabs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 144, 200, 0.4) transparent;
}
.primary-tab, .sub-tab {
  appearance: none;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.primary-tab {
  min-height: 3rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 5px 15px rgba(30, 42, 58, 0.06);
  border-color: rgba(184, 217, 245, 0.5);
}
.primary-tab span { margin-right: 0.25rem; }
.primary-tab:hover, .primary-tab:focus-visible, .sub-tab:hover, .sub-tab:focus-visible { transform: translateY(-2px); }
.primary-tab:focus-visible, .sub-tab:focus-visible, .tab-panel:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.primary-tab.is-active { color: white; box-shadow: 0 9px 22px rgba(74, 144, 200, 0.28); border-color: transparent; }
.tab-coral.is-active { background: linear-gradient(135deg, #4A90C8, #5BA3D0); }
.tab-sky.is-active { background: linear-gradient(135deg, #7EB8E0, #5BA3D0); }
.tab-green.is-active { background: linear-gradient(135deg, #6BB5D8, #3B6F9A); }
.tab-saffron.is-active { background: linear-gradient(135deg, #D4A574, #4A90C8); }
.tab-teal.is-active { background: linear-gradient(135deg, #5BA3D0, #4A90C8); }
.tab-magenta.is-active { background: linear-gradient(135deg, #6B8FD4, #3B6F9A); }
.tab-panel { padding: 2rem 0.6rem 0.6rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.tab-panel[hidden] { display: none; }
.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.panel-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 0.45rem;
  color: var(--ink-deep);
}
.panel-head p:not(.eyebrow) { color: var(--muted); margin: 0; max-width: 42rem; }
.panel-sticker {
  flex: 0 0 auto;
  background: var(--white);
  border: 2px dashed rgba(74, 144, 200, 0.45);
  color: var(--blush-deeper);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(2deg);
}
.sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
}
.sub-tab {
  color: var(--blush-deeper);
  background: rgba(184, 217, 245, 0.35);
  border-color: rgba(184, 217, 245, 0.6);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}
.sub-tab.is-active {
  background: linear-gradient(135deg, var(--blush-deep), #5BA3D0);
  color: white;
  border-color: transparent;
  box-shadow: 0 7px 16px rgba(74, 144, 200, 0.28);
}
.package-card.is-hidden { display: none; }
.package-body h4, .more-inner h4, .feature-callout h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0;
  font-size: 1.25rem;
}
/* compact-grid max-width overridden below for 3-col regional panels */
.feature-callout {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 48rem;
  background: var(--card);
  border: 2px solid rgba(184, 217, 245, 0.7);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.feature-callout.tint-green { border-color: rgba(107, 181, 216, 0.5); }
.feature-callout.tint-coral { border-color: rgba(74, 144, 200, 0.5); }
.feature-callout.tint-teal { border-color: rgba(91, 163, 208, 0.5); }
.feature-callout.tint-magenta { border-color: rgba(107, 143, 212, 0.5); }
.feature-callout p { margin: 0.45rem 0 0.75rem; color: var(--muted); }
.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #D6EAF8, #B8D9F5);
  font-size: 2.25rem;
}
.buses-panel-tab {
  background: linear-gradient(180deg, #EEF6FC 0%, #F5FAFF 55%, transparent 100%);
  border-radius: var(--radius);
}
.buses-panel-tab .buses-grid { padding: 0.5rem 0.5rem 1rem; }
.buses-panel-tab .buses-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink-deep);
}
@media (max-width: 700px) {
  .panel-head { display: block; }
  .panel-sticker { display: inline-block; margin-top: 0.85rem; }
  .feature-callout { align-items: flex-start; }
  .feature-icon { flex-basis: 3.75rem; width: 3.75rem; height: 3.75rem; font-size: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .primary-tab, .sub-tab { transition: none; }
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.package-meta strong { color: var(--blush-deeper); }

.trust-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.3rem;
}
.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  background: rgba(251, 253, 255, 0.9);
  border-left: 4px solid var(--blush-deep);
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 7px 18px rgba(30, 42, 58, 0.06);
  border: 1px solid rgba(184, 217, 245, 0.45);
  border-left: 4px solid var(--blush-deep);
}
.trust-strip li:nth-child(2) { border-left-color: var(--gold); }
.trust-strip li:nth-child(3) { border-left-color: #5BA3D0; }
.trust-strip strong { font-size: 0.88rem; }
.trust-strip span { color: var(--muted); font-size: 0.78rem; }
@media (max-width: 650px) { .trust-strip { grid-template-columns: 1fr; } }


/* Hero showcase — destinations + buses at a glance */
.hero-showcase {
  position: relative;
  margin-top: 2.75rem;
  padding-top: 0.25rem;
}
.showcase-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.35rem;
}
.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 0.55rem;
  color: var(--ink-deep);
}
.showcase-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 2px solid rgba(184, 217, 245, 0.7);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem 1.1rem;
  box-shadow: 0 10px 24px rgba(30, 42, 58, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 7.5rem;
}
.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-rose);
  color: inherit;
  border-color: rgba(74, 144, 200, 0.55);
}
.showcase-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.showcase-card.tint-teal { border-color: rgba(91, 163, 208, 0.45); }
.showcase-card.tint-sky { border-color: rgba(126, 184, 224, 0.55); }
.showcase-card.tint-coral { border-color: rgba(74, 144, 200, 0.45); }
.showcase-card.tint-green { border-color: rgba(107, 181, 216, 0.5); }
.showcase-card.tint-saffron { border-color: rgba(212, 165, 116, 0.55); }
.showcase-card.tint-magenta { border-color: rgba(107, 143, 212, 0.5); }
.showcase-card.showcase-bus {
  background: linear-gradient(160deg, #EEF6FC 0%, #FBFDFF 70%);
  border-style: dashed;
}
.showcase-emoji {
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.showcase-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blush-deeper);
}
.showcase-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink-deep);
}
.showcase-hint {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}
.compact-grid {
  max-width: none;
}
@media (min-width: 720px) {
  .compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Bus-first update: hero secondary link, showcase groups, fleet ===== */
.hero-secondary {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-secondary a { font-weight: 700; text-decoration: none; }
.hero-secondary a:hover { text-decoration: underline; }

.showcase-group-label {
  margin: 1.35rem 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.showcase-head + .showcase-group-label { margin-top: 0.5rem; }
.showcase-grid-bus .showcase-card { min-height: 8.25rem; }
.showcase-grid-bus .showcase-card strong { font-size: 1.12rem; }
.showcase-grid-dest .showcase-card { min-height: 6.75rem; }
@media (min-width: 640px) {
  .showcase-grid-dest { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .showcase-grid-dest { grid-template-columns: repeat(6, 1fr); gap: 0.85rem; }
  .showcase-grid-dest .showcase-card { padding: 0.9rem 0.9rem 1rem; }
}

.tab-bus.is-active { background: linear-gradient(135deg, #3B82F6, #4A90C8 55%, #5BA3D0); }

/* Our Fleet */
.fleet {
  padding-top: 3.25rem;
  background: linear-gradient(180deg, rgba(238, 246, 252, 0.9), rgba(245, 250, 255, 0.4) 60%, transparent);
}
.fleet-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.fleet-head > div:first-child { max-width: 42rem; }
.fleet-total {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 2px solid rgba(212, 165, 116, 0.6);
  border-radius: 1.1rem;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 10px 24px rgba(30, 42, 58, 0.08);
}
.fleet-total strong {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--blush-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fleet-total span {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.25;
  max-width: 7.5rem;
  color: var(--ink-deep);
}
.fleet-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}
.fleet-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(74, 144, 200, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fleet-card-benz { border-color: rgba(212, 165, 116, 0.65); }
.fleet-card-van { border-color: rgba(91, 163, 208, 0.55); }
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(30, 42, 58, 0.14);
}
.fleet-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--rose-mist); }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-qty {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: linear-gradient(135deg, var(--blush-deep), #3B82F6);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(30, 42, 58, 0.22);
}
.fleet-card-benz .fleet-qty { background: linear-gradient(135deg, #C7955F, var(--blush-deep)); }
.fleet-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.fleet-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
  color: var(--ink-deep);
}
.fleet-seats {
  margin: 0;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blush-deeper);
  background: rgba(184, 217, 245, 0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.fleet-note { margin: 0; color: var(--muted); font-size: 0.97rem; flex: 1; }
.fleet-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-top: 1px dashed rgba(184, 217, 245, 0.9);
  padding-top: 0.6rem;
}
.fleet-meta strong { color: var(--blush-deeper); }
.fleet-cta { margin-top: 0.35rem; width: 100%; }
.fleet-summary {
  margin: 1.5rem 0 0.35rem;
  text-align: center;
  font-size: 1rem;
  color: var(--ink);
}
.fleet-disclaimer {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 700px) {
  .fleet-head { display: block; }
  .fleet-total { margin-top: 1rem; display: inline-flex; }
}

/* Buses tab extras */
.bus-uses {
  margin: 0.5rem 0.5rem 1.25rem;
}
.bus-uses-title {
  margin: 0 0 0.55rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.bus-uses ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bus-uses li {
  background: var(--white);
  border: 1px solid rgba(184, 217, 245, 0.8);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.tab-fleet {
  margin: 0 0.5rem 0.75rem;
  background: var(--white);
  border: 2px solid rgba(74, 144, 200, 0.35);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: 0 10px 26px rgba(30, 42, 58, 0.07);
}
.tab-fleet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.tab-fleet-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-deep);
}
.tab-fleet-total {
  font-weight: 800;
  font-size: 0.85rem;
  color: #8B6914;
  background: rgba(212, 165, 116, 0.22);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tab-fleet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
@media (min-width: 860px) {
  .tab-fleet-list { grid-template-columns: repeat(3, 1fr); }
}
.tab-fleet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "qty name" "cta cta";
  gap: 0.35rem 0.75rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(184, 217, 245, 0.7);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
}
.tf-qty {
  grid-area: qty;
  display: grid;
  place-items: center;
  min-width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--blush-deep), #3B82F6);
  color: white;
  font-weight: 800;
  font-size: 1rem;
}
.tf-name { grid-area: name; display: flex; flex-direction: column; line-height: 1.3; }
.tf-name strong { font-size: 1rem; color: var(--ink-deep); }
.tf-name small { color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.tab-fleet-list a {
  grid-area: cta;
  justify-self: start;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: #128C4A;
}
.tab-fleet-list a::before { content: "💬 "; }
.tab-fleet-list a:hover { text-decoration: underline; }
.tab-fleet-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  .fleet-card, .fleet-img img { transition: none !important; }
}
@media (max-width: 560px) {
  .hero { padding-top: 2.25rem; }
  .hero .eyebrow { font-size: 0.72rem; letter-spacing: 0.04em; }
  .hero-actions .btn { width: 100%; }
}
