:root {
  --g: #d4a017;
  --g2: #f0c040;
  --g3: #a07010;
  --g4: rgba(212,160,23,0.18);
  --bk: #000000;
  --bk2: #0a0a0a;
  --bk3: #111111;
  --card: #090909;
  --gold-grad: linear-gradient(90deg, #b8870a 0%, #f0c040 45%, #e8b820 65%, #b8870a 100%);
  --gold-grad-hover: linear-gradient(90deg, #c99a10 0%, #ffd450 45%, #f5cc30 65%, #c99a10 100%);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bk); color: #fff; font-family: 'Lato', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato';
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #fff;
}

button, .btn-book, .btn-search, .btn-explore, .btn-fleet, .btn-cta {
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(90deg, #ffd66d 0%, #d39e12 34%, #f1c63a 68%, #f7dd7f 100%);
  color: #100800;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  text-shadow: 0 1px 2px rgba(255,255,255,0.14);
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

button:hover, .btn-book:hover, .btn-search:hover, .btn-explore:hover, .btn-fleet:hover, .btn-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 20px 44px rgba(0,0,0,0.38);
}

/* ── NAVBAR ── */
#navbar {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(212,160,23,0.25);
  padding: 0;
  transition: background .3s;
}
#navbar.scrolled { position: fixed; background: rgba(0,0,0,0.97); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 1rem; min-height: 72px; }

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 0.8rem; }
.logo-img {
  width: 66px;
  height: auto;
  object-fit: contain;
  display: block;
}
.logo-text .lt1 {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-text .lt2 {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  color: var(--g); letter-spacing: 2.5px;
}
.logo-text .lt3 {
  display: block;
  font-size: 0.55rem; color: #ccc; letter-spacing: 2px;
}


/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0.8rem; margin: 0 auto; list-style: none; flex-wrap: nowrap; justify-content: center; min-width: 0; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.7rem;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: #ccc; padding: 0.95rem 0.6rem;
  display: block; transition: color .2s, border-color .2s;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.act { color: var(--g); border-bottom-color: var(--g); }
.nav-links li { position: relative; }
.nav-links li.has-submenu .submenu-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links li.has-submenu .submenu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #ccc;
  cursor: pointer;
  padding: 0.6rem 0.25rem 0.6rem 0.35rem;
  font-size: 0.9rem;
}
.nav-links .submenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: rgba(0,0,0,0.98);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, max-height .3s ease;
  max-height: 0;
  overflow: hidden;
  z-index: 200;
}
.nav-links li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); max-height: 500px; }
.nav-links .submenu li { width: 100%; }
.nav-links .submenu a {
  color: #ddd;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: none;
  white-space: nowrap;
}
.nav-links .submenu a:hover, .nav-links .submenu a.act { color: var(--g); }
.nav-links .submenu.open { opacity: 1; visibility: visible; transform: translateY(0); max-height: 1000px; }

