/* ============================================================
   MIRISSA TUK TUK TOURS — mirissa-tours.css
   Extended stylesheet with full responsive media queries
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --teal:        #006D77;
  --teal-light:  #0D8A96;
  --teal-dark:   #00454D;
  --sunset:      #FF6B6B;
  --sunset-dark: #E05252;
  --ivory:       #FDFAF4;
  --ivory-mid:   #F5EFE0;
  --amber:       #F4A261;
  --charcoal:    #1A2E32;
  --slate:       #3D6166;
  --white:       #ffffff;
  --border:      rgba(0,109,119,0.12);
  --shadow-card: 0 4px 28px rgba(0,109,119,0.10);

  /* Header height offset — adjust if your component header is taller/shorter */
  --header-height: 140px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Offset anchor links so fixed header doesn't cover section headings */
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--teal-dark);
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Top padding = header height + breathing room so content isn't hidden */
  padding: calc(var(--header-height) + 40px) 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 120%, rgba(244,162,97,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 10% 0%, rgba(13,138,150,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(0,69,77,0.7) 0%, transparent 60%);
  z-index: 0;
}

/* Wave ripple pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='50' viewBox='0 0 100 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25 Q25 8 50 25 Q75 42 100 25' fill='none' stroke='rgba(255,255,255,0.025)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 100px 50px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,107,0.18);
  border: 1px solid rgba(255,107,107,0.42);
  color: #ffaaaa;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: 'Italiana', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title span {
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(0.98rem, 2vw, 1.14rem);
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--sunset);
  color: var(--white);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,107,0.38);
}

.btn-primary:hover {
  background: var(--sunset-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,107,0.48);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 44px;
  justify-content: center;
  margin-top: 58px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Italiana', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.46);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.36);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}

.scroll-dot {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── VEHICLE STRIP ─────────────────────────────────────────── */
.vehicle-strip {
  background: var(--teal);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.vehicle-strip span {
  color: rgba(255,255,255,0.65);
  font-size: 0.81rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-strip strong {
  color: #ffcfaa;
  font-size: 0.84rem;
}

.v-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

/* ── SECTION BASE ───────────────────────────────────────────── */
.section {
  padding: 88px 20px;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,109,119,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Italiana', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--teal-dark);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.72;
}

/* ── TABS ───────────────────────────────────────────────────── */
.tabs-wrap {
  margin-bottom: 48px;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(0,109,119,0.07);
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
}

.tab {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--slate);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.87rem;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}

.tab.active,
.tab:hover {
  background: var(--teal);
  color: var(--white);
}

.tab.active {
  box-shadow: 0 2px 12px rgba(0,109,119,0.28);
}

/* ── PACKAGE GRID ───────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

/* ── PACKAGE CARD ───────────────────────────────────────────── */
.pkg-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
  animation: fadeUp 0.5s ease both;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0,109,119,0.17);
}

.pkg-img-frame {
  position: relative;
  height: 218px;
  background: var(--teal-dark);
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.pkg-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s, opacity 0.3s;
}

.pkg-card:hover .pkg-img-frame img {
  transform: scale(1.05);
  opacity: 0.95;
}

.pkg-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
}

.pkg-img-placeholder .alt-text {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.44);
  text-align: center;
  padding: 0 26px;
  font-style: italic;
  line-height: 1.55;
}

.pkg-img-placeholder .img-icon {
  width: 48px;
  height: 48px;
  border: 1.5px dashed rgba(255,255,255,0.24);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.34);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sunset);
  color: var(--white);
  font-weight: 700;
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}

.pkg-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,69,77,0.88);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 7px 14px;
  border-radius: 10px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
  line-height: 1.2;
  text-align: right;
  backdrop-filter: blur(4px);
}

.pkg-price-badge small {
  display: block;
  font-size: 0.64rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pkg-body {
  padding: 26px 26px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-name {
  font-family: 'Italiana', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-dark);
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.pkg-tagline {
  font-size: 0.83rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.pkg-meta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0,109,119,0.08);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ── STOPS LIST ─────────────────────────────────────────────── */
.stops-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--slate);
  margin-bottom: 12px;
}

.stops-list {
  list-style: none;
  margin-bottom: 20px;
}

.stops-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,109,119,0.07);
  font-size: 0.85rem;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
}

.stops-list li:last-child {
  border-bottom: none;
}

.stop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
  transition: background 0.2s;
}

.stops-list li:hover .stop-dot {
  background: var(--sunset);
}

.stop-info {
  flex: 1;
}

.stop-name {
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.3;
}

.stop-time {
  font-size: 0.76rem;
  color: var(--slate);
  margin-top: 2px;
}

.stop-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.stop-detail.open {
  max-height: 300px;
}

.stop-detail-inner {
  padding: 8px 0 4px 10px;
  border-left: 2px solid rgba(0,109,119,0.14);
  margin-top: 6px;
}

