/* =============================================
   TRAVITO — style.css
   ============================================= */

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

:root {
  --gold: #FF7F11;
  --gold2: #D4AE6E;
  --dark: #1a1a1a;
  --bg: #0a0806;
  --white: #ffffff;
  --muted: #8A847E;
  --border: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: #f0f0f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font-family: 'DM Sans', sans-serif;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, .8);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: .3px;
}

.topbar strong {
  color: var(--gold);
}

/* ── NAVBAR ── */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border: none;
  height: 90px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.sticky {
  position: fixed;
  height: 70px;
  background: rgba(10, 8, 6, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: navSlideDown 0.5s ease forwards;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  /* Adjust based on logo proportions */
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  position: relative;
}

.nav-logo span::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  border-radius: 4px;
  transform: rotate(-3deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-phone {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: color .2s;
  display: flex;
  align-items: center;
}

.nav-phone:hover {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger.desktop-menu {
  display: flex;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .3s;
}

.hamburger span.short {
  width: 22px;
  margin-left: auto;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 32px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  z-index: 299;
  background: #000000;
  display: flex;
  flex-direction: column;
  padding: 110px 40px 40px;
  transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.5s;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-bottom: none;
  visibility: hidden;
}

.mobile-menu.open {
  right: 0;
  visibility: visible;
}

.mm-link {
  padding: 16px 0;
  font-size: 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color .2s, padding-left .2s;
}

.mm-link:hover {
  color: var(--gold);
  padding-left: 10px;
  background: transparent;
}

.mm-phone {
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
  border: none;
  font-size: 18px;
  padding-bottom: 0;
}

.mm-phone:hover {
  padding-left: 0;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: #0a0806;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
}

.slide.active .slide-bg {
  animation: kenBurns 7s ease-out forwards;
}

.slide-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(.14);
}

.slide.active .slide-bg {
  filter: brightness(.5);
  transition: filter 1.2s ease;
}

.slide-emoji {
  font-size: 220px;
  opacity: .07;
  user-select: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg, rgba(5, 3, 1, .9) 0%, rgba(5, 3, 1, .35) 55%, transparent 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 7%;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp .8s ease both;
}

.hero-eyebrow-text {
  font-size: 18px;
  font-weight: 500;
  color: pink;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 46px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
  letter-spacing: -1.5px;
}

.hero-content h1 .creative-text {
  font-family: 'Arial Rounded MT Bold', 'Arial Black', Impact, sans-serif;
  background: linear-gradient(180deg, #FFFF00 0%, #FF9900 60%, #FF4500 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  display: inline-block;
  letter-spacing: -3px;
  font-weight: 900;
  padding-right: 6px;
  text-shadow: none !important;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 7%;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.dot {
  height: 3px;
  border-radius: 2px;
  width: 26px;
  background: rgba(255, 255, 255, .3);
  transition: all .4s;
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 46px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #8B5CF6, #cc99ff);
  color: #fff;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(196, 154, 82, .4);
}

.btn-hero-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #8B5CF6, #C084FC);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  transition: all .4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-hero-white:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(139, 92, 246, .4);
}

.btn-hero-icon {
  background: transparent;
  color: #fff;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── SECTIONS ── */
.section {
  padding: 50px 6%;
  /* text-align: center; */
}

.section-white {
  background: var(--dark);
}

.section-dark {
  background: var(--dark);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0px;
  display: block;
  text-align: center;
}

.section-label.light {
  color: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0px;
  color: var(--white);
  text-align: center;
}

.section-title.light {
  color: #ffffff;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
  text-align: center;
}

.section-sub.light {
  color: rgba(255, 255, 255, .5);
}

/* ── SWIPER CAROUSEL ── */
.tour-swiper {
  width: 100%;
  padding-bottom: 40px !important;
  /* space for pagination */
}

.swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 30px 0;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .hero {
    height: 50vh;
    min-height: 300px;
  }

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

/* ── TOUR CARDS ── */
/* ── NEW TOUR PACKAGE CARDS ── */
.pkg-card {
  width: 100%;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}

.pkg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  /* Border width */
  background: linear-gradient(to bottom, var(--border), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Alternating Gradient Borders */
.pkg-card:nth-child(4n+1)::before {
  background: linear-gradient(to bottom, #1B61CA, rgba(255, 255, 255, 0));
}

.pkg-card:nth-child(4n+2)::before {
  background: linear-gradient(to bottom, #FF9E1B, rgba(255, 255, 255, 0));
}

.pkg-card:nth-child(4n+3)::before {
  background: linear-gradient(to bottom, #8B5CF6, rgba(255, 255, 255, 0));
}

.pkg-card:nth-child(4n+4)::before {
  background: linear-gradient(to bottom, #439147, rgba(255, 255, 255, 0));
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.pkg-img {
  width: 100%;
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.pkg-dur-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #8B5CF6, #C084FC);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}

.pkg-body {
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkg-title-area {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #FEF9E6;
  padding: 6px 14px 6px 6px;
  border-radius: 8px;
  width: fit-content;
}

.pkg-badge {
  background: linear-gradient(135deg, #FF7F11, #FFA04D);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.pkg-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #002244;
  margin: 0;
}

.pkg-include-box {
  display: flex;
  background: #F8F9FA;
  border-radius: 8px;
  border: 1px solid #E9ECEF;
  overflow: hidden;
  margin-top: 0px;
}

.pkg-inc-label {
  background: linear-gradient(135deg, #FF7F11, #FFA04D);
  color: #fff;
  padding: 0px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-inc-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pkg-inc-icons {
  display: flex;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  padding: 0px 4px;
}

.inc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.inc-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.inc-icon span {
  font-size: 10px;
  font-weight: 700;
  color: #333;
}

.pkg-divider-dotted {
  border-top: 1px dashed #ccc;
  width: 100%;
}

.pkg-section-title {
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  margin-top: 0px;
  /* color: var(--gold) !important; */
}

.pkg-section-title.green {
  background: linear-gradient(135deg, #FF7F11, #FFA04D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pkg-section-title.red {
  color: #000000;
  margin-bottom: 0px;
}

.pkg-inclusion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  max-height: 80px;
  overflow-y: auto;
  padding-right: 12px;
}

.pkg-inclusion-list::-webkit-scrollbar {
  width: 4px;
}

.pkg-inclusion-list::-webkit-scrollbar-track {
  background: #E9ECEF;
  border-radius: 4px;
}

.pkg-inclusion-list::-webkit-scrollbar-thumb {
  background: #007BFF;
  border-radius: 4px;
}

.pkg-inclusion-list li {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 2px;
}

.pkg-inclusion-list li span {
  color: #007BFF;
  font-weight: 800;
  font-size: 16px;
}

.pkg-highlights-scroll {
  overflow-x: auto;
  padding-bottom: 2px;
}

/* custom scrollbar for highlights */
.pkg-highlights-scroll::-webkit-scrollbar {
  height: 6px;
}

.pkg-highlights-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.pkg-highlights-scroll::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.hl-track {
  display: flex;
  gap: 8px;
  width: max-content;
  padding-right: 12px;
}

.hl-tag {
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pf-label {
  font-size: 15px;
  font-weight: 800;
  color: #222;
}

.pf-price {
  font-size: 20px;
  font-weight: 800;
  color: #1a8e1a;
}

.pf-suffix {
  font-size: 11px;
  font-weight: 700;
  color: #000;
}

.pkg-btn-row {
  display: flex;
  gap: 8px;
  margin-top: 0px;
}

.pkg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: opacity .2s;
}

.pkg-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.btn-call {
  background: linear-gradient(135deg, #1B61CA, #B6CEEA);
  color: #fff;
}

.btn-wa {
  background: linear-gradient(135deg, #439147, #A1D4A3);
  color: #fff;
}

.btn-offer {
  background: linear-gradient(to right, #FF512F, #f09819);
  border: none;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spotlight-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spotlight-panel {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.spotlight-panel span {
  opacity: .4;
}

.spotlight-panel p {
  position: absolute;
  bottom: 14px;
  left: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.sp1 {
  height: 185px;
  background: linear-gradient(135deg, #FF7F11, #FFA04D);
}

.sp2 {
  height: 150px;
  background: linear-gradient(135deg, #1a0a0a, #4a1a2e, #7a2a4a);
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}


/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(180deg, #9C6FE4 0%, #e88cf3 60%, #ff951b 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 64px 6%;
  gap: 20px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.stat-lbl {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-top: 8px;
}

/* ── DESTINATIONS CAROUSEL ── */
.destSwiper {
  width: 100%;
  padding: 10px 0 40px;
  overflow: hidden;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  transition: transform .5s ease;
  width: 100%;
}

.dest-card:hover {
  transform: scale(1.03);
}

.dest-card>span {
  opacity: .45;
}

.dest-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  pointer-events: none;
}

/* Unique Overlay Colors */
.swiper-slide:nth-child(6n+1) .dest-ov {
  background: linear-gradient(to top, rgba(29, 88, 189, 0.45) 0%, transparent 75%);
}

.swiper-slide:nth-child(6n+2) .dest-ov {
  background: linear-gradient(to top, rgba(156, 111, 228, 0.45) 0%, transparent 75%);
}

.swiper-slide:nth-child(6n+3) .dest-ov {
  background: linear-gradient(to top, rgba(255, 149, 27, 0.45) 0%, transparent 75%);
}

.swiper-slide:nth-child(6n+4) .dest-ov {
  background: linear-gradient(to top, rgba(232, 140, 243, 0.45) 0%, transparent 75%);
}

.swiper-slide:nth-child(6n+5) .dest-ov {
  background: linear-gradient(to top, rgba(0, 168, 216, 0.45) 0%, transparent 75%);
}

.swiper-slide:nth-child(6n+6) .dest-ov {
  background: linear-gradient(to top, rgba(255, 69, 0, 0.45) 0%, transparent 75%);
}

.dest-ov h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
}

.dest-ov p {
  font-size: 12px;
  opacity: .72;
  margin-top: 3px;
}

.dest-ov strong {
  font-size: 14px;
  color: var(--gold);
  margin-top: 5px;
  display: block;
}

.see-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap .2s;
}

.see-all:hover {
  gap: 9px;
}


/* ── FAQ ── */
.faq-header {
  text-align: center;
  margin-bottom: 44px;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  transition: max-height .38s ease, padding-bottom .38s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 18px;
}















/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 44px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info>p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.c-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.c-detail small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.c-detail strong {
  font-size: 15px;
  color: #ffffff;
}

#contact {
  /* background: #0a0806; */
  position: relative;
}

.contact-info .light {
  color: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fg label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #ffffff;
}

.fg input,
.fg textarea {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: all .3s ease;
}

.fg input:focus,
.fg textarea:focus {
  border-color: #8B5CF6;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.fg textarea {
  resize: vertical;
}

.fg.full {
  grid-column: 1 / -1;
}

.full-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
}

/* ── NEW TESTIMONIALS ── */
#new-testimonials {
  padding-bottom: 80px;
  overflow: hidden;
  background: #0a0806;
}

.new-testi-container {
  padding: 0 6% 60px;
  margin-top: 50px;
  width: 100%;
  position: relative;
}

#newTestiTrack {
  display: flex !important;
}

.new-testi-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  padding: 18px 30px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s ease;
  cursor: grab;
}

.new-testi-card:active {
  cursor: grabbing;
}

.new-testi-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.new-testi-quote {
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}

.new-testi-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 10px;
}

.new-testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.new-testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.new-testi-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.new-testi-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Swiper Pagination Customization */
.testiSwiper .swiper-pagination {
  bottom: 0px !important;
}

.testiSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.testiSwiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 25px;
  border-radius: 5px;
}


.new-testi-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
}

.new-testi-quote {
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}

.new-testi-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  flex-grow: 1;
}

.new-testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.new-testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.new-testi-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.new-testi-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #8B5CF6, #cc99ff);
  color: #fff;
  padding: 80px 6% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.f-logo span {
  color: var(--gold);
}

.f-brand p {
  font-size: 15px;
  color: rgb(0, 0, 0);
  line-height: 1.8;
  max-width: 320px;
}

footer h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgb(0, 0, 0);
  margin-bottom: 24px;
}

.f-col ul {
  list-style: none;
}

.f-col li {
  margin-bottom: 14px;
}

.f-col a {
  font-size: 14px;
  color: rgb(0, 0, 0);
  transition: color .3s;
}

.f-col a:hover {
  color: var(--gold);
}

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgb(0, 0, 0);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── ANIMATIONS ── */
@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.18);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* Tablet: 600px – 1000px */
@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }


  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 44px 6%;
    gap: 36px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .f-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: < 600px */
@media (max-width: 600px) {
  .topbar {
    font-size: 11px;
    padding: 8px 14px;
  }

  .nav {
    padding: 0 4%;
    height: 58px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content {
    padding: 0 5%;
  }

  .hero-content h1 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 26px;
  }

  .hero-eyebrow {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .br-desktop {
    display: none;
  }

  .slide-emoji {
    font-size: 130px;
  }

  .section {
    padding: 52px 4%;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 40px 4%;
  }

  .stat-num {
    font-size: 38px;
  }

  .stat-lbl {
    font-size: 11px;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }


  .form-row {
    grid-template-columns: 1fr;
  }

  .fg.full {
    grid-column: 1;
  }

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

  .footer-bot {
    font-size: 11px;
  }

  .nl-form {
    flex-direction: column;
    align-items: center;
  }

  .nl-form input {
    width: 100%;
  }

  .nl-form button {
    width: 100%;
  }

  .nl-partners {
    gap: 16px;
  }

  .nl-partners span {
    font-size: 13px;
  }


  .about-text .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 30px);
  }
}

/* Very small: < 380px */
@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 26px;
  }


  .dest-card {
    height: 220px;
    font-size: 65px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── WHY CHOOSE US ── */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 20px auto 0;
  padding: 0 5%;
}

@media (max-width: 1000px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }
}

.wcu-item {
  padding: 15px;
  border-radius: 10px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  /* min-height: 280px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wcu-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.wcu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px !important;
}

.wcu-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wcu-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.wcu-big-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  /* margin-top: auto; */
}

.wcu-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 500;
}

/* Gradients from reference image */
.blue-card {
  background: linear-gradient(135deg, #1D58BD 0%, #B6CEEA 100%);
}

.orange-card {
  background: linear-gradient(135deg, #E69138 0%, #E9C197 100%);
}

.purple-card {
  background: linear-gradient(135deg, #9C6FE4 0%, #D4B6F3 100%);
}

.green-card {
  background: linear-gradient(135deg, #4CAF50 0%, #A5D6A7 100%);
}

.center-label {
  text-align: center;
}

.center-title {
  text-align: center;
}

/* ── MODAL STYLES ── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 480px;
  padding: 20px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #000;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 30px;
  text-align: center;
}

.modal-header h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 700;
}

.modal-header p {
  color: #666;
  font-size: 14px;
}

.modal-form .m-fg {
  margin-bottom: 20px;
}

.modal-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s;
  background: #f9f9f9;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: #FF7F11;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 127, 17, 0.1);
}

.modal-success {
  text-align: center;
  padding: 20px 0;
  color: #1a1a1a !important;
}

.modal-success h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a !important;
}

.modal-success p {
  color: #666 !important;
  font-size: 15px;
  margin-bottom: 25px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: white;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
  }
}

/* ── FLOATING WHATSAPP ── */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waHeartbeat 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  background-color: #20b858;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waHeartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}