/* Book now */
.btn-book {
  background: linear-gradient(90deg, #ffd66d 0%, #d39e12 34%, #f1c63a 68%, #f7dd7f 100%);
  color: #100800 !important;
  font-family: 'Lato', sans-serif;
  font-weight: 900; font-size: 0.82rem;
  letter-spacing: 2.2px; text-transform: uppercase;
  padding: 0.8rem 1.4rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, filter .2s, box-shadow .2s;
  box-shadow: 0 18px 44px rgba(0,0,0,0.36);
}
.btn-book:hover { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 22px 48px rgba(0,0,0,0.4); }
.btn-book i { font-size: 1rem; }

.phones-col { text-align: right; margin-left: 1rem; }
.phones-col .ph {
  display: block; font-size: 0.8rem;
  font-weight: 700; color: #ddd; white-space: nowrap;
}
.phones-col .ph i { color: var(--g); margin-right: 4px; }
.phones-col .ph-s { font-size: 0.55rem; color: #666; letter-spacing: 1px; }

.nav-toggler {
  background: none; border: none; cursor: pointer; display: none;
}

@media (max-width: 991px) {
  .nav-toggler { display: flex; align-items: center; margin-left: auto; }
  .nav-links-wrap {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.98); padding: 1rem 1.5rem;
    border-top: 1px solid rgba(212,160,23,0.2);
  }
  .nav-links-wrap.open { display: block; }
  .nav-links { flex-direction: column; align-items: flex-start; }
  .phones-col { display: none; }
  .nav-links li.has-submenu > a::after { content: "▾"; }
  .nav-links li.has-submenu .submenu-toggle { display: inline-flex; }
  .nav-links li.has-submenu .submenu {
    position: static;
    width: 100%;
    display: block;
    margin-top: 0.2rem;
    padding-left: 1rem;
    border: none;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity .25s ease, max-height .3s ease, visibility .25s ease;
  }
  .nav-links li.has-submenu .submenu.open {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
  }
  .nav-links li.has-submenu .submenu a {
    padding: 0.6rem 0.8rem;
    width: 100%;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding-top: 26px;
  overflow: hidden;
  background-image: url('../img/bus-banner-image.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* Warm golden atmospheric overlay */
.hero-atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,216,110,0.14) 0%, transparent 35%),
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 32%, rgba(0,0,0,0.18) 68%, rgba(0,0,0,0.04) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.14) 0%, transparent 20%, rgba(0,0,0,0.72) 100%);
}
/* Bottom fade to black */
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to bottom, transparent, #000);
}

/* Bus image - right side prominent */
.hero-bus {
  position: absolute;
  right: 3.5%; top: 7%;
  width: 42%; max-width: 760px;
  height: auto;
  max-height: 74vh;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(-26px 0 88px rgba(0,0,0,0.95));
  z-index: 2;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.24) 10%, rgba(0,0,0,0.68) 22%, #000 32%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.24) 10%, rgba(0,0,0,0.68) 22%, #000 32%);
  display: block;
}

.hero-content {
  position: relative; z-index: 3;
  padding-top: 110px; padding-bottom: 28px;
  max-width: 725px;
  margin-bottom: 2.8rem;
}

.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2.85rem; color: #f8d05b;
  line-height: 1.05; display: block; margin-bottom: 10px;
  text-shadow: 0 6px 16px rgba(255,210,90,0.28);
}

