
* { margin:0; padding:0; box-sizing:border-box; }
:root{
  --dark:#132018;
  --dark-2:#1b2c22;
  --gold:#D4A94A;
  --gold-light:#e8c37a;
  --cream:#F8F4EA;
  --cream-2:#F1EAD9;
  --text-dark:#22301f;
  --text-muted:#6b7267;
  --serif: 'Playfair Display', serif;
  --sans: 'Poppins', sans-serif;
  --radius: 6px;
}
html{ scroll-behavior:smooth; }
body{
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x:hidden;
}
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
img{ display:block; max-width:100%; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 28px; font-size:13px; font-weight:600; letter-spacing:.8px;
  text-transform:uppercase; border-radius:4px; transition:all .25s ease; white-space:nowrap;
}
.btn-gold{ background:var(--gold); color:#fff; }
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-outline{ border:1px solid rgba(255,255,255,.6); color:#fff;background-color:#1b2c22a6; }
.btn-outline:hover{ background:rgba(255,255,255,.12); }
.btn-line{
  border:1px solid #d8cba4; color:var(--text-dark); padding:12px 22px; font-size:12px; border-radius:4px;
}
.btn-line:hover{ background:var(--dark); color:#fff; border-color:var(--dark); }


.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  background:linear-gradient(to bottom, rgba(10,16,12,.75), rgba(10,16,12,0));
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{
  background:var(--dark);
  box-shadow:0 4px 18px rgba(0,0,0,.25);
}
.header-inner{
  max-width:1500px; margin:0 auto; padding:20px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.logo{ display:flex; align-items:center;  flex-shrink:0;width:80px;height:50px; }
.logo-text{ display:flex; flex-direction:column; line-height:1.1; }
.logo-title{ font-family:var(--serif); font-size:20px; font-weight:600; color:#fff; letter-spacing:.5px; }
.logo-title b{ color:var(--gold); font-weight:700; }
.logo-sub{ font-size:8.5px; letter-spacing:2px; color:#cfd6cd; margin-top:2px; }

.main-nav{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }
.main-nav a{
  color:#e9ece7; font-size:12.5px; font-weight:500; letter-spacing:.6px; text-transform:uppercase;
  position:relative; padding-bottom:4px; transition:color .2s ease;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width .25s ease;
}
.main-nav a:hover, .main-nav a.active{ color:var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:20px; flex-shrink:0; }
.phone-link{ display:flex; align-items:center; gap:8px; color:#fff; font-size:13.5px; font-weight:500; }
.hamburger{
  display:none; flex-direction:column; gap:5px; width:26px; z-index:1100;
}
.hamburger span{ display:block; height:2px; width:100%; background:#fff; border-radius:2px; transition:.3s ease; }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }


.hero{
  position:relative; height:auto; min-height:40px; display:flex; flex-direction:column; justify-content:center;
  padding:132px 0 90px;margin-bottom: 70px;

}
.hero-bg{ position:absolute; inset:0; overflow:hidden; z-index:0; }
.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.4s ease, transform 8s ease;
  transform:scale(1.06);
}
.hero-slide.active{ opacity:1; transform:scale(1.14); z-index:1; }
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(100deg, rgba(8,14,10,.88) 5%, rgba(8,14,10,.55) 38%, rgba(8,14,10,.15) 62%, rgba(8,14,10,.35) 100%);
}
.hero-content{ position:relative; z-index:2; max-width:700px; padding:0 100px; }
.hero-eyebrow{
      font-family: "Ephesis", cursive;
    font-size: 25px;
    color: #e0b15b;
    line-height: .9;
    margin-bottom: 8px;
    display: inline-block;
 font-weight: 500;
font-style: italic;
    text-shadow:
        0 3px 6px rgba(0,0,0,.35),
        0 0 15px rgba(212,169,74,.4);
}
.hero-title{
  font-family:var(--serif); font-weight:800; font-size:38px; line-height:1.08; color:#fdfcf8;
  text-transform:uppercase; letter-spacing:1px;
}
.hero-title span{ color:var(--gold); font-size:78px;font-weight:bold;}
.hero-divider{ display:flex; align-items:center; gap:10px; margin:18px 0 18px; }
.hero-divider span{ width:60px; height:1px; background:rgba(255,255,255,.5); }
.hero-divider i{ width:6px; height:6px; background:var(--gold); border-radius:50%; display:block; font-style:normal; }
.hero-desc{ color:#e7e9e3; font-size:15px; line-height:1.7; max-width:520px; margin-bottom:26px; }
.hero-btns{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-arrow{
  position:absolute; top:46%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%; background:rgba(15,20,16,.45);
  display:flex; align-items:center; justify-content:center; transition:background .2s ease;
}
.hero-arrow:hover{ background:rgba(212,169,74,.85); }
.hero-arrow-left{ left:24px; }
.hero-arrow-right{ right:24px; }

.hero-dots{ position:absolute; z-index:3; left:60px; bottom:150px; display:flex; gap:8px;display: none }
.hero-dots button{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.4); transition:.25s ease; }
.hero-dots button.active{ background:var(--gold); width:22px; border-radius:4px;display: none; }

/* .whatsapp-tab{
  position:fixed; top:52%; right:0; transform:translateY(-50%); z-index:900;
  background:#25D366; color:#fff; padding:16px 10px; border-radius:6px 0 0 6px;
  display:flex; flex-direction:column; align-items:center; gap:10px; box-shadow:-3px 3px 14px rgba(0,0,0,.2);
}
.whatsapp-tab span{ writing-mode:vertical-rl; font-size:12px; font-weight:600; letter-spacing:1px; } */
.whatsapp-tab{
    position:fixed;
    right:-52px;
    top:50%;
    transform:translateY(-50%) rotate(-90deg);
    background:#0aae49;
    color:#fff;
    padding:8px 10px;
    border-radius:2px 2px 0 0;
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    z-index:9999;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    font-size: 12px;
}

.whatsapp-tab:hover{
    background:#1faa52;
    color:#fff;
}

.search-bar{
  position:absolute;
  left:50%;
  bottom:38px;
  transform:translateX(-50%);
  z-index:4;
  max-width:1180px;
  width:calc(100% - 80px);
  background:var(--dark);
  border:1px solid rgba(212,169,74,.35);
  border-radius: 20px;
  display:flex;
  align-items:stretch;
  padding:6px;
  gap:0;
  box-shadow:0 20px 45px rgba(0,0,0,.3);
  bottom: -35px;
}

.search-field{ flex:1; display:flex; align-items:center; gap:12px; padding:14px 22px; min-width:0; }
.search-icon{ flex-shrink:0; display:flex; }
.search-text{ display:flex; flex-direction:column; gap:3px; min-width:0; flex:1; }
.search-text label{ font-size:10.5px; letter-spacing:1.2px; text-transform:uppercase; color:#a9b0a3; }
.search-text .select-wrap{ position:relative; display:flex; align-items:center; }
.search-text select{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  background:transparent; border:none; color:#fff; font-family:inherit;
  font-size:14.5px; font-weight:500; padding:0; padding-right:20px; cursor:pointer; width:100%;
}
.search-text select option{ color:#1a1a1a; }
.select-wrap::after{
  content:''; position:absolute; right:0; top:50%; width:8px; height:8px;
  border-right:1.5px solid var(--gold); border-bottom:1.5px solid var(--gold);
  transform:translateY(-65%) rotate(45deg); pointer-events:none;
}
.search-divider{ width:1px; background:rgba(255,255,255,.12); margin:8px 0; }
.search-btn{ flex-shrink:0; margin:6px; padding:0 30px; border-radius:5px; }


.section-head{
  max-width:1500px; margin:0 auto; padding:0 40px; display:flex; align-items:flex-end;
  justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.eyebrow{
  display:flex; align-items:center; gap:10px; font-size:12.5px; font-weight:600; letter-spacing:1.6px;
  text-transform:uppercase; color:var(--gold); margin-bottom:10px;
}
.eyebrow span{ width:34px; height:1.5px; background:var(--gold); display:block; }
.section-head h2{ font-family:var(--serif); font-size:38px; font-weight:700; color:var(--text-dark); }


.destinations{ padding:5px 0 60px; background:var(--cream); }
.dest-carousel-wrap{ position:relative; max-width:1500px; margin:40px auto 0; padding:0 44px; }
.dest-track{
  display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth; scroll-snap-type:x mandatory;
  padding-bottom:6px; -ms-overflow-style:none; scrollbar-width:none;
}
.dest-track::-webkit-scrollbar{ display:none; }
.dest-card{
  position:relative;
  flex:1 1 0;
  min-width: 150px;
  max-width: 300px;
  height: 280px;
  border-radius:10px;
  overflow:hidden;
  scroll-snap-align:start;
  cursor:pointer;
  flex-shrink:0;
}
.dest-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.dest-card:hover img{ transform:scale(1.08); }
.dest-card::after{
  content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,10,7,.88) 0%, rgba(6,10,7,.15) 55%, transparent 80%);
}
.dest-info{ position:absolute; left:20px; bottom:18px; z-index:2; color:#fff; }
.dest-info h3{ font-family:var(--serif); font-size:21px; font-weight:700; margin-bottom:6px; }
.dest-info p{ display:flex; align-items:center; gap:6px; font-size:12.5px; color:#e5e5df; }

.dest-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  width:44px; height:44px; border-radius:50%; background:#fff; box-shadow:0 4px 14px rgba(0,0,0,.15);
  display:flex; align-items:center; justify-content:center; transition:background .2s ease;
}
.dest-arrow:hover{ background:var(--gold); }
.dest-arrow-left{ left:0; }
.dest-arrow-right{ right:0; }

.features{
  padding: 46px 40px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:34px;
  max-width:1500px;
  margin:0 auto;
  margin-bottom: -25px;
   margin-top: -70px;
}
.feature{ display:flex; align-items:flex-start; gap:14px; flex:1; min-width:210px; max-width:280px; }
.feature-icon{
  flex-shrink:0; width:52px; height:52px; 
  display:flex; align-items:center; justify-content:center;
}
.feature h4{ font-size:15px; font-weight:600; margin-bottom:6px; color:var(--text-dark); }
.feature p{ font-size:13px; color:var(--text-muted); line-height:1.5; }


.site-footer{ background:var(--dark); color:#cfd6cd; padding:70px 40px 0; }
.footer-inner{
  max-width:1500px; margin:0 auto; display:flex; flex-wrap:wrap; gap:50px; padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand{ flex:2; min-width:260px; }
.footer-brand p{ margin-top:16px; font-size:13.5px; line-height:1.7; max-width:340px; color:#a9b0a3; }
.footer-col{ flex:1; min-width:160px; display:flex; flex-direction:column; gap:12px; }
.footer-col h5{ color:#fff; font-size:14px; letter-spacing:.6px; margin-bottom:6px; text-transform:uppercase; }
.footer-col a{ font-size:13.5px; color:#a9b0a3; transition:color .2s ease; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{ text-align:center; padding:22px 0; font-size:12.5px; color:#7c8378; }


@media (max-width:1180px){
  .logo{ display:flex; align-items:center; gap:10px; flex-shrink:0;width:50px;height:50px; }
  .main-nav{ display:none; }
  .hamburger{ display:flex; }
  .main-nav.mobile-open{
    display:flex; position:fixed; top:0; right:0; height:100vh; width:78%; max-width:340px;
    background:var(--dark); flex-direction:column; align-items:flex-start; gap:0; padding:100px 36px 40px;
    z-index:1050; box-shadow:-8px 0 24px rgba(0,0,0,.35);
  }
  .main-nav.mobile-open a{ width:100%; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:14px; }
  .phone-link span{ display:none; }
}
@media (max-width:900px){
  .hero-title{ font-size:46px; }
  .hero-content{ padding:0 30px; }
  .hero{ padding-bottom:40px; }
  .search-bar{
    position:relative; left:auto; bottom:auto; transform:none; margin:28px auto 0;
    flex-wrap:wrap; width:calc(100% - 40px);
  }
  .search-field{ flex:1 1 45%; border-bottom:1px solid rgba(255,255,255,.1); padding:12px 16px; }
  .search-divider{ display:none; }
  .search-btn{ flex:1 1 100%; margin:10px 6px 6px; padding:14px; }
  .section-head h2{ font-size:30px; }
  .features{ padding:40px 24px; }
  .destinations{ padding-top:0px; }
}
@media (max-width:640px){
  .header-inner{ padding:12px 20px; }
  .logo-sub{ display:none; }
  .hero{ padding:110px 0 70px; }
  .hero-title{ font-size:34px; }
  .hero-eyebrow{ font-size:20px; }
  .hero-desc{ font-size:14px; }
  .hero-arrow{ width:36px; height:36px; }
  .hero-arrow-left{ left:10px; } .hero-arrow-right{ right:10px; }
  .hero-dots{ left:30px; bottom:250px; }
  .search-bar{ margin-top:26px; }
  .search-field{ flex:1 1 100%; }
  .dest-card{ width:210px; height:290px; }
  .section-head{ padding:0 20px; flex-direction:column; align-items:flex-start; }
  .dest-carousel-wrap{ padding:0 20px; }
  .dest-arrow{ display:none; }
  .whatsapp-tab{ padding:10px 6px; }
  .whatsapp-tab span{ font-size:10px; }
  .footer-inner{ padding-bottom:34px; }
}