.detail-row {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
  align-items: flex-start;
  font-size: 0.79rem;
}

.detail-key {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  flex-shrink: 0;
}

.detail-val {
  color: var(--slate);
  line-height: 1.55;
}

/* ── EXTRAS / DROPOFF ───────────────────────────────────────── */
.extras-block {
  background: rgba(0,109,119,0.045);
  border-radius: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  font-size: 0.79rem;
  color: var(--slate);
  border: 1px dashed rgba(0,109,119,0.14);
  line-height: 1.6;
}

.extras-block strong {
  color: var(--teal);
}

.dropoff-block {
  font-size: 0.78rem;
  color: var(--slate);
  margin-bottom: 18px;
}

.dropoff-block strong {
  color: var(--charcoal);
}

.dropoff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.dropoff-tag {
  background: rgba(0,109,119,0.07);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
}

.dropoff-tag.veg {
  background: rgba(244,162,97,0.14);
  color: #7a4500;
  font-weight: 600;
}

/* ── PACKAGE FOOTER / BOOK BUTTON ───────────────────────────── */
.pkg-footer {
  padding: 0 26px 24px;
}

.book-btn {
  display: block;
  width: 100%;
  background: var(--sunset);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(255,107,107,0.3);
}

.book-btn:hover {
  background: var(--sunset-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

/* ── INFO SECTION ───────────────────────────────────────────── */
.info-section {
  background: var(--teal);
  padding: 72px 20px;
}

.info-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.2s;
}

.info-card:hover {
  background: rgba(255,255,255,0.12);
}

.info-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,107,107,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card h3 {
  font-family: 'Italiana', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.info-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* ── NOTICE ─────────────────────────────────────────────────── */
.notice {
  background: rgba(0,109,119,0.07);
  border: 1px solid rgba(0,109,119,0.18);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 0.81rem;
  color: var(--teal-dark);
  margin-bottom: 36px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

/* ── WHALE NOTE ─────────────────────────────────────────────── */
.whale-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,109,119,0.08);
  border: 1px solid rgba(0,109,119,0.2);
  color: var(--teal-dark);
  font-size: 0.77rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 6px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ── PRICING SECTION ────────────────────────────────────────── */
.pricing-section {
  background: var(--ivory);
  padding: 88px 20px;
}

.pricing-inner {
  max-width: 860px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 36px;
  background: var(--white);
}

.price-table thead tr {
  background: var(--teal);
}

.price-table thead th {
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  text-align: left;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.price-table tbody tr:hover {
  background: rgba(0,109,119,0.04);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 15px 20px;
  font-size: 0.87rem;
  color: var(--charcoal);
  vertical-align: middle;
}

.price-tag {
  display: inline-block;
  background: var(--sunset);
  color: var(--white);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.price-tag--teal {
  background: var(--teal);
}

.overtime-row {
  background: rgba(0,109,119,0.03);
}

.pricing-note {
  font-size: 0.79rem;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.7;
}

/* ── KEYFRAME ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.36; }
  50%       { opacity: 0.82; }
}


/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* ── LARGE DESKTOPS (1400px+) ───────────────────────────────── */
@media (min-width: 1400px) {
  :root { --header-height: 140px; }

  .section-inner,
  .info-grid,
  .pricing-inner {
    max-width: 1260px;
  }

  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 6rem;
  }

  .hero-stats {
    gap: 60px;
  }

  .stat-num {
    font-size: 2.6rem;
  }

  .section {
    padding: 104px 40px;
  }

  .info-section {
    padding: 88px 40px;
  }

  .pricing-section {
    padding: 104px 40px;
  }
}

/* ── STANDARD DESKTOPS (1200px – 1399px) ───────────────────── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .section-inner {
    max-width: 1140px;
  }
}

/* ── MEDIUM DESKTOPS / LARGE LAPTOPS (1024px – 1199px) ─────── */
@media (min-width: 1024px) and (max-width: 1199px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section {
    padding: 80px 32px;
  }

  .info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .hero {
    padding: 80px 32px;
  }
}

/* ── TABLETS LANDSCAPE / SMALL LAPTOPS (768px – 1023px) ─────── */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --header-height: 120px; }
  .hero {
    min-height: 80vh;
    padding: 70px 28px 80px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
  }

  .hero-stats {
    gap: 28px;
    margin-top: 44px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .section {
    padding: 68px 28px;
  }

  .section-inner {
    max-width: 100%;
    padding: 0;
  }

  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tabs {
    width: 100%;
    justify-content: center;
  }

  .tab {
    flex: 1;
    text-align: center;
    font-size: 0.83rem;
    padding: 9px 14px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .price-table thead th,
  .price-table td {
    padding: 13px 14px;
    font-size: 0.83rem;
  }

  .pricing-section {
    padding: 68px 28px;
  }

  .vehicle-strip {
    gap: 18px;
    padding: 16px 20px;
  }
}

/* ── TABLETS PORTRAIT (600px – 767px) ───────────────────────── */
@media (min-width: 600px) and (max-width: 767px) {
  :root { --header-height: 110px; }
  .hero {
    min-height: 75vh;
    padding: calc(var(--header-height) + 30px) 20px 72px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 8vw, 3.8rem);
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
  }

  .stat-num {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .section {
    padding: 60px 20px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    text-align: center;
    font-size: 0.82rem;
    padding: 9px 10px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .vehicle-strip {
    gap: 14px;
    padding: 14px 16px;
    text-align: center;
  }

  .v-dot {
    display: none;
  }

  /* Pricing table: stack on small tablets */
  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-section {
    padding: 60px 20px;
  }
}

/* ── MOBILE LARGE (480px – 599px) ──────────────────────────── */
@media (min-width: 480px) and (max-width: 599px) {
  :root { --header-height: 100px; }
  .hero {
    min-height: 70vh;
    padding: calc(var(--header-height) + 28px) 16px 68px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.93rem;
    margin-bottom: 30px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 0.88rem;
    padding: 12px 22px;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 36px;
  }

  .stat-num {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .section {
    padding: 52px 16px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    padding: 9px 6px;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-card h3 {
    font-size: 1.05rem;
  }

  .vehicle-strip {
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    text-align: center;
  }

  .v-dot {
    display: none;
  }

  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.82rem;
  }

  .pricing-section {
    padding: 52px 16px;
  }

  footer {
    padding: 40px 16px 20px;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .footer-links {
    gap: 14px;
  }
}

/* ── MOBILE STANDARD (360px – 479px) ───────────────────────── */
@media (max-width: 479px) {
  :root { --header-height: 90px; }
  .hero {
    min-height: auto;
    padding: 50px 16px 60px;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 6px 12px;
    margin-bottom: 20px;
    letter-spacing: 0.09em;
  }

  .hero-title {
    font-size: 2.7rem;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 26px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 0.88rem;
    padding: 13px 20px;
  }

  .hero-stats {
    gap: 14px;
    margin-top: 32px;
  }

  .stat-num {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .hero-scroll {
    bottom: 16px;
  }

  .scroll-dot {
    height: 28px;
  }

  .vehicle-strip {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    text-align: center;
  }

  .v-dot {
    display: none;
  }

  .vehicle-strip span {
    font-size: 0.76rem;
  }

  .section {
    padding: 48px 14px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 0.93rem;
  }

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    padding: 8px 4px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pkg-body {
    padding: 20px 18px 14px;
  }

  .pkg-footer {
    padding: 0 18px 20px;
  }

  .pkg-name {
    font-size: 1.35rem;
  }

  .pkg-meta {
    gap: 6px;
  }

  .meta-pill {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .notice {
    font-size: 0.77rem;
    padding: 11px 14px;
  }

  .info-section {
    padding: 52px 14px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-card {
    padding: 20px 18px;
  }

  .pricing-section {
    padding: 48px 14px;
  }

  .pricing-inner {
    max-width: 100%;
  }

  /* Scrollable pricing table on mobile */
  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  .price-table table {
    min-width: 520px;
  }

  .price-table thead th,
  .price-table td {
    padding: 12px 12px;
    font-size: 0.79rem;
    white-space: nowrap;
  }

  .price-tag {
    font-size: 0.82rem;
    padding: 3px 10px;
  }

  footer {
    padding: 36px 14px 18px;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 0.78rem;
  }

  footer p {
    font-size: 0.78rem;
    line-height: 1.6;
  }
}

/* ── EXTRA SMALL MOBILE (below 360px) ───────────────────────── */
@media (max-width: 359px) {
  :root { --header-height: 80px; }
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-badge {
    font-size: 0.63rem;
    padding: 5px 10px;
  }

  .tabs {
    gap: 4px;
    padding: 4px;
  }

  .tab {
    font-size: 0.7rem;
    padding: 7px 2px;
  }

  .pkg-img-frame {
    height: 190px;
  }

  .hero-stats {
    gap: 10px;
  }

  .stat-num {
    font-size: 1.4rem;
  }
}

/* ── ULTRA-WIDE SCREENS (1920px+) ───────────────────────────── */
@media (min-width: 1920px) {
  :root { --header-height: 160px; }
  .section-inner,
  .info-grid {
    max-width: 1400px;
  }

  .pricing-inner {
    max-width: 1000px;
  }

  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .hero-title {
    font-size: 7rem;
  }

  .hero-content {
    max-width: 920px;
  }

  .hero-sub {
    max-width: 640px;
    font-size: 1.2rem;
  }

  .section {
    padding: 120px 60px;
  }

  .info-section {
    padding: 100px 60px;
  }

  .pricing-section {
    padding: 120px 60px;
  }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .hero-scroll,
  .hero-ctas,
  .tabs-wrap,
  .book-btn,
  .pkg-footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .pkg-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}