.hero-h1 {
  font-family:math;
  font-weight: 900;
  font-size: clamp(3.3rem, 4.5vw, 5.2rem);
  line-height: 0.96;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-shadow: 0 18px 46px rgba(0,0,0,0.48);
}
.hero-h1 .gold-word {
  background: linear-gradient(90deg, #f7c84d 0%, #d79f24 35%, #f8d543 68%, #ffe7a1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-top: 0.12rem;
  text-shadow: 0 18px 46px rgba(0,0,0,0.48);
  white-space: nowrap;
}

.hero-sub {
  font-size: 0.94rem; color: #e3e3e3;
  line-height: 1.95; margin-top: 1rem;
  max-width: 470px;
  letter-spacing: 0.04em;
}
.hero-sub .gold-txt { color: var(--g); font-weight: 700; }

/* Search bar */
.search-form {
  background: rgba(8,8,8,0.92);
  border: 1px solid rgba(212,160,23,0.6);
  box-shadow: 0 32px 120px rgba(0,0,0,0.52), inset 0 0 0 1px rgba(212,160,23,0.15);
  padding: 1.25rem 1.8rem;
  margin-top: 2.2rem;
  display: inline-block;
  width: 100%;
  max-width: 760px;
  border-radius: 32px;
}
.search-form .sf-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(160px, 1.2fr) auto;
  gap: 18px;
  align-items: center;
}
.sf-field { min-width: 0; }
.sf-field label {
  display: block; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #d5bd6c;
  margin-bottom: 7px;
}
.sf-field .input-wrap {
  position: relative;
}
.sf-field .input-wrap i {
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  color: var(--g); font-size: 1rem;
  pointer-events: none;
}
.sf-field select, .sf-field input {
  width: 100%; background: rgba(18,18,18,0.96);
  border: 1px solid rgba(255,255,255,0.14); color: #f4f3ec;
  font-family: 'Lato', sans-serif; font-size: 0.94rem;
  padding: 1rem 1rem 1rem 3rem; outline: none;
  border-radius: 20px; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.sf-field select option { background: rgba(18,18,18,0.96); }
.sf-field select:focus, .sf-field input:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(212,160,23,0.16); }
.btn-search {
  background: linear-gradient(90deg, #fcd565 0%, #d39f16 34%, #f7cf4f 70%, #f9de8a 100%);
  color: #100800;
  font-family: 'Lato', sans-serif;
  font-weight: 900; font-size: 0.98rem;
  letter-spacing: 2.4px; text-transform: uppercase;
  padding: 1.2rem 2.5rem; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px; cursor: pointer;
  white-space: nowrap; transition: transform .2s, filter .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 12px;
  box-shadow: 0 24px 76px rgba(0,0,0,0.48);
}
.btn-search:hover { transform: translateY(-1px); filter: brightness(1.12); box-shadow: 0 26px 72px rgba(0,0,0,0.46); }

@media (max-width: 991px) {
  .search-form { max-width: 100%; padding: 1.2rem 1.4rem; }
  .search-form .sf-row { grid-template-columns: 1fr; gap: 14px; }
  .btn-search { width: 100%; justify-content: center; }
  .hero-bus { display: none; }
  .hero-content { padding-top: 90px; }
}

/* ── FEATURES STRIP ── */
.feat-strip {
  background: #000;
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.feat-row { display: flex; }
.feat-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 1rem 1.5rem;
  border-right: 1px solid #1a1a1a;
}
.feat-item:last-child { border-right: none; }
.feat-icon { color: var(--g); font-size: 1.7rem; min-width: 34px; text-align: center; }
.feat-text strong {
  display: block; font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.5px; color: #ddd;
}
.feat-text span { font-size: 0.65rem; color: #666; }

@media (max-width: 767px) {
  .feat-row { flex-wrap: wrap; }
  .feat-item { flex: 0 0 50%; border-bottom: 1px solid #1a1a1a; }
}

/* ── SECTION HEADER (simple — TITLE — style) ── */
.sec-title-row {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin-bottom: 2.5rem;
}
.sec-title-row .tline {
  flex: 1; max-width: 160px; height: 1px;
  background: rgba(212,160,23,0.5);
}
.sec-title-row h2 {
  font-family: math;
  font-weight: 900; font-size: 1.2rem;
  letter-spacing: 5.5px; text-transform: uppercase;
  color: var(--g); white-space: nowrap;
}
.sec-title-row .star { color: var(--g); font-size: 0.5rem; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 99999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.whatsapp-float i { font-size: 24px; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.36); }

@media (max-width: 576px) {
  .whatsapp-float { right: 14px; bottom: 18px; width: 50px; height: 50px; }
  .whatsapp-float i { font-size: 20px; }
}

.pkg-body h3,
.fleet-body h3 {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* ── PACKAGES ── */
.sec-packages { background: var(--bk); padding: 3.5rem 0; }

.pkg-card {
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid rgba(212,160,23,0.28);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 58px rgba(212,160,23,0.22);
  border-color: rgba(255,215,0,0.45);
}
.pkg-card,
.fleet-card,
.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pkg-body,
.fleet-body,
.package-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  min-height: 1px;
}
.pkg-img-wrap { position: relative; height: 220px; overflow: visible; }
.pkg-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-img-wrap .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.pkg-icon-btn {
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--g); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 1.05rem; z-index: 3;
  border: 3px solid var(--card);
}
.pkg-body { padding: 3rem 1.4rem 1.8rem; text-align: center; }
.pkg-body h3 {
  font-family: math;
  font-weight: 900; font-size: 0.95rem;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: #fff; margin-bottom: 0.6rem;
}
.pkg-body p { font-size: 0.86rem; color: #c3c3c3; line-height: 1.85; margin-bottom: 1.3rem; }
.btn-explore {
  display: block; width: 100%;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.95);
  color: #f7d365;
  font-family: 'Lato', sans-serif;
  font-weight: 900; font-size: 0.92rem;
  letter-spacing: 2.8px; text-transform: uppercase;
  padding: 1rem 0; border-radius: 12px;
  cursor: pointer; transition: transform .2s, background .2s, box-shadow .2s, border-color .2s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.32);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  text-align: center;
}
.btn-explore:hover {
  transform: translateY(-1px);
  background: rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 20px 42px rgba(0,0,0,0.40);
  color: #fff;
}
.package-cta {
  margin-top: 1rem;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.9rem 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #f5c450 0%, #d8a924 34%, #f1d966 68%, #f8e396 100%);
  color: #100800;
  border: 1px solid rgba(255,255,255,0.18);
}
.package-cta:hover {
  filter: brightness(1.08);
}

/* ── FLEET ── */
.sec-fleet {
  background: var(--bk2); padding: 3.5rem 0;
  border-top: 1px solid rgba(212,160,23,0.15);
}
.fleet-card {
  background: var(--card);
  border: 1px solid rgba(212,160,23,0.25);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(212,160,23,0.15);
}
.sec-packages .row,
.sec-fleet .row,
.package-grid {
  align-items: stretch;
}
.sec-packages .row > [class*="col-"],
.sec-fleet .row > [class*="col-"],
.package-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
}
.sec-packages .pkg-card,
.sec-fleet .fleet-card,
.package-grid .package-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.sec-packages .pkg-body,
.sec-fleet .fleet-body,
.package-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
  min-height: 0;
}
.sec-packages .pkg-body .btn-explore,
.sec-fleet .fleet-body .btn-fleet,
.package-card-body .button,
.package-card-body .btn-explore {
  margin-top: auto;
}
.fleet-img { height: 160px; overflow: hidden; background: #050505; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-body { padding: 1rem 1.1rem 1.2rem; text-align: center; }
.fleet-body h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 900; font-size: 0.88rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; margin-bottom: 0.55rem;
}
.fleet-specs {
  display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 0.85rem;
}
.fspec { font-size: 0.7rem; color: #999; display: flex; align-items: center; gap: 4px; }
.fspec i { color: var(--g); }
.btn-fleet {
  display: block; width: 100%;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.95);
  color: #f7d365;
  font-family: 'Lato', sans-serif; font-weight: 900;
  font-size: 0.92rem; letter-spacing: 2.8px; text-transform: uppercase;
  padding: 1rem 0; border-radius: 12px; cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s, border-color .2s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 18px 40px rgba(0,0,0,0.32);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
.btn-fleet:hover {
  transform: translateY(-1px);
  background: rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 20px 42px rgba(0,0,0,0.40);
  color: #fff;
}

/* ── WHY ── */
.sec-why {
  background: var(--bk); padding: 3.5rem 0;
  border-top: 1px solid rgba(212,160,23,0.15);
}
.why-item {
  text-align: center;
  padding: 1.35rem 1rem;
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.why-circle {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1.5px solid rgba(255, 215, 0, 0.85);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  color: #f7d365; font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.18);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.why-circle::after {
  content: ''; position: absolute; inset: 8px;
  border-radius: 50%; border: 1px solid rgba(255, 215, 0, 0.25);
}
.why-item:hover .why-circle {
  background: rgba(255, 215, 0, 0.95);
  color: #000;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.35);
}
.why-item h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f7d365;
  line-height: 1.45;
  margin: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: #030202;
  border-top: 1px solid rgba(255, 215, 0, 0.13);
  padding: 3rem 0 0;
}
.flogo-box {
  width: 50px; height: 50px;
  border: 2px solid var(--g);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.flogo-box .fb-crown { color: var(--g); font-size: 0.55rem; }
.flogo-box .fb-smr {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: 0.95rem; color: var(--g); letter-spacing: 2px;
}
.flogo-box .fb-star { color: var(--g); font-size: 0.45rem; letter-spacing: 3px; }
.flogo-text .ft1 {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 1rem; color: #fff; letter-spacing: 1px;
}
.flogo-text .ft2 { font-size: 0.58rem; color: var(--g); letter-spacing: 2px; font-weight: 700; }
.footer-about { font-size: 1rem; color: #c9b677; /*line-height: 1.9;*/ margin: 0.75rem 0 1rem; }
.social-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.72rem; margin-right: 4px; transition: opacity .2s;
}
.social-row a:hover { opacity: 0.8; }
.s-fb { background: #1877f2; color: #fff; }
.s-ig { background: #e1306c; color: #fff; }
.s-yt { background: #ff0000; color: #fff; }
.s-wa { background: #25d366; color: #fff; }

.f-heading {
  font-family: 'Lato', sans-serif; font-weight: 900;
  font-size: 0.78rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--g);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid #1a1a1a;
}
.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 0.4rem; }
.f-links a { font-size: 1rem; color: #b4a776; transition: color .2s; }
.f-links a:hover { color: var(--g); }
.f-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

.dest-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.dest-item { text-align: center; flex: 0 0 auto; }
.dest-item img {
  width: 62px; height: 62px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--g3);
  display: block; margin: 0 auto 4px;
  transition: border-color .2s;
}
.dest-item:hover img { border-color: var(--g); }
.dest-item span { font-size: 0.8rem; color: #d4b96c; }

.f-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 1rem; color: #c5b27d; margin-bottom: 0.5rem;
}
.f-contact-item i { color: var(--g); margin-top: 2px; min-width: 13px; }
.f-contact-item a { color: #c5b27d; transition: color .2s; }
.f-contact-item a:hover { color: var(--g); }

.footer-bottom {
  background: #020202;
  border-top: 1px solid rgba(255, 215, 0, 0.08);
  padding: 0.75rem 0;
  margin-top: 2.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.65rem; color: #747474; letter-spacing: 1px; }

/* ── CTA BOTTOM BAND ── */
.cta-band {
  background: linear-gradient(120deg, rgba(12, 8, 0, 0.92) 0%, rgba(0, 0, 0, 0.84) 48%, rgba(20, 12, 0, 0.95) 100%);
  border: 1px solid rgba(255, 215, 0, 0.16);
  box-shadow: 0 0 40px rgba(255, 190, 0, 0.12);
  padding: 1.2rem 0.8rem;
  border-radius: 24px;
}
.cta-band .container-xl {
  position: relative;
}
.cta-band .d-flex {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-thumb {
  width: 150px; height: 85px; object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.08);
}
.cta-title {
  font-family: math;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: #f7d45f;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 20px rgba(255, 198, 72, 0.18);
  margin-bottom: 0.15rem;
}
.cta-sub {
  font-size: 0.9rem;
  color: #d4bd6b;
  margin-top: 0.35rem;
}
.btn-cta {
  background: linear-gradient(90deg, #f8d862 0%, #d8a826 40%, #f2d761 70%, #fef2ab 100%);
  color: #100800 !important;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.95);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: transform .2s, filter .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 18px 48px rgba(255, 190, 0, 0.24);
  text-shadow: 0 1px 2px rgba(255,255,255,0.2);
}
.btn-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  border-color: rgba(255, 215, 0, 1);
  box-shadow: 0 20px 56px rgba(255, 190, 0, 0.32);
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
}

/* Small hero variant for inner pages like About Us */
.page-hero.about-hero {
  min-height: 220px;
  background: url('../img/travel.jpg') center/cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 214, 110, 0.18), transparent 30%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.92) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0 2.5rem;
    /* max-width: 720px; */
    text-align: center;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: #ccc;
  letter-spacing: 1px;
}
.page-breadcrumb a {
  color: var(--g);
}
.page-breadcrumb span { color: #ccc; }
.page-hero h1 {
  font-size: clamp(1.4rem, 4vw, 3.rem);
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  /*max-width: 640px;*/
  color: #e6e6e6;
  font-size: 1rem;
  line-height: 1.9;
}
.contact-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 2rem;
}
.contact-card .eyebrow,
.contact-form-card .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--g);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-card h2,
.contact-form-card h2 {
  font-family: math;
  font-weight: 900;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.contact-card p,
.contact-form-card p {
  color: #c9c1a5;
  line-height: 1.9;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--g);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.45rem;
}
.contact-info-item p,
.contact-info-item a {
  color: #c9c1a5;
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-info-item a {
  color: #fff;
}
.contact-form-card .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  min-height: 48px;
}
.contact-form-card .form-control:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.14);
}
.contact-form-card textarea.form-control {
  min-height: 180px;
}
.contact-form-card .btn-cta {
  width: 100%;
  max-width: 260px;
}
.category-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.category-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover .category-img img {
  transform: scale(1.05);
}
.category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255,215,0,0.95);
  color: #100800;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
}
.category-body {
  padding: 1.45rem 1.3rem 1.8rem;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.7rem 1.4rem;
  min-height: 260px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.6);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(212,160,23,0.14);
  color: var(--g);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.feature-card.accent-1 .feature-icon {
  background: rgba(244,197,0,0.16);
  color: #f4c500;
}
.feature-card.accent-2 .feature-icon {
  background: rgba(31,199,183,0.18);
  color: #1fc7b7;
}
.feature-card.accent-3 .feature-icon {
  background: rgba(111,111,252,0.16);
  color: #6f6ffc;
}
.feature-card h3 {
  color: #fff;
}
.feature-card p {
  color: #d8cfa3;
}
.package-highlights-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 2.5rem 1.5rem;
}
.package-highlights-section .row {
  align-items: stretch;
}
.package-highlights-head h2 {
  font-family: math;
  font-weight: 900;
  color: #fff;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  margin-top: 0.65rem;
  margin-bottom: 1rem;
}
.section-divider {
  width: 88px;
  height: 4px;
  margin: 0.75rem auto 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244,197,0,1), rgba(255,255,255,0.18));
}
.hero-divider {
  width: 90px;
  height: 5px;
  margin: 1rem auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244,197,0,1), rgba(255,255,255,0.22));
}
.package-highlights-head p {
  color: #c9c1a5;
  line-height: 1.8;
  margin: 0 auto;
}
.category-body h3 {
  font-family: monospace;
  font-weight: 900;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.category-body p {
  color: #c9c1a5;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.sidebar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(212,160,23,0.08);
}
.sidebar-head h2 {
  font-family: math;
  font-weight: 900;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.sidebar-head p {
  color: #c9c1a5;
  line-height: 1.9;
  margin-bottom: 1.8rem;
}
.rating-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
}
.rating-box strong {
  color: #fff;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #f7d365;
  font-weight: 900;
  margin-bottom: 0.4rem;
}
.rating-box .small-text {
  color: #c9c1a5;
  font-size: 0.82rem;
}
.sidebar-card .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  color: #fff;
  min-height: 50px;
}
.sidebar-card .form-control:focus {
  border-color: var(--g);
  box-shadow: 0 0 0 0.25rem rgba(212,160,23,0.14);
}
.sidebar-card textarea.form-control {
  min-height: 140px;
}
.sidebar-card .btn-cta {
  width: 100%;
}
.sidebar-card {
  /* make sidebar sticky on larger screens so the contact form stays visible */
}

