/* ═══ CSS VARIABLES ═══ */
:root {
  --green: #0F623F;
  --green-dark: #0a4a2f;
  --green-light: #1a7f52;
  --gold: #CD8A00;
  --gold-light: #e8a800;
  --gold-pale: #fdf3dc;
  --white: #FFFFFF;
  --off-white: #fafaf8;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: rgba(15, 98, 63, 0.12);
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --bg: var(--white);
  --bg-alt: var(--off-white);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6
}

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

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

ul {
  list-style: none
}

input,
select,
textarea,
button {
  font-family: var(--font-sans)
}

/* ═══ UTILITY ═══ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

.section {
  padding: 100px 0
}

.section-header {
  text-align: center;
  margin-bottom: 64px
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(205, 138, 0, .2)
}

section[id] {
  scroll-margin-top: 100px;
}

.section-badge.light {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 18px
}

.section-title em {
  color: var(--gold);
  font-style: italic
}

.section-title.light,
.section-sub.light {
  color: #fff
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(205, 138, 0, .35)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(205, 138, 0, .5)
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
  transform: translateY(-3px)
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition)
}

.btn-ghost:hover:not(:disabled) {
  background: var(--gold);
  color: #fff
}

.btn-ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed
}

.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition)
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, .08)
}

p.cta-sublink {
  margin-top: 20px;
  color: rgb(189, 189, 189);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

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

.nav-logo img {
  max-height: 44px;
  width: auto;
  display: block
}

.logo-icon {
  color: var(--gold);
  font-size: 1.4rem
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition)
}

.navbar.scrolled .logo-text {
  color: var(--green)
}

.logo-accent {
  color: var(--gold)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .03em;
  transition: var(--transition);
  position: relative
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark)
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition)
}

.nav-links a:hover::after {
  width: 100%
}

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

.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(205, 138, 0, .35)
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(205, 138, 0, .5)
}

.nav-cta::after {
  display: none !important
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px
}

.navbar.scrolled .hamburger span {
  background: var(--green)
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.06)
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards
}

@keyframes kenBurns {
  from {
    transform: scale(1.06)
  }

  to {
    transform: scale(1)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 40, 25, .72) 0%, rgba(15, 98, 63, .45) 50%, rgba(0, 0, 0, .65) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(205, 138, 0, .2);
  border: 1px solid rgba(205, 138, 0, .5);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp .8s ease both
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp .9s .15s ease both
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  display: block
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .88);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeUp 1s .3s ease both
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s .45s ease both
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  animation: fadeUp 1s .6s ease both
}

.hero-stat {
  text-align: center
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1
}

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

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .25)
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 46%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s .8s ease both
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite
}

@keyframes scrollWheel {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1
  }

  60% {
    transform: translateY(10px);
    opacity: 0
  }
}

.hero-slide-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: var(--transition);
  border: none
}

.slide-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ═══ DESTINATIONS ═══ */
.destinations-section {
  background: var(--off-white)
}

.dest-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px
}

.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-mid);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition)
}

.filter-tab:hover {
  border-color: var(--green);
  color: var(--green)
}

.filter-tab.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(15, 98, 63, .25)
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px
}

.dest-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dest-card:hover .btn-explore-mock {
  background: #cc9200;
}

.dest-card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dest-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d48a00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.dest-card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.dest-card-body h3 {
  font-family: var(--font-serif);
  color: #0a2819;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.dest-card-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dest-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.dest-tag {
  background: #fdf6e9;
  color: #d48a00;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dest-card-footer {
  margin-top: auto;
}

.btn-explore-mock {
  display: block;
  background: #e6a500;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-explore-mock:hover {
  background: #cc9200;
}
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border)
}

.dest-from {
  font-size: .8rem;
  color: var(--text-light)
}

.dest-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold)
}

/* ═══ TRIP TYPES ═══ */
.trip-types-section {
  background: #fff
}

.trip-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px
}

