:root{
  --navy:#0e2a47;
  --navy-dark:#0a1e34;
  --orange:#f4821f;
  --orange-dark:#dd6f10;
  --cream:#f7f8fa;
  --text:#1f2937;
  --muted:#6b7280;
  --border:#e6e8ec;
  --white:#ffffff;
  --radius:14px;
  --shadow:0 20px 40px -20px rgba(14,42,71,0.25);
  --font-head:'Poppins', sans-serif;
  --font-script:'Dancing Script', cursive;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-head);
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;}
input,select{font-family:inherit;}

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 26px;
  border-radius:25px;
  font-weight:500;
  font-size:0.85rem;
  border:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
input::placeholder {font-size:14px !important; opacity: 0.8;}
.btn-primary{
  background:linear-gradient(171deg, var(--orange-dark), #000000e6);
  color:var(--white);
}
.btn-primary:hover{
  background:var(--orange-dark);
  transform:translateY(-1px);
}

/* Top info bar */
.topbar{
  background:linear-gradient(171deg, var(--orange-dark), #000000e6);
  color:#cfd8e3;
  font-size:0.85rem;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:9px 24px;
}
.topbar-contact a{
  margin-right:24px;
  color:#ffffff;;
}
.topbar-contact a:hover{color:var(--white);}
.topbar-social{display:flex;align-items:center;gap:14px;}
.follow-label{margin-right:2px;color:#ffffff;}
.topbar-social a{
  width:26px;height:26px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--white);
  font-size:0.75rem;
  transition:background .15s ease;
}
.topbar-social a:hover{background:var(--orange);}

/* Main nav */
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:100;
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.logo-icon{
  font-size:1.6rem;
  color:var(--navy);
}
.logo-text{
  font-weight:700;
  font-size:1.4rem;
  color:var(--navy);
  line-height:1.1;
  display:block;
}
.logo-text.light{color:var(--white);}
.logo-text small{
  display:block;
  font-family:var(--font-script);
  font-weight:600;
  font-size:1rem;
  color:var(--orange);
  line-height:1;
}
.logo-img{
  max-height:90px;
  max-width:220px;
  object-fit:contain;
}
.logo-img.light{
  max-height:44px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
.nav-link{
  font-size:0.85rem;
  font-weight:300;
  color:var(--text);
  background:none;
  border:none;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.nav-link:hover, .nav-link.active{color:var(--orange);}
.nav-dropdown{position:relative;}
.dropdown-toggle i{font-size:0.7rem;}
.dropdown-menu{
  position:absolute;
  top:calc(100% + 16px);
  left:0;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:var(--shadow);
  min-width:180px;
  padding:8px;
  display:none;
  flex-direction:column;
  margin-top: -10px;
}
.nav-dropdown:hover .dropdown-menu{display:flex;}
.nav-dropdown.open .dropdown-toggle i{transform:rotate(180deg);}
.dropdown-menu a{
  padding:9px 12px;
  border-radius:6px;
  font-size:0.9rem;
}
.dropdown-menu a:hover{background:var(--cream);color:var(--orange);}
.nav-actions{display:flex;align-items:center;gap:16px;}
.nav-toggle{
  display:none;
  background:none;border:none;
  font-size:1.3rem;
  color:var(--navy);
}

/* Hero slider */
.hero-slider{
  position:relative;
  min-height:max(100px, 82vh);
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:80px 0 130px;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease;
  z-index:1;
  overflow:hidden;
}
.hero-slide.active{
  position:relative;
  opacity:1;
  visibility:visible;
  z-index:2;
}
.hero-slide-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1);
  transition:transform 7s ease-out;
  z-index:0;
}
.hero-slide.active .hero-slide-bg{
  transform:scale(1.12);
}
.hero-inner{position:relative;z-index:2;color:var(--white);text-align:center;max-width:760px;margin:0 auto;}
.hero-cta{margin-top:24px;}

/* Staggered fade-up entrance for the eyebrow/subtitle/button, replays each time a slide activates */
.hero-slide .hero-eyebrow,
.hero-slide .hero-sub,
.hero-slide .hero-cta{
  opacity:0;
}
.hero-slide.active .hero-eyebrow{animation:heroFadeUp .7s ease forwards;animation-delay:.15s;}
.hero-slide.active .hero-sub{animation:heroFadeUp .8s ease forwards;animation-delay:.75s;}
.hero-slide.active .hero-cta{animation:heroFadeUp .8s ease forwards;animation-delay:.95s;}
@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(26px);}
  to{opacity:1;transform:translateY(0);}
}