@media (min-width: 992px) {
  .sidebar-card {
    position: sticky;
    top: 120px;
  }
}
.page-content {
  /*padding: 3rem 0 2rem;*/
}
.packages-intro .eyebrow,
.enquiry-head .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--g);
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
}
.packages-intro h2 {
  font-family: math;
  font-weight: 900;
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.08;
}
.packages-intro p,
.packages-footer p {
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1.9;
}
.packages-intro {
  border-left: 4px solid rgba(212,160,23,0.8);
  padding-left: 1.4rem;
  margin-bottom: 1.8rem;
}
.section-divider {
  width: 92px;
  height: 4px;
  margin: 1rem auto 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,215,0,1), rgba(212,160,23,0.95));
}
.itinerary-day {
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: 28px;
  padding: 1.7rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.itinerary-day:last-child {
  margin-bottom: 0;
}
.itinerary-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.itinerary-day-img {
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  height: 100%;
}
.itinerary-day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.itinerary-day-img:hover img {
  transform: scale(1.05);
}
.itinerary-day-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.day-title {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.day-title h3 {
  font-family: math;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #fff;
  margin: 0;
  letter-spacing: 1.2px;
}
.day-count {
  color: var(--g);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.day-text p {
  color: #d1ccad;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.itinerary-day-small {
  font-size: 0.95rem;
  color: #c9c1a1;
  margin-top: 0.25rem;
}
.itinerary-list {
  list-style: none;
  padding-left: 1.2rem;
  color: #d3cbac;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.itinerary-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.7rem;
}
.itinerary-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--g);
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .itinerary-row {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}
.package-grid {
  margin-top: 2.5rem;
}

.package-card {
  background: linear-gradient(180deg, rgba(16,16,16,0.95) 0%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 72px rgba(212,160,23,0.24);
  border-color: rgba(255,215,0,0.45);
}

/* Filter buttons (category filters) - styled to match theme */
.filter-btn {
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,215,0,0.12);
  color: #c9c1a5;
  transition: background .18s, color .18s, box-shadow .18s, transform .18s;
}
.filter-btn:hover { color: #fff; transform: translateY(-2px); }
.filter-btn.active,
.filter-btn:active {
  background: linear-gradient(90deg, #ffd66d 0%, #d39e12 34%, #f1c63a 68%, #f7dd7f 100%);
  color: #100800;
  border-color: rgba(255,215,0,0.95);
  box-shadow: 0 12px 36px rgba(0,0,0,0.36);
}

/* Make package card headings accent on hover to match theme */
.package-card-body h3 { transition: color .18s; }
.package-card:hover .package-card-body h3 { color: var(--g); }
.package-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.package-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.5));
  pointer-events: none;
}
.package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .package-thumb img {
  transform: scale(1.08);
}
.package-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, rgba(255, 212, 88, 0.95), rgba(215, 154, 18, 0.95));
  border: 1px solid rgba(255,255,255,0.15);
  color: #100800;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}