.trip-type-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 32px 28px;
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.trip-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 98, 63, .03), rgba(205, 138, 0, .04));
  opacity: 0;
  transition: var(--transition)
}

.trip-type-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px)
}

.trip-type-card:hover::before {
  opacity: 1
}

.trip-type-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block
}

.trip-type-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px
}

.trip-type-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65
}

.trip-type-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold)
}

.trip-type-link:hover {
  gap: 10px
}

/* ═══ CUSTOMIZE — NEW VISUAL BUILDER ═══ */
.customize-section {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 60%, #1a7f52 100%);
  position: relative;
  overflow: hidden
}

.cust-bg-deco {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none
}

.cust-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start
}

/* sidebar */
.cust-sidebar {
  position: sticky;
  top: 100px
}

.cust-step-nav {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 20px
}

.csn-item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 8px 6px;
  border-radius: 10px;
  transition: var(--transition)
}

.csn-item:hover,
.csn-item.active {
  background: rgba(255, 255, 255, .08)
}

.csn-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 2px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition)
}

.csn-item.active .csn-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(205, 138, 0, .25)
}

.csn-item.done .csn-dot {
  background: rgba(255, 255, 255, .9);
  border-color: #fff
}

.csn-dot span {
  font-size: .72rem;
  font-weight: 700;
  color: #fff
}

.csn-item.done .csn-dot span {
  color: var(--green)
}

.csn-label strong {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600
}

.csn-item.active .csn-label strong {
  color: var(--gold-light);
}

.csn-item.done .csn-label strong {
  color: rgba(255, 255, 255, .85);
}

.csn-label span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55)
}

.csn-line {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, .15);
  margin: 4px 0 4px 24px
}

/* live summary */
.cust-summary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cs-header {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  font-weight: 600
}

.cs-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 60px
}

.cs-empty {
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  font-style: italic;
  line-height: 1.5
}

.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 8px 10px
}

.cs-item-label {
  color: rgba(255, 255, 255, .5);
  font-size: .72rem;
  margin-bottom: 2px
}

.cs-cta {
  padding: 12px !important;
  font-size: .88rem !important;
  margin-top: 4px
}

/* panels */
.cust-panels {
  min-height: 350px
}

.cust-panel {
  display: none;
  animation: fadeUp .35s ease;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cust-panel.active {
  display: block;
}

.cp-header {
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.cp-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.cp-header p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ── STATE GROUP ACCORDION ── */
.state-group {
  margin-bottom: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.state-group.active {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.state-header {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-alt);
  transition: all 0.3s ease;
  border: 1px solid #ff9800;
  border-radius: 20px;
}

.state-group.active .state-header {
  border-bottom-color: #ff9800;
}

.state-header:hover {
  background: rgba(212, 175, 55, 0.03);
}

.state-icon-circle {
  width: 45px;
  height: 45px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.state-group.active .state-icon-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.state-info h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #cd8a00;
  display: flex;
  align-items: center;
}

.state-info p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.state-toggle {
  background: rgba(212, 175, 55, 0.1);
  border: none;
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state-group.active .state-toggle {
  background: var(--gold);
  color: #fff;
  transform: rotate(180deg);
}

.state-count-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-link {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.state-places {
  display: none;
  padding: 25px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  animation: fadeIn 0.4s ease;
}

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

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

.state-group.active .state-places {
  display: grid;
}

/* ── DESTINATION CARDS ── */
.cp-dest-grid {
  /* Replaced with accordion grid inside state-places */
  margin-bottom: 30px;
}

.cp-dest-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-alt);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.cp-dest-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cp-dest-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cp-dest-card.selected {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.cpdc-img {
  height: 100px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.cp-dest-card:hover .cpdc-img {
  transform: scale(1.1);
}

.cpdc-info {
  padding: 12px;
  background: var(--bg-alt);
  transition: background 0.3s ease;
}

.cp-dest-card.selected .cpdc-info {
  background: transparent;
}

.cpdc-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cpdc-info em {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  font-style: normal;
  line-height: 1.4;
}

.cpdc-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cp-dest-card.selected .cpdc-check {
  opacity: 1;
  transform: scale(1);
  background: var(--gold);
  color: #fff;
}

/* style cards */

/* style cards */
.cp-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px
}

.cp-style-card {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition)
}

.cp-style-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.cpsc-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block
}

.cp-style-card strong {
  display: block;
  font-size: .88rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px
}

.cp-style-card em {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  font-style: normal
}

.cpsc-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition)
}

.cp-style-card.selected,
.cp-dur-card.selected,
.cp-bdg-card.selected,
.cp-hotel-card.selected {
  border-color: var(--gold);
  background: rgba(205, 138, 0, .12);
  box-shadow: 0 0 0 3px rgba(205, 138, 0, .25)
}

.cp-style-card.selected .cpsc-check,
.cp-dur-card.selected .cpsc-check,
.cp-bdg-card.selected .cpsc-check,
.cp-hotel-card.selected .cpsc-check {
  opacity: 1;
  transform: scale(1)
}

/* traveler counter */
.cp-travelers {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px
}

.cp-travelers label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.cp-counter {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .1);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15)
}