/* Split-text title entrance: two halves converge from opposite sides */
.hero-title{overflow:hidden;}
.hero-title .split-line{display:block;opacity:0;}
.hero-title .split-left{transform:translateX(-70px);}
.hero-title .split-right{transform:translateX(70px);}
.hero-slide.active .hero-title .split-left{animation:splitInLeft .75s cubic-bezier(.2,.8,.2,1) forwards;animation-delay:.3s;}
.hero-slide.active .hero-title .split-right{animation:splitInRight .75s cubic-bezier(.2,.8,.2,1) forwards;animation-delay:.42s;}
@keyframes splitInLeft{to{opacity:1;transform:translateX(0);}}
@keyframes splitInRight{to{opacity:1;transform:translateX(0);}}

/* Curtain wipe transition between slides — two panels close together to
   cover the slider, the slide swaps underneath, then they open back apart. */
.hero-curtain{
  position:absolute;
  inset:0;
  z-index:5;
  pointer-events:none;
  display:flex;
  flex-direction:column;
}
.hero-curtain-panel{
  flex:1;
  background:var(--navy-dark);
  transform:scaleY(0);
  transition:transform .45s cubic-bezier(.76,0,.24,1);
}
.hero-curtain-top{transform-origin:top;}
.hero-curtain-bottom{transform-origin:bottom;}
.hero-curtain.closed .hero-curtain-panel{transform:scaleY(1);}

@media (prefers-reduced-motion: reduce){
  .hero-slide-bg{transition:none;transform:none !important;}
  .hero-slide .hero-eyebrow, .hero-slide .hero-sub, .hero-slide .hero-cta{
    animation:none !important;
    opacity:1;
  }
  .hero-title .split-line{
    animation:none !important;
    opacity:1 !important;
    transform:none !important;
  }
  .hero-curtain-panel{transition:none !important;}
}

.slider-arrow{
  position:absolute;
  top:42%;
  z-index:5;
  width:46px;height:46px;
  border-radius:50%;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.4);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(4px);
  transition:background .15s ease;
}
.slider-arrow:hover{background:var(--orange);border-color:var(--orange);}
.slider-arrow.prev{left:28px;}
.slider-arrow.next{right:28px;}