.package-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 1.6rem 1.4rem 1.7rem;
  border-top: 1px solid rgba(255,215,0,0.08);
}
.package-card-body h3 {
  font-family: math;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.package-card-body p {
  font-size: 0.92rem;
  color: #c9c1a5;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.package-card-body .duration {
  display: inline-block;
  color: #f8dd84;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.packages-footer {
  margin-top: 2.8rem;
}
.packages-footer h3 {
  font-family: math;
  font-weight: 900;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  color: #f6d96a;
  margin-bottom: 0.85rem;
}
.package-sidebar {
  position: sticky;
  top: 100px;
}
.enquiry-card {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}
.enquiry-head h3 {
  font-family: math;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  color: #fff;
  margin-bottom: 1.2rem;
}
.form-control {
  background: rgba(18,18,18,0.95);
  border: 1.5px solid rgba(212,160,23,0.6);
  color: #ffffff47;
  border-radius: 14px;
  min-height: 50px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.form-control::placeholder {
  color: #ffffff47;
  opacity: 1;
}
.form-control:focus {
  border-color: rgba(212,160,23,0.95);
  box-shadow: 0 0 0 0.2rem rgba(212,160,23,0.25);
  background: rgba(18,18,18,1);
  color: #ffffff47;
}
.enquiry-card textarea.form-control {
  min-height: 120px;
  resize: none;
}
@media (max-width: 1199px) {
  .package-sidebar { position: static; top: auto; }
}
@media (max-width: 767px) {
  .page-hero { min-height: 280px; }
  .page-hero-content { padding-top: 3rem; padding-bottom: 2rem; }
  .package-card-body { padding: 1.2rem 1rem 1.2rem; }
}
@media (max-width: 991px) {
  .cta-band { padding: 1rem 0.6rem; }
  .cta-band .d-flex { flex-direction: column; align-items: stretch; }
  .cta-thumb { width: 100%; height: 90px; }
  .btn-cta { width: 100%; justify-content: center; }
  .package-grid > [class*="col-"] {
    display: flex;
  }
  .package-grid > [class*="col-"] .package-card {
    flex: 1;
  }
}

/* Custom Modal */
.custom-modal {
  display: none; 
  position: fixed; 
  z-index: 999999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow-y: auto; 
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}
.custom-modal-content {
  margin: 5% auto;
  position: relative;
  width: 90%;
  max-width: 500px;
  animation: modalFadeIn 0.3s;
}
.custom-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 28px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s;
}
.custom-modal-close:hover {
  color: #fff;
}
@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}