.cp-counter button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center
}

.cp-counter button:hover {
  background: rgba(205, 138, 0, .3)
}

.cp-counter span {
  min-width: 40px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff
}

/* duration */
.cp-duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px
}

.cp-dur-card {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition)
}

.cp-dur-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.cp-dur-card strong {
  display: block;
  font-size: .92rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px
}

.cp-dur-card em {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  font-style: normal
}

/* budget */
.cp-budget label {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.cp-budget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 8px
}

.cp-bdg-card {
  position: relative;
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition)
}

.cp-bdg-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.cp-bdg-card strong {
  display: block;
  font-size: .82rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px
}

.cp-bdg-card em {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  font-style: normal
}

/* hotel */
.cp-hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px
}

.cp-hotel-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, .1);
  transition: var(--transition)
}

.cp-hotel-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.cphc-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  transition: transform .4s
}

.cp-hotel-card:hover .cphc-img {
  transform: scale(1.05)
}

.cphc-body {
  padding: 12px 14px;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px)
}

.cphc-body strong {
  display: block;
  font-size: .88rem;
  color: #fff;
  font-weight: 700
}

.cphc-body em {
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  font-style: normal
}

/* transport */
.cp-transport {
  margin-bottom: 8px
}

.cp-transport label {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.cp-trans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.cp-trans-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
  transition: var(--transition)
}

.cp-trans-opt:hover {
  border-color: rgba(205, 138, 0, .4);
  background: rgba(205, 138, 0, .1)
}

.cp-trans-opt input {
  accent-color: var(--gold)
}

/* experiences */
.cp-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px
}

.cp-exp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: var(--transition);
  position: relative
}

.cp-exp-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.cpei-icon {
  font-size: 1.3rem;
  flex-shrink: 0
}

.cp-exp-item span:not(.cpei-icon) {
  font-size: .82rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.3
}

.cpei-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition)
}

.cp-exp-item.selected {
  border-color: var(--gold);
  background: rgba(205, 138, 0, .12)
}

.cp-exp-item.selected .cpei-check {
  opacity: 1;
  transform: scale(1)
}

/* footer nav */
.cp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

/* quote card */
.quote-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
  position: relative;
  overflow: hidden
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: goldBar 3s infinite
}

@keyframes goldBar {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.quote-header {
  text-align: center;
  margin-bottom: 32px
}

.quote-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px
}

.quote-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 6px
}

.quote-header p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55)
}

.quote-main {
  background: rgba(0, 0, 0, .2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center
}

.quote-price-wrap {
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding-right: 30px
}

.quote-price-label {
  font-size: .75rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px
}

.quote-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1
}

.quote-per-person {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 8px
}

.quote-details {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.qd-item {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8)
}

