:root {
  --primary: #0f4c5c;
  --primary-dark: #0a3845;
  --accent: #fb8500;
  --accent-dark: #e07700;
  --gold: #ffb703;
  --bg: #fffcf7;
  --surface: #ffffff;
  --text: #0e2a30;
  --muted: #5b6b6f;
  --border: #e8ecee;
  --success: #16a34a;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(15, 76, 92, 0.06);
  --shadow: 0 8px 24px rgba(15, 76, 92, 0.1);
  --shadow-lg: 0 18px 48px rgba(15, 76, 92, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  color: var(--primary);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-tag {
  display: inline-block;
  background: rgba(251, 133, 0, 0.12);
  color: var(--accent-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.center {
  text-align: center;
}

.lead {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(251, 133, 0, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(251, 133, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1eb858;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 14px;
  font-size: 0.85rem;
  border-radius: 10px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.15rem;
}

.logo i {
  color: var(--accent);
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.trip-btn {
  background: #fb8500;
  color: #fff;
  border: none;
  padding: 16px 34px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.trip-btn:hover {
  transform: translateY(-2px);
}

.custom-trip-modal .modal-dialog {
  max-width: 1050px;
}

.custom-modal-box {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.custom-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  opacity: 1;
}

/* LAYOUT */
.custom-modal-box {
  display: flex;
}

/* LEFT SIDE */
.modal-left {
  width: 45%;
  padding: 60px 45px;
  background: linear-gradient(135deg, #fb8500, #ff9f1c);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 40px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-left h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.modal-left h2 span {
  color: #fff4d6;
}

.modal-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.modal-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-left ul li {
  margin-bottom: 16px;
  font-size: 16px;
}

.modal-left ul li i {
  color: #fff;
  margin-right: 10px;
}

/* RIGHT SIDE */
.modal-right {
  width: 55%;
  padding: 55px 45px;
  background: #fff;
}

.modal-right h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #111;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 56px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #fb8500;
  box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.12);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.submit-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 16px;
  background: #fb8500;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn i {
  margin-right: 8px;
}

.secure-text {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #777;
}

.secure-text i {
  color: #fb8500;
  margin-right: 6px;
}

/* MOBILE */
@media (max-width: 991px) {
  .custom-modal-box {
    flex-direction: column;
  }

  .modal-left,
  .modal-right {
    width: 100%;
  }

  .modal-left {
    padding: 40px 30px;
  }

  .modal-right {
    padding: 35px 25px;
  }

  .modal-left h2 {
    font-size: 32px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 576px) {
  .modal-left {
    padding: 35px 24px;
  }

  .modal-right {
    padding: 30px 20px;
  }

  .modal-left h2 {
    font-size: 28px;
  }

  .modal-right h3 {
    font-size: 26px;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      120deg,
      rgba(10, 56, 69, 0.85) 0%,
      rgba(10, 56, 69, 0.45) 60%,
      rgba(10, 56, 69, 0.1) 100%
    ),
    url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?w=1600&auto=format&fit=crop")
      center/cover;
  color: #fff;
  padding: 60px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 56, 69, 0.4), transparent 30%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--gold);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Lead Form Card */
.lead-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.lead-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.lead-card .subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafbfc;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* Stats Bar */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 28px 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.stat .label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0 22px;
  scrollbar-width: none;
  margin-top: 30px;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  padding: 11px 22px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.filter-chip i {
  font-size: 0.85rem;
  color: var(--accent);
}

.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.filter-chip.active i {
  color: var(--gold);
}

.filter-chip .count {
  background: rgba(0, 0, 0, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
}

.filter-chip.active .count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.pkg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pkg-card.hidden {
  display: none;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pkg-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.08);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pkg-badge.hot {
  background: #ef4444;
}

.pkg-badge.luxe {
  background: var(--primary);
}

.pkg-badge.cruise {
  background: #3b82f6;
}

.pkg-badge.group {
  background: #8b5cf6;
}

.pkg-badge.combo {
  background: #0d9488;
}

.pkg-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.pkg-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-duration {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-title {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pkg-features {
  list-style: none;
  margin-bottom: 16px;
}

.pkg-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pkg-features li i {
  color: var(--success);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.pkg-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.pkg-rating .stars {
  color: var(--gold);
}

.pkg-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}

.pkg-price .old {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.pkg-price .new {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 800;
}

.pkg-price .per {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.pkg-discount {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
}

.pkg-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.load-more {
  text-align: center;
  margin-top: 36px;
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(251, 133, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--accent);
  font-size: 1.6rem;
}

.why-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.why-card p {
  font-size: 0.9rem;
}

/* Attractions */
.attractions {
  background: #fff;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.attr-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.attr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.attr-card:hover img {
  transform: scale(1.08);
}

.attr-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 56, 69, 0.85), transparent 60%);
}

.attr-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  z-index: 1;
}

.attr-label h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.attr-label span {
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Itinerary */
.itinerary {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.day-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0 16px;
  margin-top: 30px;
  scrollbar-width: none;
}

.day-tabs::-webkit-scrollbar {
  display: none;
}

.day-tab {
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
  flex-shrink: 0;
}

.day-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.day-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.day-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.day-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.day-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.day-card h3 .day-num {
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.timeline {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}

.timeline li {
  position: relative;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
}

.timeline strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

/* Testimonials */
.testimonials {
  background: var(--primary);
  color: #fff;
}

.testimonials .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.testimonials h2 {
  color: #fff;
}

.testimonials .lead {
  color: rgba(255, 255, 255, 0.85);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.testi-stars {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testi-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.testi-author .name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-author .meta {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(120deg, rgba(251, 133, 0, 0.92), rgba(251, 133, 0, 0.6)),
    url("https://images.unsplash.com/photo-1473625247510-8ceb1760943f?w=1600&auto=format&fit=crop")
      center/cover;
  padding: 72px 0;
  color: #fff;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--accent-dark);
}

.cta-banner .btn-primary:hover {
  background: var(--primary);
  color: #fff;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  gap: 10px;
}

.faq-question i {
  transition: transform 0.25s;
  color: var(--accent);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h4 {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer-col a {
  display: block;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Floating CTAs */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s;
  border: none;
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-whatsapp {
  background: var(--whatsapp);
}

.float-call {
  background: var(--primary);
}

/* Mobile sticky bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 95;
  gap: 8px;
  border-top: 1px solid var(--border);
}

.mobile-cta-bar .btn {
  flex: 1;
  padding: 12px;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1;
    padding: 13px 18px;
    font-size: 0.85rem;
  }

  .lead-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat .num {
    font-size: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-cta .btn-dark {
    display: none;
  }

  .float-cta {
    bottom: 78px;
    right: 14px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .pkg-buttons {
    grid-template-columns: 1fr;
  }

  .day-card {
    padding: 22px;
  }

  .nav-phone span {
    display: none;
  }

  .filter-chip {
    padding: 9px 16px;
    font-size: 0.83rem;
  }
}

.tour-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
}

.tour-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #fb8500;
  font-weight: bold;
  font-size: 18px;
}

.quote-btn {
  background: #fb8500;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* MODAL */
.form-popup {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.popup-body {
  padding: 40px;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  opacity: 1;
}

/* TITLE */
.popup-body h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.popup-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

/* FORM */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #fb8500;
  box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.12);
}

/* BUTTON */
.submit-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  background: #fb8500;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn i {
  margin-right: 8px;
}

/* DISCLAIMER */
.secure-text {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #777;
}

.secure-text i {
  color: #fb8500;
  margin-right: 5px;
}

/* MOBILE */
@media (max-width: 576px) {
  .popup-body {
    padding: 28px 20px;
  }

  .popup-body h3 {
    font-size: 26px;
  }
}
