/* ============================================================
   TRIP24NOW – LADAKH LANDING PAGE  |  style.css (Light Theme)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2563eb;
  --blue-dark: #1e3a8a;
  --gold: #f59e0b;
  --gold-lt: #fbbf24;
  --teal: #0ea5e9;
  --green: #10b981;
  --dark: #0f172a;
  --mid: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --red: #ef4444;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: auto;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Motion removed for faster, calmer rendering. */
*,
*::before,
*::after {
  transition: none !important;
}

/* ---------- TOPBAR ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.brand-logo:hover {
  transform: scale(1.05);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  border: 1px solid var(--border);
  background: var(--white);
  line-height: 1;
  transition: all .25s;
}

.call-pill:hover {
  background: var(--light);
  border-color: var(--blue);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  transition: all .2s ease;
  box-shadow: 0 2px 12px rgba(37, 99, 235, .3);
  border: none;
  cursor: pointer;
  line-height: 1;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .45);
}

.cta-pill:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(37, 99, 235, .3);
}

/* Add active state for touch */
.cta-pill:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Add focus state for accessibility */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('./ladakh-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.15) 60%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(4px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  color: var(--dark);
}

.badge-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(37, 99, 235, .15);
  border: 1px solid var(--blue);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: .3px;
}


.hero-left h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

.stat {
  text-align: center;
  padding: 0 20px;
}

.stat:first-child {
  padding-left: 0;
}

.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  font-size: 12px;
  color: var(--mid);
}

.stat-div {
  width: 1px;
  height: 38px;
  background: rgba(0, 0, 0, .1);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
  background-size: 200% auto;
  color: var(--white);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
  touch-action: manipulation;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(16, 185, 129, .4);
}


.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid var(--blue);
  color: var(--blue-dark);
  background: transparent;
  line-height: 1;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, .1);
  transform: translateY(-3px);
}

/* ---------- FORM CARD (Hero & Modal) ---------- */
.form-card,
.modal-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.form-header {
  margin-bottom: 22px;
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 13px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  color: var(--dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .15);
  transform: translateY(-1px);
}

.form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--blue), var(--green), var(--blue));
  background-size: 200% auto;
  color: var(--white);
  margin-top: 10px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
  touch-action: manipulation;
}

.form-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(16, 185, 129, .4);
}

.form-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
}


.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
  /* Space for small screens */
  overflow-y: auto;
  /* Allow scrolling if content is tall */
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  transform: translateY(30px);
  transition: transform .3s ease;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto;
  /* Help centering */
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  font-size: 16px;
}

.modal-close:hover {
  background: #e2e8f0;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: linear-gradient(90deg, var(--blue), var(--teal));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  overflow: hidden;
}

.trust-item {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, .2);
  white-space: nowrap;
}

.trust-item:last-child {
  border-right: none;
}

/* ---------- SECTIONS SHARED ---------- */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1;
  transform: none;
}

.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 56px;
  max-width: 600px;
}

/* ---------- PACKAGES ---------- */
.packages-section {
  padding-top: 90px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.pkg-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pkg-card.featured {
  border: 2px solid var(--blue);
}

.pkg-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}

.pkg-card:hover .pkg-img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.pkg-card.featured .pkg-badge {
  background: var(--gold);
  color: var(--white);
}

.pkg-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pkg-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.pkg-route {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pkg-highlights span {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--mid);
}

.pkg-pricing {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span {
  font-size: 14px;
  color: var(--muted);
}

.price-row strong {
  font-size: 18px;
  color: var(--blue);
  font-weight: 800;
}

.price-row small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.pkg-btn {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  border: none;
  transition: all .3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.pkg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.pkg-actions {
  display: flex;
  margin-top: auto;
  padding-top: 16px;
}

.pkg-actions .pkg-btn {
  width: 100%;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pkg-actions .btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.pkg-actions .btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
}

/* ---------- ITINERARY ---------- */
.itinerary-section {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.tab-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--light);
  border-radius: 50px;
  padding: 6px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}

.tab-btn {
  flex: 1 1 auto;
  min-width: 160px;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--muted);
  transition: all .25s;
}

