@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,600;1,400&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #B8860B;
  --gold-bg: #FDF8EE;
  --gold-border: #E8D5A0;
  --gold-mid: #C9A84C;
  --ink: #1A1714;
  --ink2: #3D3A35;
  --muted: #7A766E;
  --muted2: #A8A49C;
  --surface: #FFFFFF;
  --bg: #F7F5F0;
  --bg2: #EEECE6;
  --border: #E2DDD5;
  --accent: #C0392B;
  --accent-bg: #FDF1EF;
}
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 600; color: var(--ink); letter-spacing: -0.3px; }
.logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: #fff; font-weight: 600;
  padding: 0.5rem 1.25rem; border-radius: 6px; text-decoration: none;
  font-size: 0.83rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--ink2); }

/* HERO BANNER */
.hero-banner { position: relative; width: 100%; height: 700px; overflow: hidden; }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,8,4,0.78) 0%, rgba(10,8,4,0.55) 55%, rgba(10,8,4,0.25) 100%);
  display: flex; align-items: center;
}
.hero-full {
  display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 3rem;
}
.hero-badge-light {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 1.2rem;
}
.hero-banner-h1 {
  font-family: 'Lora', serif; font-size: 3.4rem; font-weight: 600;
  color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1rem;
}
.hero-banner-h1 em { color: var(--gold-mid); font-style: italic; }
.hero-banner-p { color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.8; margin-bottom: 1.8rem; max-width: 460px; }
.hero-btn-outline { border-color: rgba(255,255,255,0.45) !important; color: #fff !important; }
.hero-btn-outline:hover { background: rgba(255,255,255,0.12) !important; border-color: #fff !important; }
.hero-banner .stat-num { color: #fff; }
.hero-banner .stat-label { color: rgba(255,255,255,0.65); }
.hero-form-card { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); }

/* HERO */
.hero { max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.85rem; border-radius: 100px; letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Lora', serif; font-size: 3.2rem; line-height: 1.15;
  color: var(--ink); margin-bottom: 1.1rem; font-weight: 600;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; max-width: 460px; }
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--gold); color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 0.7rem 1.8rem; border-radius: 7px; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.btn-primary:hover { background: #9a6f09; }
.btn-outline {
  background: transparent; color: var(--ink); font-weight: 500; font-size: 0.9rem;
  padding: 0.7rem 1.5rem; border-radius: 7px; text-decoration: none;
  border: 1.5px solid var(--border); transition: all 0.2s; font-family: inherit;
}
.btn-outline:hover { border-color: var(--ink); }
.hero-stats { display: flex; gap: 2.5rem; }
.stat-num { font-family: 'Lora', serif; font-size: 1.7rem; font-weight: 600; color: var(--ink); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }

/* HERO CARD */
.hero-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
}
.hero-card-title { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 1.2rem; }
.quick-form { display: flex; flex-direction: column; gap: 0.7rem; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.qf-group { display: flex; flex-direction: column; gap: 0.3rem; }
.qf-group label { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.qf-group input, .qf-group select {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--ink); padding: 0.6rem 0.75rem; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.qf-group input:focus, .qf-group select:focus { border-color: var(--gold); }
.qf-group select option { background: var(--surface); }
.qf-submit {
  background: var(--ink); color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem; border-radius: 7px; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; width: 100%; transition: background 0.2s;
  margin-top: 0.3rem;
}
.qf-submit:hover { background: var(--gold); }

/* TRUST BAR */
.trust-bar {
  background: var(--gold-bg);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 3rem;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.trust-track { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 500; color: var(--ink2); white-space: nowrap; }
.trust-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.trust-clone { display: none; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* WRAP */
.wrap { max-width: 1200px; margin: 0 auto; }

/* SECTION */
section { padding: 4.5rem 3rem; }
.sec-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.sec-title { font-family: 'Lora', serif; font-size: 2.1rem; font-weight: 600; color: var(--ink); line-height: 1.25; margin-bottom: 0.7rem; letter-spacing: -0.3px; }
.sec-sub { color: var(--muted); font-size: 0.92rem; line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem; }

/* SERVICES */
.services-bg { background: var(--surface); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.svc-card { background: var(--surface); padding: 1.8rem 1.5rem; transition: background 0.2s; }
.svc-card:hover { background: var(--gold-bg); }
.svc-num { font-size: 0.7rem; font-weight: 700; color: var(--muted2); letter-spacing: 1px; margin-bottom: 1rem; }
.svc-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.svc-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* PACKAGES */
.pkgs-bg { background: var(--bg); }
.tabs { display: flex; gap: 0; border-bottom: 1.5px solid var(--border); margin-bottom: 2rem; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none; border: none; color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  padding: 0.75rem 1.3rem; cursor: pointer; border-bottom: 2px solid transparent;
  transition: all 0.2s; white-space: nowrap; letter-spacing: 0.2px; margin-bottom: -1.5px;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover:not(.active) { color: var(--ink); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all 0.2s;
}
.pkg-card:hover { border-color: var(--gold-border); box-shadow: 0 4px 20px rgba(184,134,11,0.08); transform: translateY(-2px); }
.pkg-img { width: 100%; height: 145px; object-fit: cover; display: block; }
.pkg-header { padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border); }
.pkg-route { font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pkg-highlight { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.pkg-body { padding: 1.2rem 1.4rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0; border-bottom: 1px solid var(--bg2); font-size: 0.83rem;
}
.price-row:last-of-type { border-bottom: none; }
.vehicle-name { color: var(--muted); }
.vehicle-price { color: var(--ink); font-weight: 700; font-size: 0.88rem; }
.pkg-book {
  display: block; width: 100%; text-align: center;
  background: var(--gold-bg); color: var(--gold); font-weight: 700; font-size: 0.82rem;
  padding: 0.65rem; border-radius: 7px; text-decoration: none;
  margin-top: 0.8rem; border: 1.5px solid var(--gold-border); transition: all 0.2s;
  letter-spacing: 0.2px;
}
.pkg-book:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* PKG CARD — DAY PLAN */
.pkg-meta { font-size: 0.73rem; color: var(--gold); font-weight: 600; margin-top: 3px; }
.pkg-summary { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.pkg-days { padding: 0.2rem 1.4rem 0; border-bottom: 1px solid var(--border); }
.pkg-day { padding: 0.5rem 0; border-bottom: 1px solid var(--bg2); }
.pkg-day:last-child { border-bottom: none; }
.pkg-day-label { font-size: 0.78rem; font-weight: 700; color: var(--ink2); }
.pkg-day-hl { font-size: 0.71rem; color: var(--muted); line-height: 1.5; margin-top: 1px; }
.pkg-loading { text-align: center; padding: 3rem 1rem; color: var(--muted); font-size: 0.9rem; }
.pkg-error { text-align: center; padding: 2rem 1rem; color: var(--accent); font-size: 0.85rem; }

/* TARIFF */
.tariff-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tariff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.tariff-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem;
  position: relative; overflow: hidden;
}
.tariff-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); }
.tariff-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.tariff-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem; }
.tariff-price { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 600; color: var(--gold); }
.tariff-price small { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; color: var(--muted); font-weight: 400; }

/* WHY */
.why-bg { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-num { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold-border); min-width: 36px; line-height: 1; margin-top: 2px; }
.why-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.why-text p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* TESTIMONIALS */
.testi-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.6rem;
}
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.85rem; color: var(--ink2); line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
.testi-author { font-weight: 700; color: var(--ink); font-size: 0.85rem; }
.testi-role { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* CONTACT */
.contact-bg { background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 0.9rem; margin-bottom: 1.3rem; align-items: flex-start; }
.ci-icon { width: 34px; height: 34px; background: var(--gold-bg); border: 1px solid var(--gold-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; color: var(--gold); }
.contact-item strong { display: block; color: var(--ink); font-size: 0.85rem; margin-bottom: 2px; }
.contact-item span { color: var(--muted); font-size: 0.82rem; }
.cf { display: flex; flex-direction: column; gap: 0.8rem; }
.cf input, .cf textarea {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--ink); padding: 0.75rem 1rem; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; outline: none;
  transition: border-color 0.2s; width: 100%;
}
.cf input:focus, .cf textarea:focus { border-color: var(--gold); }
.cf textarea { resize: vertical; min-height: 110px; }
.cf button {
  background: var(--gold); color: #fff; font-weight: 700;
  padding: 0.8rem; border: none; border-radius: 7px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; transition: background 0.2s;
}
.cf button:hover { background: #9a6f09; }

/* FOOTER */
footer {
  background: var(--ink);
  padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
}
.footer-logo { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--gold-border); }
.footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--muted2); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: var(--muted2); font-size: 0.75rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-tagline { color: var(--muted2); font-size: 0.73rem; }
.footer-social { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 0.15rem; }
.footer-social a {
  display: flex; align-items: center; gap: 4px;
  color: var(--muted2); text-decoration: none; font-size: 0.75rem; transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold-border); }
.footer-right { display: flex; flex-direction: column; gap: 0.15rem; align-items: flex-end; }
.footer-gstin { color: var(--muted2); font-size: 0.68rem; opacity: 0.65; }

/* ── CONTACT MAP LINK ─────────────────────────────────── */
.ci-map-link {
  display: none; font-size: 0.74rem; font-weight: 600;
  color: var(--gold); text-decoration: none; margin-top: 5px;
}
.ci-map-link:hover { text-decoration: underline; }

/* ── FEEDBACK SCROLLER ──────────────────────────────────── */
.feedback-scroller {
  display: flex; gap: 1.2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  scrollbar-width: thin; scrollbar-color: var(--gold-border) transparent;
}
.feedback-scroller::-webkit-scrollbar { height: 4px; }
.feedback-scroller::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 4px; }
.feedback-card {
  flex: 0 0 270px; scroll-snap-align: start;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.6rem;
  display: flex; flex-direction: column;
}
.feedback-card .testi-text { flex: 1; }
.testi-date { font-size: 0.72rem; color: var(--muted2); margin-top: 2px; }
.skel-feedback {
  flex: 0 0 270px; scroll-snap-align: start;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.6rem;
  display: flex; flex-direction: column; gap: 8px;
}
.skel-fb-author { margin-top: auto; padding-top: 1.2rem; display: flex; flex-direction: column; gap: 5px; }

@media (max-width: 580px) {
  .feedback-card { flex: 0 0 82vw; }
  .skel-feedback  { flex: 0 0 82vw; }
}

/* FLOAT CTA */
.float-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  background: #25D366; color: #fff;
  padding: 0.75rem 1.3rem; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.wa-icon { width: 18px; height: 18px; fill: #fff; }

/* TABLET */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .hero-banner { height: auto; min-height: 600px; }
  .hero-full { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .hero-banner-h1 { font-size: 2.6rem; }
  .hero-form-card { max-width: 480px; }
  section { padding: 3rem 1.5rem; }
  .trust-bar { padding: 1rem 1.5rem; gap: 1.2rem; }
  .qf-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 1.4rem 1.5rem; flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-right { align-items: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}

/* MOBILE */
@media (max-width: 580px) {
  nav { padding: 0 1rem; height: 56px; }
  .logo { font-size: 1.05rem; }
  .nav-cta { padding: 0.4rem 0.85rem; font-size: 0.77rem; }

  .hero-banner { height: auto; min-height: 100svh; max-height: none; }
  .hero-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .hero-full { grid-template-columns: 1fr; padding: 2rem 1rem 2.5rem; gap: 1.5rem; align-items: start; }
  .hero-banner-overlay { position: relative; min-height: 100svh; z-index: 1; align-items: flex-start; background: linear-gradient(to bottom, rgba(10,8,4,0.45) 0%, rgba(10,8,4,0.78) 100%); }
  .hero-banner-h1 { font-size: 2rem; }
  .hero-banner-p { font-size: 0.88rem; margin-bottom: 1.4rem; }
  .hero-form-card { display: block; max-width: 100%; }
  .hero { padding: 1.8rem 1rem 1.5rem; gap: 1.5rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .hero-btns { flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; padding: 0.75rem 1rem; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
  .stat-num { font-size: 1.4rem; }

  .trust-bar { padding: 0.75rem 0; }
  .trust-track { flex-wrap: nowrap; gap: 2.5rem; animation: marquee 16s linear infinite; }
  .trust-clone { display: flex; }
  .trust-item { font-size: 0.78rem; }

  section { padding: 2rem 1rem; }
  .sec-title { font-size: 1.6rem; }
  .sec-sub { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .sec-tag { margin-bottom: 0.3rem; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 1.2rem 1rem; }

  .tariff-grid { grid-template-columns: 1fr; }
  .tariff-card { padding: 1.3rem; }

  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testi-grid { grid-template-columns: 1fr; }

  .pkg-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 0.8rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
  .pkg-grid::-webkit-scrollbar { height: 4px; }
  .pkg-grid::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 4px; }
  .pkg-card { flex: 0 0 68vw; scroll-snap-align: start; }
  .pkg-header { padding: 0.8rem 1rem; }
  .pkg-route { font-size: 0.85rem; }
  .pkg-highlight { font-size: 0.72rem; }
  .pkg-body { padding: 0.8rem 1rem; }
  .price-row { padding: 0.3rem 0; font-size: 0.78rem; }
  .pkg-book { padding: 0.5rem; font-size: 0.78rem; margin-top: 0.5rem; }
  .tab-btn { padding: 0.6rem 0.9rem; font-size: 0.8rem; }

  .hero-card { padding: 1.3rem 1rem; }
  .hero-card-title { font-size: 0.9rem; }

  .contact-info h3 { font-size: 1.3rem; }

  footer { padding: 1.1rem 1rem; gap: 0.6rem; }
  .footer-links { gap: 0.8rem; }
  .footer-copy { font-size: 0.72rem; }

  .float-cta { bottom: 1rem; right: 1rem; padding: 0.6rem 1rem; font-size: 0.78rem; }
  body { padding-bottom: 4.5rem; }
}

/* ── PACKAGE DETAIL PANEL ──────────────────────────────── */
.panel-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(26,23,20,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.panel-overlay.open { opacity: 1; pointer-events: all; }

.pkg-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: 580px; max-width: 100vw;
  background: var(--surface);
  transform: translateX(102%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 40px rgba(26,23,20,0.14);
}
.pkg-panel.open { transform: translateX(0); }
body.panel-open { overflow: hidden; }

.panel-head {
  position: sticky; top: 0; z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.panel-head-title {
  font-size: 0.88rem; font-weight: 700; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.panel-close {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted); transition: all 0.2s; line-height: 1;
}
.panel-close:hover { background: var(--border); color: var(--ink); }

.panel-img { width: 100%; height: 210px; object-fit: cover; display: block; }

.panel-body { padding: 1.5rem; }

.panel-title {
  font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 600;
  color: var(--ink); line-height: 1.3; margin-bottom: 4px;
}
.panel-meta { font-size: 0.75rem; color: var(--gold); font-weight: 600; margin-bottom: 3px; }
.panel-trip-summary { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }

.panel-sec-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}

.panel-day {
  padding-bottom: 1.2rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.panel-day:last-of-type { border-bottom: none; margin-bottom: 0; }

.panel-day-badge {
  display: inline-block;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 0.62rem; font-weight: 700;
  padding: 2px 9px; border-radius: 100px; letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.panel-day-title { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.panel-day-hl {
  font-size: 0.76rem; color: var(--gold-mid); font-weight: 500;
  line-height: 1.6; margin-bottom: 6px;
}
.panel-day-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.75; }

.panel-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

.panel-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--bg2); font-size: 0.85rem;
}
.panel-price-row:last-of-type { border-bottom: none; }
.panel-car { color: var(--muted); }
.panel-car-price { color: var(--ink); font-weight: 700; font-size: 0.9rem; }

.panel-enquire {
  display: block; width: 100%; text-align: center;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem; border-radius: 8px; text-decoration: none;
  margin-top: 1.2rem; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: background 0.2s;
}
.panel-enquire:hover { background: var(--gold); }

.pkg-card { cursor: pointer; }

@media (max-width: 580px) {
  .pkg-panel { width: 100vw; }
  .panel-img { height: 180px; }
  .panel-head { padding: 0.85rem 1rem; }
  .panel-body { padding: 1.2rem 1rem; }
}

/* ── SKELETON SHIMMER ──────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skel {
  display: block;
  background: linear-gradient(90deg, var(--bg2) 25%, var(--border) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 5px;
}
.skel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.skel-img  { width: 100%; height: 145px; border-radius: 0; }
.skel-body { padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 8px; }
.skel-title { height: 15px; width: 68%; }
.skel-sub   { height: 11px; width: 45%; margin-bottom: 4px; }
.skel-line  { height: 13px; width: 100%; }
.skel-btn   { height: 36px; width: 100%; border-radius: 7px; margin-top: 4px; }

/* Contact skeleton */
.ci-skel {
  display: inline-block;
  height: 13px; width: 165px;
  background: linear-gradient(90deg, var(--bg2) 25%, var(--border) 50%, var(--bg2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
  vertical-align: middle;
  margin-top: 3px;
}