.slider-dots{
  position:absolute;
  bottom:190px;
  left:50%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  gap:8px;
}
.slider-dot{
  width:9px;height:9px;
  border-radius:5px;
  background:rgba(255,255,255,0.5);
  border:none;
  cursor:pointer;
  transition:width .2s ease, background .2s ease;
  display:none;
}
.slider-dot.active{background:var(--orange);width:26px;}
.hero-eyebrow{
  font-family:var(--font-script);
  font-size:1.7rem;
  color:var(--orange);
  margin:0 0 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.hero-plane{font-size:1.1rem;transform:rotate(20deg);}
.hero-title{
  font-size:3.4rem;
  line-height:1.1;
  font-weight:600;
  margin:0 auto 18px;
  max-width:700px;
}
.hero-sub{
  font-size:1.05rem;
  color:#e4e9f0;
  max-width:520px;
  line-height:1.6;
  margin-left:auto;
  margin-right:auto;
}

/* Search widget */
.search-widget{
  position:relative;
  z-index:3;
  margin-top:-64px;
  background:var(--white);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:22px 26px;
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.search-field{
  display:flex;
  align-items:flex-start;
  gap:10px;
  flex:1;
  min-width:150px;
}
.field-icon{color:var(--orange);font-size:1.1rem;margin-top:3px;}
.search-field label{
  display:block;
  font-size:0.8rem;
  font-weight:600;
  color:var(--text);
  margin-bottom:3px;
}
.search-field input, .search-field select{
  border:none;
  outline:none;
  font-size:0.72rem;
  color:var(--muted);
  width:100%;
  background:transparent;
  padding:0;
}
.search-divider{width:1px;height:38px;background:var(--border);}
.search-btn{white-space:nowrap;padding:14px 28px;}

/* Feature strip */
.feature-strip{
  margin-top:-40px;
  position:relative;
  z-index:2;
  padding-bottom:2px;
}
.feature-grid{
  background:var(--white);
  border-radius:16px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  padding:34px 30px;
  display:none;
}
.feature-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding-right:10px;
}
.feature-icon{
  width:52px;height:52px;
  flex-shrink:0;
  border-radius:50%;
  border:1.5px solid var(--orange);
  color:var(--orange);
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;
}
.feature-item h3{
  margin:0 0 4px;
  font-size:1.02rem;
  color:var(--navy);
}
.feature-item p{
  margin:0;
  font-size:0.87rem;
  color:var(--muted);
  line-height:1.5;
}

/* Destinations */
.destinations{padding:10px 0 50px;}
.section-heading{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin:0 auto 38px;
  gap:14px;
  max-width:680px;
}
.section-heading .carousel-controls, .section-heading .btn-outline{align-self:center;}
.eyebrow{
  font-family:var(--font-script);
  color:var(--orange);
  font-size:1.25rem;
  margin:0 0 4px;
}
.section-heading h2{
  font-size:1.6rem;
  margin:0 0 10px;
  color:var(--navy);
  font-weight:400;
}
.section-sub{margin:0 auto;color:var(--muted);max-width:460px;text-align:center;font-size:13px;font-weight: 200;}
.carousel-controls{display:flex;gap:10px;}
.carousel-btn{
  width:42px;height:42px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--white);
  display:flex;align-items:center;justify-content:center;
  color:var(--navy);
  transition:background .15s ease, color .15s ease;
}
.carousel-btn:hover{background:var(--orange);color:var(--white);border-color:var(--orange);}

.destination-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}
.destination-card{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 40px -22px rgba(14,42,71,0.32);
  border:1px solid rgba(230,232,236,0.6);
  background:var(--white);
  transition:transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  display:block;
}
.destination-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 50px -22px rgba(14,42,71,0.4);
}
.destination-image{
  height:210px;
  background-size:cover;
  background-position:center;
  background-color:var(--cream);
  position:relative;
  overflow:hidden;
  transition:transform .5s ease;
}
.destination-card:hover .destination-image{transform:scale(1.06);}
.card-badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  background:rgba(255,255,255,0.96);
  color:var(--navy);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.01em;
  padding:8px 16px;
  border-radius:20px;
  box-shadow:0 8px 18px rgba(14,42,71,0.22);
}
.card-badge.orange{background:var(--orange);color:var(--white);}
.destination-info{padding:22px 22px 24px;}
.destination-info h3{
  margin:0;
  font-size:1.15rem;
  font-weight:700;
  color:var(--navy);
  letter-spacing:-0.01em;
}
.destination-price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px dashed var(--border);
  font-size:12px;
}
.destination-price-row .price-block{display:flex;flex-direction:column;gap:4px;}
.destination-price-row .price-label{font-size:0.78rem;color:var(--muted);}
.price{
  font-weight:500;
  color:var(--navy);
  font-size:1.20rem;
  letter-spacing: 1px;
  font-family: 'Font Awesome 6 Brands';
}
.card-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.85rem;
  font-weight:600;
  color:var(--white);
  background:var(--navy);
  padding:11px 20px;
  border-radius:24px;
  white-space:nowrap;
  transition:background .2s ease, transform .2s ease;
}
.destination-card:hover .card-cta, .package-card:hover .card-cta{
  background:var(--orange);
  transform:translateX(2px);
}

