@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* ───────── RESET & ROOT ───────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #22c55e;
  --green-d: #16a34a;
  --green-l: #dcfce7;
  --navy: #0d1b35;
  --sage: #f0f4f0;
  --white: #fff;
  --ink: #1a2744;
  --ink-s: #374151;
  --ink-m: #6b7280;
  --red: #dc2626;
  --amber: #f59e0b;
  --purple: #7c3aed;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--sage);
  color: var(--ink);
  overflow-x: hidden;
}

/* ───────── NAV ───────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--navy);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.nav-book {
  background: var(--green);
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

/* ───────── HERO ───────── */
.hero {
  min-height: 92vh;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/assets/banner.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgb(255 233 23 / 50%);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  color: #f4ff28;
  margin-bottom: 24px;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  color: #55ff93;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-price {
  color: rgba(255, 255, 255);
  font-size: 15px;
  margin-bottom: 36px;
}

.hero-price strong {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 18px 28px;
  backdrop-filter: blur(8px);
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: #55ff93;
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ───────── HERO FORM ───────── */
.hero-form {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-form h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  text-align: center;
}

.hf-g {
  margin-bottom: 12px;
}

.hf-g input,
.hf-g select,
.hf-g textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  appearance: none;
  background: #fff;
  transition: border-color 0.2s;
}

.hf-g input:focus,
.hf-g select:focus,
.hf-g textarea:focus {
  border-color: var(--green);
}

.hf-g textarea {
  resize: none;
  min-height: 60px;
}

.hf-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
}

.hf-code {
  padding: 11px 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink);
  background: #f9fafb;
  font-family: "Inter", Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
}

.hf-btn {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition:
    background 0.2s,
    opacity 0.2s;
  margin-top: 4px;
}

.hf-btn:hover:not(:disabled) {
  background: var(--green-d);
}

.hf-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: var(--green-l);
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--green-d);
  font-weight: 500;
  text-align: center;
}

/* ───────── TRUST BAR ───────── */
.trust-bar {
  background: var(--navy);
  padding: 16px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255);
  font-size: 13px;
  font-weight: 500;
}

/* ───────── SECTIONS ───────── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 20px 0;
}

.sec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-l);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 5px 16px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-d);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sec-pill::before {
  content: "✦";
  font-size: 8px;
}

.sec-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.sec-sub {
  font-size: 15px;
  color: var(--ink-m);
  line-height: 1.7;
}

/* ───────── TESTIMONIALS ───────── */
.testi-sec {
  background: var(--sage);
  padding: 72px 0;
}

.testi-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.testi-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
}

.testi-stars-big {
  color: var(--green);
  font-size: 24px;
  letter-spacing: 2px;
}

.testi-cnt-row {
  text-align: center;
  font-size: 14px;
  color: var(--ink-m);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: var(--ink-s);
}

.ta-logo-pill {
  background: #34e0a1;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.testi-slider-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testi-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  box-sizing: border-box;
  background: #fff;
  border: 1.5px solid #cfe2f3;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  background: #9ca3af;
}

.testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi-user-info {
  min-width: 0;
  flex: 1;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.testi-verified {
  color: #1a73e8;
  font-size: 13px;
}

.testi-date {
  font-size: 12px;
  color: var(--ink-m);
  margin-top: 2px;
}

.testi-date a {
  color: var(--green-d);
  text-decoration: none;
  font-weight: 500;
}

.testi-stars {
  color: var(--green);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testi-hl {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.testi-txt {
  font-size: 13px;
  color: var(--ink-s);
  line-height: 1.65;
  flex: 1;
}

.testi-more {
  font-size: 13px;
  color: #1a73e8;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-s);
  transition: all 0.2s;
  flex-shrink: 0;
}

.testi-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}

.testi-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

/* ───────── ITINERARY ───────── */
.itin-sec {
  background: #f5f3ee;
  padding: 70px 20px;
  font-family: "Inter", sans-serif;
}

.itin-container {
  max-width: 1240px;
  margin: 0 auto;
}

.itin-pill {
  display: inline-block;
  border: 1px solid #86c46a;
  color: #5a9c3e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.itin-title {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 800;
  color: #16263d;
  margin: 0 0 14px;
  line-height: 1.2;
}

.itin-sub {
  text-align: center;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 44px;
}

.itin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.itin-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.itin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.itin-card-head {
  background: #0c2340;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 20px;
}

.itin-card-body {
  padding: 20px;
}

.itin-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #16263d;
  margin: 0 0 12px;
  line-height: 1.35;
}

.itin-card-desc {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.itin-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #4b5563;
}

.itin-cta a {
  color: #16263d;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #d4a437;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.itin-cta a:hover {
  color: #d4a437;
}

/* ───────── PACKAGES ───────── */
.pkg-sec {
  background: var(--sage);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.pkg-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pkg-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}

.pkg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.pb-s {
  background: var(--green);
  color: #fff;
}

.pb-r {
  background: var(--navy);
  color: #fff;
}

.pb-t {
  background: var(--purple);
  color: #fff;
}

.pkg-days-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(13, 27, 53, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.pkg-body {
  padding: 16px 18px 12px;
}

.pkg-route {
  font-size: 10px;
  font-weight: 700;
  color: var(--green-d);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pkg-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}

.pkg-desc {
  font-size: 12px;
  color: var(--ink-m);
  line-height: 1.65;
  margin-bottom: 12px;
}

.pkg-cancel {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-d);
}

.pkg-cancel::before {
  content: "✓ ";
}

.pkg-stars {
  color: var(--amber);
  font-size: 12px;
}

.pkg-rev {
  font-size: 12px;
  color: var(--ink-m);
}

.pkg-foot {
  padding: 14px 18px 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.pkg-price-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pkg-disc-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}

.pkg-price-nums {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pkg-old {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.pkg-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pkg-note {
  font-size: 11px;
  color: var(--ink-m);
}

.pkg-cta {
  display: inline-block;
  background: #dc2626;
  color: #ffffff;
  border: 1.5px solid #d1d5db;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}

.pkg-cta:hover,
.pkg-card:hover .pkg-cta {
  border-color: #dc2626;
}

/* ───────── WHY CHOOSE ───────── */
.why-sec {
  background: var(--navy);
  padding: 60px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.why-item::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.why-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
}

.wci-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.wci-g {
  background: rgba(34, 197, 94, 0.2);
}

.wci-b {
  background: rgba(59, 130, 246, 0.2);
}

.wci-gr {
  background: rgba(255, 255, 255, 0.1);
}

.wci-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.wci-val {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* ───────── GOLDEN TRIANGLE ───────── */
.gt-sec {
  background: var(--sage);
}

.gt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gt-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.gt-img {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.gt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gt-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.gt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}

.gt-city {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.gt-city-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.gt-body {
  padding: 18px;
}

.gt-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.gt-meta span {
  font-size: 12px;
  color: var(--ink-m);
}

.gt-desc {
  font-size: 13px;
  color: var(--ink-s);
  line-height: 1.7;
  margin-bottom: 14px;
}

.gt-hl-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gt-hl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gt-hl li {
  font-size: 12px;
  color: var(--ink-s);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gt-hl li::before {
  content: "•";
  color: var(--green);
  font-size: 14px;
}

/* ───────── CONTACT FORM ───────── */
.contact-sec {
  background: var(--sage);
}

.cf-wrap {
  width: 100%;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.cf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.cf-g {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-g.full {
  grid-column: 1/-1;
}

.cf-g label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-s);
}

.cf-g input,
.cf-g select,
.cf-g textarea {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  appearance: none;
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.cf-g input:focus,
.cf-g select:focus,
.cf-g textarea:focus {
  border-color: var(--green);
}

.cf-g textarea {
  resize: vertical;
  min-height: 90px;
}

.cf-phone-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
  min-width: 0;
}

.cf-code {
  padding: 11px 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink);
  background: #f9fafb;
  font-family: "Inter", Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
}

.tc {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  min-width: 0;
  width: 100%;
}

.tc-btn {
  width: 40px;
  height: 42px;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink-s);
}

.tc-val {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.cf-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition:
    background 0.2s,
    opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cf-submit:hover:not(:disabled) {
  background: var(--green-d);
}

.cf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ───────── CTA BOTTOM ───────── */
.cta-bottom {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.cta-bottom h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-bottom p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-green {
  background: var(--green);
  color: #fff;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-green:hover {
  background: var(--green-d);
}

.btn-green-out {
  background: transparent;
  color: #fff;
  border: 2px solid var(--green);
  padding: 11px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-green-out:hover {
  background: var(--green);
}

/* ───────── FOOTER ───────── */
footer {
  background: #0a1628;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.f-links {
  display: flex;
  gap: 20px;
}

.f-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

/* ───────── STICKY BAR ───────── */
.sticky-bar {
  position: sticky;
  bottom: 0;
  z-index: 99;
  background: var(--navy);
  border-top: 3px solid var(--green);
  padding: 12px 32px;
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sb-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.sb-text strong {
  color: #fff;
}

.sb-actions {
  display: flex;
  gap: 10px;
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.btn-gi {
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

/* ───────── SCROLL REVEAL ───────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ───────── CUSTOM DATE PICKER ───────── */
.datepicker-input {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: #9ca3af;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s;
  user-select: none;
}

.datepicker-input:focus,
.datepicker-input.open {
  border-color: #22c55e;
  outline: none;
}

.datepicker-input.has-date {
  color: #1a2744;
}

.cal-popup {
  display: none;
  position: absolute;
  width: 310px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
}

.cal-popup.open {
  display: block;
}

.cal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 6px;
}

.cal-nav {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  color: #374151;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.cal-nav:hover {
  background: #f3f4f6;
}

.cal-ms {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a2744;
  background: #fff;
  cursor: pointer;
  appearance: none;
  text-align: center;
}

.cal-yi {
  width: 66px;
  padding: 6px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a2744;
  background: #fff;
  text-align: center;
}

.cal-ms:focus,
.cal-yi:focus {
  outline: none;
  border-color: #22c55e;
}

.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.cal-dow span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  padding: 4px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: "Inter", Arial, sans-serif;
  color: #1a2744;
  transition: background 0.15s;
  padding: 0;
}

.cal-day:hover:not(.dis):not(.tod):not(.sel) {
  background: #f0fdf4;
}

.cal-day.om {
  color: #d1d5db;
}

.cal-day.dis {
  color: #d1d5db;
  cursor: not-allowed;
  pointer-events: none;
}

.cal-day.tod {
  border: 2px solid #22c55e;
  font-weight: 700;
  color: #22c55e;
}

.cal-day.sel {
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  border: none;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .itin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 70px 16px 48px;
    gap: 28px;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .gt-grid {
    grid-template-columns: 1fr;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .cf-grid {
    grid-template-columns: 1fr;
  }

  .cf-wrap {
    padding: 24px 20px;
  }

  .trust-bar {
    padding: 14px 16px;
    gap: 16px;
  }

  footer {
    padding: 20px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .sticky-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 16px;
  }

  .sb-actions {
    justify-content: center;
    width: 100%;
  }

  .btn-wa,
  .btn-gi {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .nav-phone {
    display: none;
  }

  .itin-sec {
    padding: 50px 16px;
  }

  .itin-grid {
    grid-template-columns: 1fr;
  }

  .itin-title {
    font-size: 26px;
  }

  .itin-sub {
    font-size: 15px;
  }

  .itin-cta {
    font-size: 15px;
  }
}
/* ───────── SEARCHABLE COUNTRY DROPDOWN ───────── */
.country-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s;
  user-select: none;
}

.country-select:focus,
.country-select.open {
  border-color: var(--green);
  outline: none;
}

.country-select svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.country-select.open svg {
  transform: rotate(180deg);
}

.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  overflow: hidden;
}

.country-dropdown.open {
  display: block;
}

.country-search-wrap {
  padding: 8px;
  border-bottom: 1px solid #f3f4f6;
}

.country-search-wrap input {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
}

.country-search-wrap input:focus {
  border-color: var(--green);
}

.country-list {
  max-height: 220px;
  overflow-y: auto;
}

.country-item {
  padding: 9px 14px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}

.country-item:hover {
  background: #f0fdf4;
}

.country-item.selected {
  background: var(--green-l);
  color: var(--green-d);
  font-weight: 600;
}

.country-item.no-result {
  color: var(--ink-m);
  cursor: default;
}

.country-item.no-result:hover {
  background: #fff;
}
/* Container and Grid Setup */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  margin-top: 30px;
}

/* Individual Card Styling */
.testi-card {
  background: #fff;
  border: 1px solid #d1d9e0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Header Adjustments */
.sec-header {
  text-align: center;
  margin-bottom: 40px;
}
.testi-summary {
  font-size: 1.1rem;
  color: #333;
}
.testi-stars-big {
  color: #00aa6c;
  margin: 0 10px;
}

/* Card Content Styling */
.testi-user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.testi-name {
  font-weight: 700;
  color: #000;
}
.testi-verified {
  color: #0077b5;
  font-size: 0.8rem;
}
.testi-date {
  font-size: 0.8rem;
  color: #666;
}
.testi-stars {
  color: #00aa6c;
  margin-bottom: 8px;
}
.testi-hl {
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.testi-txt {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
  margin-bottom: 10px;
}
.testi-more {
  color: #0077b5;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
/* Grid Setup */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

/* Card Styling */
.pkg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  color: #1f2937;
  transition: transform 0.2s;
}

.pkg-card:hover {
  transform: translateY(-5px);
}

.pkg-img {
  position: relative;
  height: 220px;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-days-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
}
.pkg-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #84cc16;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
}

/* Body and Footer */
.pkg-body {
  padding: 20px;
  flex-grow: 1;
}
.pkg-route {
  color: #84cc16;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.pkg-title {
  font-size: 1.1rem;
  margin: 8px 0;
}
.pkg-desc {
  font-size: 0.9rem;
  color: #6b7280;
}
.pkg-stars {
  color: #f59e0b;
}
.pkg-cancel {
  color: #059669;
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 500;
}

.pkg-foot {
  padding: 20px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pkg-disc-badge {
  background: #fef3c7;
  color: #b45309;
  padding: 2px 6px;
  font-size: 0.7rem;
  border-radius: 4px;
}
.pkg-old {
  text-decoration: line-through;
  color: #9ca3af;
  margin-right: 8px;
}
.pkg-new {
  font-weight: bold;
  font-size: 1.2rem;
}
.pkg-cta {
  background: transparent;
  border: 1px solid #d97706;
  color: #d97706;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}
/* Layout container */
.pkg-btns {
  display: flex;
  flex-direction: row; /* Keeps them in-line */
  gap: 8px;
  margin-top: 10px;
}

/* Base button reset */
.pkg-btn {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  flex: 1; /* Makes them share equal space */
}

/* WhatsApp Styling */
.btn-wa {
  background-color: #25d366;
  color: white;
}
.btn-wa:hover {
  background-color: #128c7e;
}

/* Email Styling */
.btn-email {
  background-color: #f3f4f6;
  color: #4b5563;
  border-color: #d1d5db;
}
.btn-email:hover {
  background-color: #e5e7eb;
}

.sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999; /* Ensures it stays on top of everything */
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
}

.sticky-whatsapp img {
  width: 35px;
  height: 35px;
}
.popup-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/taj-mahal-1.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff; /* White text for contrast over image */
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: white;
}

/* Button style */
.popup-btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}