.qd-item strong {
  color: var(--gold-light);
  font-weight: 600;
  margin-right: 4px
}

.quote-features {
  margin-bottom: 32px
}

.quote-features h4 {
  font-size: .9rem;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .05em
}

.quote-features ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px
}

.quote-features li {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  list-style: none
}

.quote-footer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  text-align: center
}

.quote-footer p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 24px;
  line-height: 1.5
}

.quote-actions {
  display: flex;
  flex-direction: column;
  gap: 12px
}

@media(max-width:600px) {
  .quote-main {
    grid-template-columns: 1fr;
    text-align: center
  }

  .quote-price-wrap {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-right: 0;
    padding-bottom: 20px
  }

  .quote-features ul {
    grid-template-columns: 1fr
  }
}

/* builder visual gallery */
/* builder visual gallery */
.builder-visual {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  overflow: hidden;
  width: 100%
}

.bv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px
}

.bv-icon {
  color: var(--gold);
  font-size: 1.2rem
}

.bv-header h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  flex-grow: 1
}

.bv-nav {
  display: flex;
  gap: 10px
}

.bv-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition)
}

.bv-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1)
}

.bv-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed
}

.builder-gallery-wrap {
  overflow: hidden;
  width: 100%
}

.builder-gallery {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 5px
}

.bg-item {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  position: relative;
  cursor: pointer;
  animation: fadeUp .4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2)
}

.bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.bg-item:hover img {
  transform: scale(1.1)
}

.bg-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .9));
  color: #fff;
  font-size: .8rem;
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: .02em
}

.bv-empty {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, .3);
  font-style: italic;
  padding: 40px;
  font-size: .95rem
}

@media(max-width:900px) {
  .bg-item {
    flex: 0 0 calc((100% - 20px) / 2)
  }
}

@media(max-width:600px) {
  .bg-item {
    flex: 0 0 100%
  }
}



/* responsive */
@media(max-width:1100px) {
  .cust-layout {
    grid-template-columns: 1fr
  }

  .cust-sidebar {
    position: static
  }

  .cust-step-nav {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    padding: 16px
  }
}

@media(max-width:768px) {
  .cp-dest-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cp-style-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cp-duration-grid,
  .cp-budget-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cp-hotel-grid {
    grid-template-columns: 1fr
  }

  .cp-exp-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {}

/* ═══ SERVICES ═══ */
.services-section {
  background: var(--off-white)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm)
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  border-color: var(--gold)
}

.service-slider {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0
}

.service-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  pointer-events: none
}

.ss-track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.ss-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0
}

.ss-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  z-index: 2;
  transition: var(--transition);
  opacity: 0
}

.service-card:hover .ss-btn {
  opacity: 1
}

.ss-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.1)
}

.ss-prev {
  left: 16px
}

.ss-next {
  right: 16px
}

.ss-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2
}

.ss-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition)
}

.ss-dot.active {
  width: 20px;
  background: var(--gold);
  border-radius: 10px
}

.service-card-body {
  padding: 32px 28px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3
}

.service-desc {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0
}

.services-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition)
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(205, 138, 0, 0.3)
}

/* ═══ WHY US ═══ */
.why-section {
  background: #fff;
  overflow: hidden
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.why-image-stack {
  position: relative;
  height: 520px
}

.why-img {
  position: absolute;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg)
}

.why-img-1 {
  width: 75%;
  height: 78%;
  top: 0;
  left: 0
}

.why-img-2 {
  width: 62%;
  height: 60%;
  bottom: 0;
  right: 0;
  border: 5px solid #fff
}

.why-content .section-title {
  text-align: left
}

.why-content .section-badge {
  margin-bottom: 16px
}

.why-desc {
  color: var(--text-mid);
  margin-bottom: 36px;
  font-size: .98rem;
  line-height: 1.75
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.why-feat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(15, 98, 63, .08), rgba(15, 98, 63, .15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0
}

.why-feat-title {
  font-weight: 600;
  color: var(--green);
  font-size: .95rem;
  margin-bottom: 4px
}

.why-feat-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
  background: linear-gradient(170deg, var(--off-white) 0%, var(--gold-pale) 100%)
}