/* Footer */
.site-footer{
  background:var(--navy-dark);
  color:#c6d0dc;
  padding-top:56px;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand p{
  margin-top:14px;
  font-size:0.88rem;
  line-height:1.6;
  color:#a9b6c6;
  max-width:280px;
}
.footer-col h4{
  color:var(--white);
  margin:0 0 16px;
  font-size:0.95rem;
}
.footer-col a{
  display:block;
  margin-bottom:10px;
  font-size:0.88rem;
  color:#a9b6c6;
}
.footer-col a:hover{color:var(--orange);}
.footer-bottom{
  text-align:center;
  padding:18px 0;
  font-size:0.82rem;
  color:#8695a8;
}

/* Simple placeholder page (stub nav pages) */
.page-placeholder{
  padding:100px 0;
  text-align:center;
}
.page-placeholder h1{
  font-size:2.4rem;
  color:var(--navy);
  margin:0 0 16px;
}
.page-placeholder .section-sub{
  margin:0 auto 28px;
}

/* Outline button */
.btn-outline{
  background:transparent;
  border:1.5px solid var(--navy);
  color:var(--navy);
}
.btn-outline:hover{background:var(--navy);color:var(--white);}
.btn.block{display:flex;justify-content:center;width:100%;margin-bottom:12px;}
.btn.small{padding:8px 16px;font-size:0.82rem;}

/* Generic page hero (inner pages) */
.page-hero{
  background:linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color:var(--white);
  padding:70px 0 60px;
  text-align:center;
}
p{font-size:12px !important;}
.page-hero h1{font-size:2.4rem;margin:0 0 12px;font-weight: 600;}
.page-hero .eyebrow{color:var(--orange);font-family:var(--font-script);font-size:1.3rem;margin:0 0 4px;}
.page-hero .section-sub{color:#dbe3ee;max-width:560px;margin:0 auto;}
.page-hero .section-sub a{color:var(--orange);font-weight:600;}

/* Detail hero (destination / package / blog) */
.detail-hero{
  background-size:cover;
  background-position:center;
  color:var(--white);
  padding:110px 0 50px;
  text-align:center;
}
.detail-hero .eyebrow{font-family:var(--font-script);color:var(--orange);font-size:1.3rem;margin:0 0 6px;}
.detail-hero h1{font-size:2.4rem;margin:0 0 10px;}
.detail-location{margin:0 auto;color:#e4e9f0;}

.detail-body{padding:56px 0;}
.detail-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:start;
}
.detail-grid h2{color:var(--navy);margin-top:0;}
.body-copy{color:var(--muted);line-height:1.75;}
.detail-sidebar{
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  position:sticky;
  top:100px;
}
.detail-sidebar a{color:var(--navy);font-weight:400;}
.price.big{font-size:1.8rem;color:var(--orange);font-weight:700;margin:4px 0 18px;}
.muted-line{color:#000;font-size:0.95rem !important;margin:0;font-weight:500;}

.check-list{list-style:none;margin:0;padding:0;}
.check-list li{
  display:flex;align-items:center;gap:10px;
  padding:8px 0;
  color:var(--text);
  border-bottom:1px solid var(--border);
}
.check-list i{color:var(--orange);}

.article-copy{
  max-width:760px;
  margin:0 auto;
  color:var(--text);
  line-height:1.8;
  font-size:1.02rem;
}

/* Section heading centered variant */
.section-heading.center{justify-content:center;text-align:center;}
.section-heading.center .section-sub{margin:0 auto;}

/* Testimonials */
.testimonials-strip{padding:70px 0;background:var(--cream);}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:30px;
}
.testimonial-grid.full{grid-template-columns:repeat(2, 1fr);}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
}
.stars{color:var(--orange);margin-bottom:12px;font-size:0.9rem;}
.stars .dim{color:#dfe3ea;}
.testimonial-message{
  color:var(--text);
  font-size:0.85rem;
  line-height:1.6;
  margin:0 0 18px;
}
.testimonial-person{display:flex;align-items:center;gap:12px;}
.avatar{
  width:44px;height:44px;
  border-radius:50%;
  background-size:cover;
  background-position:center;
  flex-shrink:0;
}
.testimonial-person strong{display:block;color:var(--navy);font-size:0.9rem;}
.testimonial-person span{font-size:0.8rem;color:var(--muted);}

/* Blog */
.blog-teaser{padding:90px 0;}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.blog-grid.full{grid-template-columns:repeat(3, 1fr);}
.blog-card{
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  background:var(--white);
  box-shadow:0 14px 32px -20px rgba(14,42,71,0.22);
  transition:transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.blog-card:hover{transform:translateY(-8px);box-shadow:0 26px 44px -20px rgba(14,42,71,0.32);}
.blog-image{height:190px;background-size:cover;background-position:center;background-color:var(--cream);overflow:hidden;transition:transform .5s ease;}
.blog-card:hover .blog-image{transform:scale(1.06);}
.blog-info{padding:20px 22px 22px;}
.blog-date{font-size:0.75rem;color:var(--orange);font-weight:700;letter-spacing:0.03em;text-transform:uppercase;}
.blog-info h3{margin:10px 0 8px;color:var(--navy);font-size:1.08rem;font-weight:700;letter-spacing:-0.01em;}
.blog-info p{margin:0;color:var(--muted);font-size:0.88rem;line-height:1.55;}

/* Packages */
.package-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.package-grid.full{grid-template-columns:repeat(4, 1fr);}
.package-card{
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--white);
  box-shadow:0 14px 32px -20px rgba(14,42,71,0.28);
  transition:transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  display:block;
}
.package-card:hover{transform:translateY(-8px);box-shadow:0 26px 44px -20px rgba(14,42,71,0.38);}
.package-card .destination-image:hover{transform:none;}
.package-card:hover .destination-image{transform:scale(1.06);}

/* Destination grid full-page variant */
.destination-grid.full{grid-template-columns:repeat(4, 1fr);}

/* Package category filter tabs */
.package-filter-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}
.filter-tab{
  padding:10px 20px;
  border-radius:30px;
  border:1.5px solid var(--border);
  color:var(--navy);
  font-size:0.85rem;
  font-weight:600;
  background:var(--white);
  transition:all .2s ease;
}
.filter-tab:hover{border-color:var(--orange);color:var(--orange);}
.filter-tab.active{background:var(--navy);border-color:var(--navy);color:var(--white);}

/* Team */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}
.team-card{text-align:center;}
.team-photo{
  width:140px;height:140px;
  border-radius:50%;
  background-size:cover;
  background-position:center;
  margin:0 auto 16px;
}
.team-card h3{margin:0 0 4px;color:var(--navy);font-size:1.05rem;}
.team-bio{color:var(--muted);font-size:0.85rem;margin-top:8px;}