.tab-btn.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.itinerary-grid.hidden {
  display: none;
}

.day-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.day-card:hover {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
}

.day-num {
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(37, 99, 235, .2);
}

.day-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.day-content p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

/* ---------- HOTELS ---------- */
.hotels-section {
  padding: 80px 32px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 0;
}

.hotel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}

.hotel-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}

.hotel-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.hotel-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.hotel-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.room-type {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(13, 148, 136, .1);
  border: 1px solid rgba(13, 148, 136, .3);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- INCLUSIONS ---------- */
.incl-section {
  padding: 80px 32px;
}

.incl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.incl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.incl-card.excl {
  border-color: rgba(220, 38, 38, .2);
  background: #fef2f2;
}

.incl-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.incl-card ul {
  list-style: none;
}

.incl-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.incl-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.4;
}

.incl-card.excl ul li::before {
  content: '✗';
  color: var(--red);
}

.incl-card ul li:last-child {
  border-bottom: none;
}

/* ---------- CANCELLATION ---------- */
.cancel-section {
  background: var(--white);
  border-radius: 24px;
  padding: 80px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.cancel-table-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.cancel-table thead {
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.cancel-table thead th {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
}

.cancel-table tbody tr {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.cancel-table tbody tr:hover {
  background: var(--light);
}

.cancel-table tbody td {
  padding: 13px 20px;
  font-size: 14px;
  color: var(--mid);
}

.cancel-table .pct {
  font-weight: 800;
  color: var(--gold);
}

.cancel-table .pct.red {
  color: var(--red);
}

.booking-note {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.booking-note h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.booking-note p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 8px;
}

.bank-details {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(37, 99, 235, .05);
  border: 1px solid rgba(37, 99, 235, .2);
}

.bank-details p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 6px;
}

.bank-details p:last-child {
  margin-bottom: 0;
}

.bank-details strong {
  color: var(--dark);
}

/* ---------- WHY US ---------- */
.why-section {
  padding: 80px 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
  border-top: 1px solid var(--border);
  padding: 80px 32px;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 17px;
  color: var(--mid);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  background: #25D366;
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, .35);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--white);
  padding: 60px 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-wrap {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
}

.footer-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.footer-info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-info a {
  color: var(--muted);
  transition: color .2s;
}

.footer-info a:hover {
  color: var(--blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
  transition: transform .25s, box-shadow .25s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .5);
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .topbar {
    padding: 10px 20px;
  }

  .call-pill {
    display: none;
  }

  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .hero-inner {
    flex-direction: column;
    padding: 40px 20px;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 24px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-btns {
    justify-content: center;
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    flex: 1;
    min-width: 0;
  }

  .form-card {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
  }

  .packages-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 14px;
  }

  .hotels-grid,
  .incl-grid,
  .why-grid,
  .itinerary-grid {
    grid-template-columns: 1fr;
  }

  .cancel-table-wrap {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .itinerary-section,
  .cancel-section {
    border-radius: 12px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
}

@media (max-width: 700px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 8px 12px;
  }

  .topbar-right {
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .topbar-right::-webkit-scrollbar {
    display: none;
  }

  .cta-pill {
    padding: 8px 12px;
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .trust-item {
    padding: 8px 10px;
    font-size: 10px;
  }

  .hero {
    padding-top: 70px;
    min-height: auto;
  }

  .hero-inner {
    padding: 30px 16px;
    gap: 20px;
  }

  .hero-left {
    min-width: 100%;
  }

  .hero-left h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: 12px;
  }

  .badge-pill {
    padding: 5px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .stat {
    padding: 0 12px;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat-num {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-div {
    display: none;
  }

  .hero-btns {
    flex-direction: row;
    width: 100%;
    gap: 8px;
  }

  .btn-primary,
  .btn-outline,
  .btn-whatsapp {
    flex: 1;
    width: auto;
    padding: 12px 10px;
    font-size: 13px;
    min-width: 0;
  }

  .form-card {
    padding: 24px 20px;
    width: 100%;
    margin: 15px auto 0;
  }

  .form-title {
    font-size: 17px;
  }

  .form-group input,
  .form-group select {
    font-size: 14px;
    padding: 12px 14px;
  }

  .form-submit {
    font-size: 14px;
    padding: 12px;
  }

  .section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 12px;
  }

  .section-sub {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .packages-grid,
  .hotels-grid,
  .incl-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pkg-card,
  .hotel-card,
  .incl-card,
  .why-card {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .pkg-body {
    padding: 16px;
  }

  .pkg-body h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .pkg-route {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .pkg-highlights span {
    padding: 4px 10px;
    font-size: 12px;
  }

  .pkg-pricing {
    padding-top: 12px;
    margin-bottom: 12px;
  }

  .price-row {
    padding: 6px 0;
  }

  .price-row strong {
    font-size: 16px;
  }

  .price-row small {
    font-size: 11px;
  }

  .pkg-actions {
    gap: 8px;
    margin-top: 12px;
  }

  .pkg-btn {
    padding: 8px;
    font-size: 12px;
  }

  .pkg-img-wrap {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }

  .pkg-badge {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }

  .tab-switcher {
    gap: 6px;
    padding: 4px;
    margin-bottom: 20px;
  }

  .tab-btn {
    padding: 8px 12px;
    font-size: 13px;
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
  }

  .day-card {
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
  }

  .day-num {
    min-width: 45px;
    height: 45px;
    font-size: 12px;
  }

  .day-content h3 {
    font-size: 14px;
  }

  .day-content p {
    font-size: 12px;
  }

  .hotel-card,
  .why-card {
    padding: 20px 16px;
  }

  .hotel-icon,
  .why-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hotel-card h3,
  .why-card h3 {
    font-size: 15px;
  }

  .hotel-card p,
  .why-card p {
    font-size: 13px;
  }

  .incl-card {
    padding: 20px 16px;
  }

  .incl-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .incl-card ul li {
    padding: 7px 0;
    font-size: 13px;
  }

  .cancel-table-wrap {
    gap: 20px;
  }

  .cancel-table thead th {
    padding: 10px 12px;
    font-size: 12px;
  }

  .cancel-table tbody td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .booking-note {
    padding: 16px;
  }

  .booking-note h3 {
    font-size: 14px;
  }

  .booking-note p {
    font-size: 12px;
  }

  .final-cta {
    padding: 40px 16px;
  }

  .final-cta h2 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .final-cta p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-btns {
    gap: 10px;
  }

  .footer-inner {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-info h3 {
    font-size: 14px;
  }

  .footer-info p {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 15px 0;
  }

  .itinerary-section,
  .cancel-section {
    border-radius: 12px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 40px 16px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 8px 12px;
  }

  .brand-logo {
    height: 48px;
  }

  .cta-pill {
    padding: 6px 12px;
    font-size: 11px;
  }

  .hero-inner {
    padding: 20px 12px;
  }

  .hero-left h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 10px;
  }

  .badge-pill {
    font-size: 10px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 16px;
    font-size: 13px;
  }

  .form-card {
    padding: 20px 16px;
    margin: 12px auto 0;
  }

  .form-title {
    font-size: 15px;
  }

  .section {
    padding: 30px 12px;
  }

  .section-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .pkg-body {
    padding: 14px;
  }

  .pkg-body h3 {
    font-size: 16px;
  }

  .pkg-btn {
    padding: 7px;
    font-size: 11px;
  }

  .modal-card {
    padding: 20px 16px;
    max-width: 95%;
  }

  .modal-close {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .final-cta {
    padding: 30px 12px;
  }

  .final-cta h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
}