.testimonials-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.testi-page {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  gap: 30px;
  padding: 20px 5px;
  box-sizing: border-box;
  justify-content: center;
  align-items: stretch;
}

.testi-card {
  flex: 1;
  min-width: 0;
  /* max-width: calc((100% - 60px) / 3); */
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  transition: var(--transition);
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  word-break: break-word;
}

@media (max-width: 768px) {
  .testi-page {
    flex-direction: column;
  }

  .testi-card {
    flex: 0 0 100%;
  }
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0
}

.testi-name {
  font-weight: 700;
  color: var(--green);
  font-size: .95rem
}

.testi-loc {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 2px
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center
}

.testi-btn:hover {
  background: var(--green);
  color: #fff
}

.testi-dots {
  display: flex;
  gap: 8px
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 98, 63, .2);
  cursor: pointer;
  transition: var(--transition);
  border: none
}

.testi-dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px
}

/* ═══ GALLERY ═══ */
.gallery-section {
  background: var(--white)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #f0ede8
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2
}

.gallery-item:nth-child(6) {
  grid-column: span 2
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block
}

.gallery-item:hover img {
  transform: scale(1.06)
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 98, 63, .45);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1
}

/* ═══ CTA BOOKING SECTION ═══ */
.cta-booking-section {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: var(--green-dark);
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: brightness(0.5);
}

.cta-booking-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 60px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 25px auto 40px;
  max-width: 700px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.cta-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.cta-feat:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.cta-feat span {
  font-size: 1.1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px
}

.form-note {
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 16px;
  line-height: 1.6
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--text-dark)
}

.footer-top {
  padding: 72px 0 52px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.footer-brand .logo-text {
  color: #fff
}

.footer-tagline {
  color: rgba(255, 255, 255, .5);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 220px
}

.footer-social {
  display: flex;
  gap: 12px
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition)
}

.social-link:hover {
  background: var(--gold);
  transform: translateY(-3px)
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition)
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px
}

.footer-contact-items p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5)
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, .15);
  border: 1px solid rgba(37, 211, 102, .35);
  color: #25d366;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition)
}

.footer-wa-btn:hover {
  background: rgba(37, 211, 102, .25)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  text-align: center
}

.footer-bottom p {
  color: rgba(255, 255, 255, .3);
  font-size: .82rem
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.lightbox.open {
  display: flex;
  animation: fadeIn .3s ease
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: var(--transition)
}

.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg)
}

/* ═══ TOAST ═══ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9998;
  background: var(--green);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none
}

.toast.show {
  transform: translateY(0);
  opacity: 1
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1100px) {
  .customize-inner {
    grid-template-columns: 1fr
  }

  .why-inner {
    grid-template-columns: 1fr
  }

  .why-visual {
    display: none
  }

  .contact-inner {
    grid-template-columns: 1fr
  }

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

  .footer-brand {
    grid-column: span 3
  }
}

@media(max-width:768px) {
  .section {
    padding: 72px 0
  }

  .container {
    padding: 0 20px
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 74, 47, .97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    font-size: 1.2rem;
    color: #fff
  }

  .hamburger {
    display: flex;
    z-index: 1000;
    position: relative
  }

  .hero-stats {
    gap: 20px
  }

  .dest-filter-tabs {
    gap: 8px
  }

  .destinations-grid,
  .trip-types-grid,
  .services-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1
  }

  .gallery-item:nth-child(6) {
    grid-column: span 2
  }

  .builder-destinations {
    grid-template-columns: 1fr
  }

  .builder-fields {
    grid-template-columns: 1fr
  }

  .why-features {
    grid-template-columns: 1fr
  }

  .testi-card {
    min-width: 280px
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: span 2
  }
}

@media(max-width:480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: span 1
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waNatural 4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes waNatural {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}