/* Stats */
.stats-grid{
  background:var(--white);
  border-radius:16px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  padding:34px 20px;
  text-align:center;
}
.stat-value{font-size:1.8rem;font-weight:700;color:var(--orange);}
.stat-label{font-size:0.85rem;color:var(--muted);margin-top:6px;}

/* FAQ */
.faq-list{max-width:760px;margin:0 auto;}
.faq-item{
  border:1px solid var(--border);
  border-radius:10px;
  padding:16px 20px;
  margin-bottom:14px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:600;
  color:var(--navy);
  display:flex;
  justify-content:space-between;
  align-items:center;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary i{color:var(--orange);font-size:0.8rem;transition:transform .15s ease;}
.faq-item[open] summary i{transform:rotate(45deg);}
.faq-item p{color:var(--muted);margin:14px 0 0;line-height:1.6;}

/* Pricing table */
.pricing-table{
  width:100%;
  border-collapse:collapse;
  background:var(--white);
}
.pricing-table th, .pricing-table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--border);
  font-size:0.92rem;
}
.pricing-table th{color:var(--navy);font-size:0.82rem;text-transform:uppercase;letter-spacing:0.04em;}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.gallery-item{
  height:200px;
  border-radius:10px;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.gallery-item span{
  background:linear-gradient(0deg, rgba(10,30,52,0.75), transparent);
  color:var(--white);
  width:100%;
  padding:10px 12px;
  font-size:0.82rem;
}

/* Forms (contact / booking) */
.alert{
  padding:14px 18px;
  border-radius:10px;
  margin-bottom:22px;
  font-size:0.92rem;
}
.alert-success{background:#e6f6ec;color:#1c7a41;border:1px solid #b9e6c9;}
.alert-error{background:#fdecec;color:#b3261e;border:1px solid #f6c6c3;}
.alert-error ul{margin:0;padding-left:18px;}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form-grid.narrow{max-width:800px; margin:auto;}
.form-row{display:flex;flex-direction:column;gap:6px;}
.form-row.full{grid-column:1 / -1;}
.form-row label{font-size:0.85rem;font-weight:600;color:var(--navy);}
.form-row input, .form-row select, .form-row textarea{
  border:1px solid var(--border);
  border-radius:8px;
  padding:11px 14px;
  font-size:0.92rem;
  font-family:inherit;
  color:var(--text);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:none;
  border-color:var(--orange);
}

/* Enquiry popup */
.enquiry-overlay{
  position:fixed;
  inset:0;
  background:rgba(10,30,52,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease;
  padding:20px;
}
.enquiry-overlay.open{opacity:1;visibility:visible;}
.enquiry-modal{
  background:var(--white);
  border-radius:16px;
  padding:36px;
  width:100%;
  max-width:370px;
  position:relative;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.4);
  transform:translateY(20px) scale(0.97);
  transition:transform .3s ease;
  max-height:90vh;
  overflow-y:auto;
}
.enquiry-overlay.open .enquiry-modal{transform:translateY(0) scale(1);}
.enquiry-close{
  position:absolute;
  top:14px;right:14px;
  width:34px;height:34px;
  border-radius:50%;
  border:none;
  background:var(--cream);
  color:var(--muted);
  font-size:1.4rem;
  line-height:1;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.enquiry-close:hover{background:#fdecec;color:var(--red, #c0392b);}
.enquiry-body .eyebrow{font-family:var(--font-script);color:var(--orange);font-size:1.3rem;margin:0 0 4px;}
.enquiry-body h2{color:var(--orange-dark);margin:0 0 8px;font-size:1.1rem;text-align:center;font-weight:400}
.enquiry-sub{color:var(--muted);font-size:0.6rem !important;margin:0 0 20px; text-align:center;}
.enquiry-sub p{font-size:0.8rem !important;margin:0 0 20px; text-align:center;}
.enquiry-body form{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.enquiry-body .form-row.full{grid-column:1/-1;}
.enquiry-body .btn.block{grid-column:1/-1;margin-top:4px;}
.enquiry-success{text-align:center;padding:20px 0;}
.enquiry-success i{font-size:3rem;color:var(--green, #1c7a41);margin-bottom:14px;}
.enquiry-success h2{color:var(--navy);margin:0 0 8px;}
.enquiry-success p{color:var(--muted);margin:0 0 20px;}

@media (max-width: 640px){
  .enquiry-body form{grid-template-columns:1fr;}
  .enquiry-modal{padding:28px 22px;}
}
@media (max-width: 1024px){
  .destination-grid, .destination-grid.full{grid-template-columns:repeat(2, 1fr);}
  .feature-grid{grid-template-columns:repeat(2, 1fr);}
  .footer-inner{grid-template-columns:1fr 1fr;}
  .testimonial-grid, .testimonial-grid.full{grid-template-columns:1fr;}
  .blog-grid, .blog-grid.full{grid-template-columns:repeat(2, 1fr);}
  .package-grid, .package-grid.full{grid-template-columns:repeat(2, 1fr);}
  .team-grid{grid-template-columns:repeat(2, 1fr);}
  .stats-grid{grid-template-columns:repeat(2, 1fr);gap:24px;}
  .gallery-grid{grid-template-columns:repeat(2, 1fr);}
  .detail-grid{grid-template-columns:1fr;}
  .detail-sidebar{position:static;}
  .form-grid{grid-template-columns:1fr;}
}

@media (max-width: 900px){
  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    padding:16px 24px;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    display:none;
    gap:14px;
  }
  .main-nav.open{display:flex;}
  .nav-toggle{display:block;}
  .nav-dropdown{width:100%;}
  .dropdown-menu{
    position:static;
    box-shadow:none;
    border:none;
    background:transparent;
    min-width:0;
    padding:4px 0 0 14px;
    display:none;
  }
  .dropdown-menu.show{display:flex;}
  .nav-dropdown:hover .dropdown-menu{display:none;}
  .nav-dropdown:hover .dropdown-menu.show{display:flex;}
  .search-widget{flex-direction:column;align-items:stretch;}
  .search-divider{display:none;}
  .slider-dots{bottom:320px;}
  .slider-arrow{width:38px;height:38px;font-size:0.85rem;}
}

@media (max-width: 640px){
  .topbar-contact a:last-child{margin-right:0;}
  .hero-slider{min-height:max(560px, 72vh);}
  .hero-title{font-size:2.3rem;}
  .destination-grid, .destination-grid.full{grid-template-columns:1fr;}
  .feature-grid{grid-template-columns:1fr;padding:26px;}
  .footer-inner{grid-template-columns:1fr;}
  .blog-grid, .blog-grid.full{grid-template-columns:1fr;}
  .package-grid, .package-grid.full{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr;}
}

/* ===================== Scroll-triggered reveal animations ===================== */

/* Section heading fades/slides up as its section enters view */
.reveal-section .section-heading{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal-section.in-view .section-heading{opacity:1;transform:translateY(0);}

/* Card grids: each card fades/slides up with a staggered delay */
.reveal-section .destination-card,
.reveal-section .package-card,
.reveal-section .blog-card,
.reveal-section .testimonial-card,
.reveal-section .team-card,
.reveal-section .feature-item,
.reveal-section .stat-item,
.reveal-section .faq-item{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal-section.in-view .destination-card,
.reveal-section.in-view .package-card,
.reveal-section.in-view .blog-card,
.reveal-section.in-view .testimonial-card,
.reveal-section.in-view .team-card,
.reveal-section.in-view .feature-item,
.reveal-section.in-view .stat-item,
.reveal-section.in-view .faq-item{
  opacity:1;
  transform:translateY(0);
}

/* Stagger — nth-child delay, covers grids up to 8 wide */
.reveal-section .destination-card:nth-child(1), .reveal-section .package-card:nth-child(1), .reveal-section .blog-card:nth-child(1), .reveal-section .testimonial-card:nth-child(1), .reveal-section .team-card:nth-child(1), .reveal-section .feature-item:nth-child(1), .reveal-section .stat-item:nth-child(1), .reveal-section .faq-item:nth-child(1){transition-delay:.03s;}
.reveal-section .destination-card:nth-child(2), .reveal-section .package-card:nth-child(2), .reveal-section .blog-card:nth-child(2), .reveal-section .testimonial-card:nth-child(2), .reveal-section .team-card:nth-child(2), .reveal-section .feature-item:nth-child(2), .reveal-section .stat-item:nth-child(2), .reveal-section .faq-item:nth-child(2){transition-delay:.1s;}
.reveal-section .destination-card:nth-child(3), .reveal-section .package-card:nth-child(3), .reveal-section .blog-card:nth-child(3), .reveal-section .testimonial-card:nth-child(3), .reveal-section .team-card:nth-child(3), .reveal-section .feature-item:nth-child(3), .reveal-section .stat-item:nth-child(3), .reveal-section .faq-item:nth-child(3){transition-delay:.17s;}
.reveal-section .destination-card:nth-child(4), .reveal-section .package-card:nth-child(4), .reveal-section .blog-card:nth-child(4), .reveal-section .testimonial-card:nth-child(4), .reveal-section .team-card:nth-child(4), .reveal-section .feature-item:nth-child(4), .reveal-section .stat-item:nth-child(4), .reveal-section .faq-item:nth-child(4){transition-delay:.24s;}
.reveal-section .destination-card:nth-child(5), .reveal-section .package-card:nth-child(5), .reveal-section .blog-card:nth-child(5), .reveal-section .testimonial-card:nth-child(5), .reveal-section .team-card:nth-child(5), .reveal-section .faq-item:nth-child(5){transition-delay:.31s;}
.reveal-section .destination-card:nth-child(6), .reveal-section .package-card:nth-child(6), .reveal-section .blog-card:nth-child(6), .reveal-section .team-card:nth-child(6), .reveal-section .faq-item:nth-child(6){transition-delay:.38s;}
.reveal-section .destination-card:nth-child(7), .reveal-section .faq-item:nth-child(7){transition-delay:.45s;}
.reveal-section .destination-card:nth-child(8), .reveal-section .faq-item:nth-child(8){transition-delay:.52s;}

@media (prefers-reduced-motion: reduce){
  .reveal-section .section-heading,
  .reveal-section .destination-card,
  .reveal-section .package-card,
  .reveal-section .blog-card,
  .reveal-section .testimonial-card,
  .reveal-section .team-card,
  .reveal-section .feature-item,
  .reveal-section .stat-item,
  .reveal-section .faq-item{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* Animated underline on nav links */
.nav-link{position:relative;}
.nav-link::after{
  content:'';
  position:absolute;
  left:0;bottom:-6px;
  width:0;
  height:2px;
  background:var(--orange);
  transition:width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after{width:100%;}

/* Tactile press feedback on buttons */
.btn{transition:transform .15s ease, box-shadow .15s ease, background .15s ease;}
.btn:active{transform:scale(0.96);}

/* Carousel / slider arrow subtle pulse on hover */
.carousel-btn, .slider-arrow{transition:background .15s ease, color .15s ease, transform .15s ease;}
.carousel-btn:hover, .slider-arrow:hover{transform:scale(1.08);}

/* Contact page map embed */
.map-section{width:100%;}
.map-embed{
  width:100%;
  height:420px;
}
.map-embed iframe{display:block;width:100%;height:100%;}
@media (max-width:640px){
  .map-embed{height:300px;}
}

/* Destinations slider (kicks in automatically once there are more than 4 featured destinations) */
.destination-grid.slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:24px;
  padding-bottom:4px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.destination-grid.slider::-webkit-scrollbar{display:none;}
.destination-grid.slider .destination-card{
  flex:0 0 auto;
  width:270px;
  scroll-snap-align:start;
}
.slider-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:32px;
}
.slider-progress{display:flex;align-items:center;gap:6px;}
.slider-progress .progress-dot{
  width:8px;height:8px;
  border-radius:5px;
  background:var(--border);
  border:none;
  padding:0;
  cursor:pointer;
  transition:width .25s ease, background .25s ease;
}
.slider-progress .progress-dot.active{
  width:26px;
  background:var(--orange);
}

@media (max-width:640px){
  .destination-grid.slider .destination-card{width:230px;}
}

/* Gallery slider (homepage) — same peeking-card mechanics as the destinations slider */
.gallery-grid.slider{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  gap:16px;
  padding-bottom:4px;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.gallery-grid.slider::-webkit-scrollbar{display:none;}
.gallery-grid.slider .gallery-item{
  flex:0 0 auto;
  width:270px;
  scroll-snap-align:start;
}
@media (max-width:640px){
  .gallery-grid.slider .gallery-item{width:230px;}
}
