/* ============================================================
   AGGARWAL TAXI — COMPONENTS.CSS
   Buttons, navbar, topbar, hero, cards, forms, footer, FABs
   ============================================================ */

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; border-radius: 14px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900); border: none;
  box-shadow: var(--shadow-gold);
  padding: .8rem 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn-gold:hover, .btn-gold:focus { color: var(--navy-900); transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 16px 34px rgba(201,162,39,.4); }
.btn-gold:active { transform: translateY(0); }

.btn-navy { background: var(--navy-800); color: #fff; border: none; box-shadow: 0 10px 24px rgba(11,31,58,.25); padding: .8rem 1.6rem; transition: transform .25s ease, box-shadow .25s ease; }
.btn-navy:hover { color: #fff; transform: translateY(-2px); background: var(--navy-600); }

.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); padding: .8rem 1.6rem; }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-2px); }
.btn-ghost .bi { color: #7ee2a8; }

.btn-outline-gold { background: transparent; color: var(--gold-300); border: 1.6px solid var(--gold-500); padding: .75rem 1.5rem; transition: background .25s ease, transform .25s ease; }
.btn-outline-gold:hover { background: var(--gold-soft); color: var(--gold-300); transform: translateY(-2px); }

.btn-outline-navy { background: #fff; color: var(--navy-800); border: 1.6px solid var(--navy-800); padding: .75rem 1.5rem; }
.btn-outline-navy:hover { background: var(--navy-800); color: #fff; }

.btn-wa { background: var(--wa-green); color: #fff; border: none; padding: .8rem 1.6rem; box-shadow: 0 10px 24px rgba(31,168,85,.3); }
.btn-wa:hover { background: var(--wa-green-dark); color: #fff; transform: translateY(-2px); }

.btn-sm-nav { padding: .55rem 1.15rem; font-size: .95rem; border-radius: 12px; }

/* ---------- Top bar ---------- */
.site-topbar {
  background: var(--navy-900); color: #C3CFE0;
  font-family: var(--font-accent); font-size: .84rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-link { color: #C3CFE0; display: inline-flex; align-items: center; gap: 7px; }
.topbar-link .bi { color: var(--gold-400); }
.topbar-link strong { color: #fff; }
a.topbar-link:hover { color: var(--gold-300); }
.topbar-tagline { color: var(--gold-300); font-weight: 700; letter-spacing: .04em; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #35D07F; display: inline-block; box-shadow: 0 0 0 4px rgba(53,208,127,.18); }

/* ---------- Navbar ---------- */
.site-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #E6E2D8;
  padding: 0; min-height: var(--nav-h);
  transition: box-shadow .3s ease;
}
.site-nav.scrolled { box-shadow: 0 10px 30px rgba(11,31,58,.10); }

.nav-brand { display: flex; align-items: center; gap: 11px; padding: 10px 0; }
.brand-badge { display: inline-flex; filter: drop-shadow(0 6px 14px rgba(11,31,58,.25)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.28rem;
  color: var(--navy-800); letter-spacing: .01em;
}
.brand-name em { font-style: normal; color: var(--gold-500); }
.brand-tag {
  font-family: var(--font-accent); font-size: .68rem; color: var(--slate);
  letter-spacing: .12em; text-transform: uppercase; margin-top: 3px;
}

.nav-menu { gap: 4px; }
.nav-menu .nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  color: var(--charcoal); padding: 10px 13px; border-radius: 10px; position: relative;
}
.nav-menu .nav-link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--gold-500); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav-menu .nav-link:hover::after, .nav-menu .nav-link.active::after { transform: scaleX(1); }
.nav-menu .nav-link.active { color: var(--navy-800); }

.nav-toggle { border: 1.6px solid var(--navy-800); border-radius: 12px; padding: 8px 10px; display: flex; flex-direction: column; gap: 5px; }
.nav-toggle .t-bar { width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; display: block; }

/* ---------- Mobile offcanvas nav ---------- */
.mobile-nav { background: linear-gradient(170deg, var(--navy-800), var(--navy-900)); color: #fff; width: 300px; }
.mobile-nav .btn-close { filter: none; }
.mobile-nav .brand-name { color: #fff; font-size: 1.2rem; }
.m-nav-list { list-style: none; padding: 0; margin: 10px 0 22px; }
.m-nav-list li a {
  display: flex; justify-content: space-between; align-items: center;
  color: #DCE5F0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.m-nav-list li a .bi { color: var(--gold-400); font-size: .85rem; }
.m-nav-list li a.active, .m-nav-list li a:hover { color: var(--gold-300); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: calc(100vh - 150px); display: flex; align-items: center;
  background: var(--navy-900); overflow: hidden; padding: 90px 0 150px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; transform: scale(1.04); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(201,162,39,.16), transparent 60%),
    linear-gradient(100deg, rgba(8,22,39,.96) 12%, rgba(8,22,39,.82) 45%, rgba(8,22,39,.55) 75%, rgba(8,22,39,.45));
}
.hero-grain {
  position: absolute; inset: 0; opacity: .05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero h1 {
  color: #fff; font-size: clamp(2.3rem, 1.4rem + 3.4vw, 4rem);
  line-height: 1.12; font-weight: 800; max-width: 13em;
}
.hero h1 .gold { color: var(--gold-300); position: relative; }
.hero-sub { color: #C9D4E4; font-size: 1.1rem; max-width: 36em; margin: 20px 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-mini { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #AFC0D6; font-family: var(--font-accent); font-size: .9rem; }
.hero-mini span { display: inline-flex; align-items: center; gap: 8px; }
.hero-mini .bi { color: var(--gold-400); }

/* ---------- Booking card ---------- */
.booking-card {
  background: #fff; border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold-500);
  box-shadow: var(--shadow-lift);
  padding: 30px 30px 26px;
  position: relative;
}
.booking-float { margin-top: -110px; position: relative; z-index: 5; }
.bc-top { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.bc-icon {
  width: 52px; height: 52px; flex: 0 0 52px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem; color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: var(--shadow-gold);
}
.bc-title { font-size: 1.35rem; margin: 0; }
.bc-sub { margin: 2px 0 0; color: var(--slate); font-size: .93rem; }
.bc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 18px; }
.bc-field label {
  font-family: var(--font-accent); font-weight: 700; font-size: .8rem;
  color: var(--navy-700); letter-spacing: .03em; margin-bottom: 6px; display: block;
}
.bc-field label small { color: var(--slate); font-weight: 500; }
.bc-field .req { color: var(--gold-500); }
.bc-field .form-control, .bc-field .form-select {
  border: 1.5px solid #D9DFEA; border-radius: 12px; padding: .62rem .85rem;
  font-size: .95rem; background: #FBFCFE; width: 100%;
}
.bc-field .form-control:focus, .bc-field .form-select:focus {
  border-color: var(--gold-500); box-shadow: 0 0 0 4px var(--gold-soft); background: #fff;
}
.bc-third { grid-column: span 1; }
.bc-half { grid-column: span 2; }
.bc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 22px; }
.bc-note { font-size: .82rem; color: var(--slate); margin: 14px 0 0; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.bc-note .bi { color: var(--wa-green); }
.bc-note small { width: 100%; }
.bc-status { color: var(--wa-green-dark); font-weight: 700; }
.booking-compact .bc-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 44px 0; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-ico {
  width: 58px; height: 58px; flex: 0 0 58px; border-radius: 18px;
  background: linear-gradient(150deg, rgba(201,162,39,.22), rgba(201,162,39,.05));
  border: 1px solid rgba(201,162,39,.4); color: var(--gold-300);
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 10px 22px rgba(0,0,0,.25);
}

/* ---------- Generic premium card ---------- */
.p-card {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid #ECE7DB;
  box-shadow: var(--shadow-soft); padding: 28px; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease; position: relative;
}
.p-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.p-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.p-card p { font-size: .95rem; margin-bottom: 14px; }

.card-ico {
  width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center;
  font-size: 1.45rem; margin-bottom: 18px; color: var(--navy-800);
  background: linear-gradient(140deg, #FFF6DE, #F4E3B2);
  border: 1px solid rgba(201,162,39,.4);
  box-shadow: 0 10px 20px rgba(201,162,39,.2), inset 0 1px 0 #fff;
}

.card-cta { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--navy-700); }
.card-cta .bi { color: var(--gold-500); transition: transform .25s ease; }
.p-card:hover .card-cta .bi { transform: translateX(4px); }

/* ---------- Service cards ---------- */
.svc-card .svc-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-num); font-weight: 800; font-size: 1.7rem;
  color: transparent; -webkit-text-stroke: 1.2px rgba(201,162,39,.5);
}

/* ---------- Destination cards ---------- */
.dest-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-soft); background: #fff; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dest-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.dest-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover .dest-media img { transform: scale(1.07); }
.dest-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,22,39,0) 40%, rgba(8,22,39,.72));
}
.dest-region {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(11,31,58,.78); color: var(--gold-300);
  backdrop-filter: blur(6px); border: 1px solid rgba(201,162,39,.4);
}
.dest-title { position: absolute; bottom: 12px; left: 16px; right: 16px; z-index: 2; color: #fff; font-size: 1.2rem; margin: 0; }
.dest-body { padding: 18px 20px 20px; }
.dest-body p { font-size: .9rem; min-height: 66px; }
.dest-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Route cards ---------- */
.route-card {
  display: flex; align-items: center; gap: 16px; justify-content: space-between;
  background: #fff; border: 1px solid #ECE7DB; border-radius: var(--radius-md);
  padding: 18px 20px; box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; height: 100%;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(201,162,39,.55); }
.route-where { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.route-where .bi { color: var(--gold-500); }
.route-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: .8rem; color: var(--slate); font-family: var(--font-num); }
.route-cta {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-soft); color: #8A6D14; border: 1px solid rgba(201,162,39,.4); flex: 0 0 40px;
}

/* ---------- Why choose ---------- */
.why-card { text-align: center; padding: 30px 22px; }
.why-card .card-ico { margin-inline: auto; }

/* ---------- Steps ---------- */
.step-card { position: relative; padding: 30px 24px; text-align: center; }
.step-ghost {
  font-family: var(--font-num); font-weight: 800; font-size: 3.2rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px rgba(201,162,39,.55);
  display: block; margin-bottom: 12px;
}
.step-card h3 { font-size: 1.1rem; }
.step-card p { font-size: .9rem; }

/* ---------- Timeline (route pages) ---------- */
.route-tl { list-style: none; margin: 0; padding: 0 0 0 10px; position: relative; }
.route-tl::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-400), rgba(201,162,39,.12));
}
.route-tl .tl-item { position: relative; padding: 0 0 26px 44px; }
.route-tl .tl-item:last-child { padding-bottom: 4px; }
.route-tl .tl-dot {
  position: absolute; left: 8px; top: 0; width: 25px; height: 25px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 4px solid #fff; box-shadow: 0 4px 12px rgba(201,162,39,.45);
  display: grid; place-items: center; color: var(--navy-900); font-size: .7rem;
}
.route-tl .tl-item.start .tl-dot, .route-tl .tl-item.end .tl-dot { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.route-tl .tl-name { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.route-tl .tl-item.end .tl-name { color: var(--gold-500); }
.tl-hint { font-size: .82rem; color: var(--slate); }

/* ---------- Overview strip (route pages) ---------- */
.ov-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: #ECE7DB; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid #ECE7DB; box-shadow: var(--shadow-soft);
}
.ov-cell { background: #fff; padding: 18px 20px; }
.ov-k { font-family: var(--font-accent); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 4px; }
.ov-v { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); font-size: 1.02rem; }
.ov-cell.gold { background: linear-gradient(140deg, #FFF9E8, #FBEFD0); }

/* ---------- Attraction highlight cards ---------- */
.hl-card {
  background: linear-gradient(160deg, #fff, #FBF8F1);
  border: 1px solid #ECE7DB; border-radius: var(--radius-md);
  padding: 20px 18px; height: 100%; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-soft); transition: transform .28s ease;
}
.hl-card:hover { transform: translateY(-4px); }
.hl-card .bi { color: var(--gold-500); font-size: 1.3rem; flex: 0 0 auto; margin-top: 2px; }
.hl-card h4 { font-size: 1rem; margin-bottom: 4px; }
.hl-card p { font-size: .86rem; margin: 0; }

/* ---------- Car cards ---------- */
.car-card { overflow: hidden; padding: 0; }
.car-card .car-media { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.car-card .car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.car-card:hover .car-media img { transform: scale(1.06); }
.car-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(11,31,58,.82);
  color: var(--gold-300); border: 1px solid rgba(201,162,39,.4); backdrop-filter: blur(6px);
}
.car-body { padding: 22px; }
.car-specs { list-style: none; padding: 0; margin: 0 0 16px; font-size: .9rem; color: #3D4A5C; }
.car-specs li { display: flex; gap: 9px; align-items: center; padding: 5px 0; }
.car-specs .bi { color: var(--gold-500); }

/* ---------- Tour cards ---------- */
.tour-card { padding: 0; overflow: hidden; }
.tour-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tour-card:hover .tour-media img { transform: scale(1.07); }
.tour-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,22,39,.7)); }
.tour-duration {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(11,31,58,.8); color: var(--gold-300); border: 1px solid rgba(201,162,39,.4);
  backdrop-filter: blur(6px);
}
.tour-title { position: absolute; bottom: 12px; left: 18px; right: 18px; z-index: 2; color: #fff; margin: 0; font-size: 1.15rem; }
.tour-body { padding: 20px 22px 22px; }
.tour-body .tour-pts { list-style: none; padding: 0; margin: 0 0 16px; font-size: .88rem; color: #3D4A5C; }
.tour-body .tour-pts li { padding: 4px 0; display: flex; gap: 8px; }
.tour-body .tour-pts .bi { color: var(--gold-500); }

/* ---------- FAQ accordion ---------- */
.faq-acc .accordion-item {
  border: 1px solid #ECE7DB; border-radius: var(--radius-md) !important;
  margin-bottom: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft);
}
.faq-acc .accordion-button {
  font-family: var(--font-head); font-weight: 700; color: var(--navy-800);
  padding: 18px 22px; font-size: 1rem; background: #fff;
}
.faq-acc .accordion-button:not(.collapsed) { background: #FFF9E8; color: var(--navy-800); box-shadow: inset 0 -1px 0 rgba(201,162,39,.3); }
.faq-acc .accordion-button:focus { box-shadow: 0 0 0 4px var(--gold-soft); }
.faq-acc .accordion-button::after { background-size: 1.1rem; }
.faq-acc .accordion-body { color: #3D4A5C; font-size: .95rem; padding-top: 4px; }

/* ---------- Testimonial placeholder ---------- */
.review-slot {
  border: 2px dashed rgba(201,162,39,.55); border-radius: var(--radius-lg);
  padding: 34px 26px; text-align: center; background: #FFFDF6; height: 100%;
}
.review-slot .bi { font-size: 1.8rem; color: var(--gold-400); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; padding: 10px 0;
}
.cta-title { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); margin-bottom: 8px; }
.cta-sub { margin: 0; max-width: 34em; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; color: #B9C6D8;
  background: linear-gradient(180deg, var(--navy-900), #061220);
  padding: 80px 0 110px; overflow: hidden;
}
.footer-glow {
  position: absolute; top: -140px; right: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201,162,39,.14), transparent 65%); pointer-events: none;
}
.f-grid { position: relative; z-index: 1; }
.f-logo { display: flex; align-items: center; gap: 10px; }
.f-logo .brand-name { color: #fff; font-size: 1.25rem; }
.f-about { font-size: .93rem; margin: 18px 0; max-width: 34em; }
.f-tag { color: var(--gold-300); font-style: normal; font-family: var(--font-accent); }
.f-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.f-head {
  color: #fff; font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase;
  font-family: var(--font-head); margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.f-head::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.f-links { list-style: none; margin: 0; padding: 0; }
.f-links li { margin-bottom: 10px; }
.f-links a { color: #B9C6D8; font-size: .92rem; display: inline-flex; align-items: center; gap: 8px; }
.f-links a:hover { color: var(--gold-300); transform: translateX(2px); }
.f-links .bi { color: var(--gold-500); font-size: .85rem; }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  font-size: .88rem; font-family: var(--font-accent); position: relative; z-index: 1;
}
.f-bottom p { margin: 0; color: #8FA1B8; }
.f-bottom-tag { color: var(--gold-400); }

/* ---------- Floating action buttons ---------- */
.fab-stack { position: fixed; right: 26px; bottom: 30px; z-index: 1200; display: flex; flex-direction: column; gap: 14px; }
.fab {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.45rem; position: relative;
  box-shadow: 0 14px 30px rgba(8,22,39,.3); transition: transform .25s ease;
}
.fab:hover { transform: translateY(-4px) scale(1.04); }
.fab-call { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); color: var(--gold-300); border: 1.5px solid rgba(201,162,39,.5); }
.fab-wa { background: linear-gradient(135deg, #2BC26B, var(--wa-green-dark)); color: #fff; }
.fab-pulse {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(43,194,107,.7);
  animation: fabPulse 2.2s ease-out infinite; pointer-events: none;
}

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr;
  background: rgba(8,22,39,.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,162,39,.35);
  padding-bottom: env(safe-area-inset-bottom);
}
.mb-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: #DCE5F0; font-family: var(--font-accent); font-weight: 700; font-size: .74rem;
  padding: 9px 4px 8px; letter-spacing: .04em;
}
.mb-item .bi { font-size: 1.15rem; }
.mb-item.mb-call .bi { color: var(--gold-300); }
.mb-item.mb-wa .bi { color: #7ee2a8; }
.mb-book { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900) !important; }
body { padding-bottom: 0; }
@media (max-width: 767.98px) { body { padding-bottom: 62px; } }

/* ---------- Route explorer ---------- */
.explorer {
  background:
    radial-gradient(500px 240px at 90% 10%, rgba(201,162,39,.18), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(201,162,39,.3);
  border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-lift); position: relative; overflow: hidden;
}
.explorer::after {
  content: ""; position: absolute; right: -40px; bottom: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(201,162,39,.16), transparent 65%);
}
.explorer .exp-label { font-family: var(--font-accent); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-300); display: block; margin-bottom: 8px; }
.explorer .form-select {
  border-radius: 12px; padding: .8rem 1rem; font-weight: 600; font-family: var(--font-head);
  border: 1.5px solid rgba(255,255,255,.22); background-color: rgba(255,255,255,.97);
}
.exp-swap {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(201,162,39,.5);
  background: rgba(201,162,39,.14); color: var(--gold-300); font-size: 1.1rem;
  display: grid; place-items: center; transition: transform .3s ease;
}
.exp-swap:hover { transform: rotate(180deg); color: var(--gold-300); }
