:root{
  --bg:#faf9f7;
  --panel:#ffffff;
  --card:#ffffff;
  --muted:#8b8680;
  --text:#2c2420;
  --primary:#1a3a52;
  --accent:#0d9488;
  --accent2:#14b8a6;
  --accent-text:#0f766e;
  --secondary:#4a7c9e;
  --highlight:#e07a5f;
  --ok:#10b981;
  --warn:#f59e0b;
  --danger:#ef4444;
  --border:rgba(44,36,32,.08);
  --shadow: 0 16px 40px rgba(26,58,82,.06);
  --radius:18px;
  --radius2:24px;
  --max:1140px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-heading: 'Cormorant', Georgia, 'Times New Roman', serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  padding-top:72px;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  letter-spacing:0.01em;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 32px}
.topbar{
  position:fixed; top:0; z-index:50; width:100%;
  backdrop-filter: blur(10px);
  background: rgba(250,249,247,.97);
  border-bottom:1px solid var(--border);
  box-shadow: 0 2px 10px rgba(26,58,82,.04);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  font-weight:800; letter-spacing:.2px;
}
.logo{
  width:44px; height:44px; border-radius:10px;
  background-image: url('./logo/logo.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(26,58,82,.08);
  border:1px solid rgba(0,0,0,.06);
}
.navlinks{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
html{scroll-behavior:smooth}
.navlinks a{
  text-decoration:none;
  color:rgba(44,36,32,.75);
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  position:relative;
  transition: all 0.3s ease;
}
.navlinks a:hover{
  background:rgba(13,148,136,.08);
  color:var(--primary);
}
.navlinks a.active{
  color:var(--primary);
  font-weight:700;
}
.navlinks a.active::after{
  content:'';
  position:absolute;
  bottom:0;
  left:10px;
  right:10px;
  height:2px;
  background:var(--accent);
  border-radius:2px;
}
.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.04);
  color:var(--text);
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:transform .08s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
  min-height:44px;
  touch-action:manipulation;
}
.btn:hover{background:rgba(0,0,0,.08); border-color:rgba(0,0,0,.16)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  border:none;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 36px rgba(13,148,136,.22);
  color:#ffffff;
  font-size:16px;
  padding:14px 22px;
  min-height:48px;
}
.btn.primary:hover{filter:saturate(1.08) brightness(1.05)}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(13,148,136,.06);
  border:1px solid rgba(13,148,136,.15);
  color:var(--primary);
  font-weight:700;
  font-size:13px;
}
.hero-premium{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-align:center;
  overflow:hidden;
}
/* Video background (fallback to image if video unavailable) */
.hero-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:1;
}
/* Fallback gradient+image background (shows if video fails to load) */
.hero-premium::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(26,58,82,.45) 0%, rgba(44,36,32,.35) 100%),
    url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2400&q=80') center/cover fixed;
  background-blend-mode:multiply;
  z-index:0;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(26,58,82,.5) 0%, rgba(44,36,32,.4) 100%);
  pointer-events:none;
  z-index:2;
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:0 24px;
  animation:heroFadeIn 1.4s ease-out;
}
.hero-headline{
  font-family:var(--font-heading);
  font-size:64px;
  font-weight:300;
  letter-spacing:-1px;
  line-height:1.1;
  margin:0 0 24px;
  color:#ffffff;
  text-shadow:0 4px 20px rgba(0,0,0,.3);
}
.hero-subheadline{
  font-size:20px;
  font-weight:400;
  line-height:1.6;
  margin:0 0 40px;
  color:rgba(255,255,255,.92);
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}
.hero-ctas{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero-primary{
  font-size:17px;
  padding:16px 40px;
  min-height:56px;
  letter-spacing:.3px;
}
.hero-secondary{
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.25);
  color:#ffffff;
  font-size:17px;
  padding:16px 40px;
  min-height:56px;
  letter-spacing:.3px;
}
.hero-secondary:hover{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.35);
}
.hero-scroll{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  font-size:24px;
  color:rgba(255,255,255,.7);
  animation:scrollBounce 2s ease-in-out infinite;
  cursor:pointer;
  z-index:2;
}

/* Search Widget Section */
.search-widget-section{
  padding:48px 0;
  background:var(--bg);
  border-top:1px solid var(--border);
}
.search-widget{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  align-items:flex-end;
}
.search-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.search-field label{
  font-weight:800;
  font-size:12px;
  color:var(--primary);
  letter-spacing:.2px;
}
.search-field input,
.search-field select{
  background:var(--card);
  border:1px solid var(--border);
  color:var(--text);
  padding:12px 14px;
  border-radius:12px;
  outline:none;
  font-weight:700;
  font-size:15px;
  min-height:44px;
  touch-action:manipulation;
}
.search-field input:focus,
.search-field select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(13,148,136,.1);
}
.search-field select:disabled{
  opacity:.55;
  cursor:not-allowed;
  background:rgba(0,0,0,.02);
}
.search-widget .btn.primary{
  min-height:48px;
  font-size:16px;
  padding:14px 28px;
  grid-column:1/-1;
}

@keyframes heroFadeIn{
  0%{opacity:0; transform:translateY(30px)}
  100%{opacity:1; transform:translateY(0)}
}
@keyframes scrollBounce{
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(10px)}
}
@keyframes fadeIn{
  0%{opacity:0}
  100%{opacity:1}
}

/* === Scroll Reveal System === */
.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}
.reveal-delay-5{transition-delay:.5s}

.hero{
  padding:42px 0 24px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 60% 40%;
  gap:18px;
  align-items:stretch;
}
.heroCard{
  overflow:visible;
  position:relative;
  background:transparent;
  border:none;
}
.heroMain{
  padding:38px 34px 28px;
  position:relative;
  background:linear-gradient(160deg, #0f2027 0%, #0d3b3e 40%, #1a4a4f 100%);
  border-radius:var(--radius2);
  box-shadow:0 2px 8px rgba(0,0,0,.12), 0 20px 60px rgba(0,0,0,.18);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  color:#fff;
}
/* Subtle texture overlay on dark card */
.heroMain::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 600px 300px at 10% 90%, rgba(13,148,136,.20), transparent 70%),
    radial-gradient(ellipse 400px 250px at 90% 10%, rgba(74,124,158,.15), transparent 70%);
  pointer-events:none;
  z-index:0;
}
.heroMain > *{
  position:relative;
  z-index:1;
}

/* Top badge */
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
  padding:7px 14px;
  border-radius:50px;
  font-size:12px;
  font-weight:600;
  letter-spacing:.3px;
  color:rgba(255,255,255,.85);
  margin-bottom:22px;
  width:fit-content;
}
.hero-badge svg{
  color:#5eead4;
  flex-shrink:0;
}
h1{  
  margin:0 0 14px;
  font-family:var(--font-heading);
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.5px;
  color:#fff;
}
h1 em,
.hero-card-heading em{
  font-style:italic;
  color:#5eead4;
}
.hero-card-heading{
  margin:0 0 14px;
  font-family:var(--font-heading);
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.5px;
  color:#fff;
}
.sub{
  margin:0 0 26px;
  color:rgba(255,255,255,.60);
  font-size:15.5px;
  line-height:1.65;
  max-width:48ch;
}
.miniRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.miniRow .btn.primary{
  font-size:16px;
  padding:14px 24px;
  box-shadow: 0 18px 40px rgba(13,148,136,.26);
}
.mini{
  background:rgba(0,0,0,.03);
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px 12px;
  min-width:160px;
  flex:1;
}
.mini b{display:block; font-size:14px}
.mini span{color:rgba(44,36,32,.60); font-weight:600; font-size:13px}
.collage{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:auto;
  padding-top:18px;
  margin-bottom:14px;
  flex:1;
}
.collage-item{
  position:relative;
  background-size:cover;
  background-position:center;
  border-radius:12px;
  min-height:120px;
  box-shadow:0 12px 30px rgba(26,58,82,0.08);
  overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
}
.collage-item:hover{
  transform:scale(1.04);
  box-shadow:0 16px 40px rgba(26,58,82,.15);
}
.collage-label{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:6px 10px;
  border-radius:8px;
  color:#fff;
  font-weight:800;
  font-size:13px;
  background:linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
  backdrop-filter: blur(2px);
}

/* (collage styles removed — replaced by hero-destinations strip) */

/* ─── Icon Chips ─── */
.chip-icon{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.chip-icon svg{
  flex-shrink:0;
  opacity:.7;
}

/* (hero-features removed — replaced by trust indicators) */

/* ─── Hero Button Row ─── */
.hero-btn-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}
.hero-primary-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  padding:13px 28px;
  box-shadow:0 8px 24px rgba(13,148,136,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.hero-primary-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 32px rgba(13,148,136,.45);
}
.hero-wa-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  padding:12px 20px;
  border:1.5px solid rgba(255,255,255,.18);
  border-radius:var(--radius2);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.85);
  font-weight:600;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
  text-decoration:none;
}
.hero-wa-btn:hover{
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  color:#fff;
}
.hero-wa-btn svg{
  width:16px;
  height:16px;
  flex-shrink:0;
  opacity:.75;
}
.hero-primary-btn svg{
  flex-shrink:0;
}

/* ─── Trust Pills ─── */
.hero-trust{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:24px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-trust-pill{
  display:inline-flex;
  align-items:center;
  gap:5px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.08);
  border-radius:50px;
  padding:6px 13px;
  font-size:12px;
  font-weight:600;
  color:rgba(255,255,255,.65);
}
.hero-trust-pill svg{
  color:#5eead4;
  flex-shrink:0;
}

/* ─── Destination Grid ─── */
.hero-dest-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  margin-top:auto;
  flex:1;
  min-height:0;
}
.hero-dest{
  position:relative;
  border-radius:12px;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  cursor:pointer;
  text-decoration:none;
  transition:transform .3s ease, box-shadow .3s ease;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
  min-height:0;
}
.hero-dest-large{
  grid-row:1 / 3;
}
.hero-dest::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.60) 0%, rgba(0,0,0,.0) 55%);
  border-radius:12px;
  transition:background .3s ease;
}
.hero-dest:hover{
  transform:scale(1.03);
  box-shadow:0 12px 36px rgba(0,0,0,.35);
}
.hero-dest:hover::after{
  background:linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.05) 60%);
}
.hero-dest span{
  position:absolute;
  bottom:12px;
  left:14px;
  z-index:1;
  color:#fff;
  font-weight:700;
  font-size:14px;
  letter-spacing:.3px;
  text-shadow:0 1px 6px rgba(0,0,0,.4);
}

/* ─── Form Header ─── */
.form-header{
  display:flex;
  align-items:center;
  gap:12px;
}
.form-header-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:#fff;
  box-shadow:0 8px 20px rgba(13,148,136,.2);
}

/* ─── Form Label Icons ─── */
.field label{
  display:flex;
  align-items:center;
  gap:5px;
}
.field label svg{
  flex-shrink:0;
  opacity:.6;
}

/* ─── Submit Button ─── */
.form-submit-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:16px;
  padding:14px 24px;
  position:relative;
  overflow:hidden;
}
.form-submit-btn svg{flex-shrink:0}
.form-submit-btn::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform:translateX(-100%);
  transition:transform .5s ease;
}
.form-submit-btn:hover::after{
  transform:translateX(100%);
}

/* ─── Trust Bar ─── */
.trust-bar{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:7px;
  flex:1;
  min-width:120px;
  padding:10px 12px;
  background:rgba(13,148,136,.05);
  border:1px solid rgba(13,148,136,.12);
  border-radius:12px;
  transition:background .25s ease;
}
.trust-item:hover{
  background:rgba(13,148,136,.1);
}
.trust-item svg{
  color:var(--accent);
  flex-shrink:0;
}
.trust-item span{
  font-size:11.5px;
  font-weight:700;
  color:rgba(44,36,32,.7);
  line-height:1.3;
}
.heroSide{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow: var(--shadow);
}
.sideTitle{font-weight:800; margin:0 0 6px; font-size:16px}
.form{
  display:grid;
  gap:10px;
}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
.field{
  display:flex; flex-direction:column; gap:7px;
  background:rgba(0,0,0,.02);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
}
.field label{font-weight:800; font-size:12px; color:var(--primary); letter-spacing:.2px}
.field input,.field select,.field textarea{
  width:100%;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.10);
  color:var(--text);
  padding:12px 14px;
  border-radius:12px;
  outline:none;
  font-weight:700;
  font-size:16px;
  min-height:44px;
  touch-action:manipulation;
}
.field textarea{min-height:100px; resize:vertical}
.note{
  color:rgba(30,41,59,.65);
  font-size:12px;
  margin:0;
}

section{padding:64px 0; background:transparent}
/* subtle neutral background for quick-form to mask tall grid rows */
section#quick-form{
  background: linear-gradient(180deg, rgba(250,249,247,1) 0%, rgba(247,246,243,1) 100%);
}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  margin-bottom:clamp(32px,4vw,64px);
}
.sectionHead h2{margin:0; font-family:var(--font-heading); font-size:36px; letter-spacing:-0.5px; font-weight:400}
.sectionHead p{margin:8px 0 0; color:rgba(44,36,32,.65); max-width:68ch; font-weight:400; font-size:17px; line-height:1.7}
.filters{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  justify-content:flex-end;
}
.filters input,.filters select{
  background:rgba(0,0,0,.02);
  border:1px solid var(--border);
  color:var(--text);
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:15px;
  outline:none;
  min-width:160px;
  min-height:44px;
  touch-action:manipulation;
}

.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:32px}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:32px}
.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:none;
  overflow:hidden;
  position:relative;
  transition:all 0.4s ease;
}
.card:hover{
  box-shadow:0 20px 50px rgba(26,58,82,.08);
  transform:translateY(-4px);
}
.thumb{
  height:240px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--border);
  filter:saturate(0.95) contrast(1.02);
}
.pad{padding:28px}
.dest-price{
  font-size:18px;
  font-weight:800;
  color:var(--accent-text);
  margin:8px 0 12px;
}
.dest-price span{
  font-size:13px;
  font-weight:600;
  color:var(--muted);
}
.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px}
.pill{
  font-size:12px; font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(13,148,136,.06);
  border:1px solid rgba(13,148,136,.15);
  color:var(--primary);
}
.price{
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
  margin-top:12px;
}
.price b{font-size:16px}
.price span{color:rgba(44,36,32,.60); font-weight:700; font-size:12px}
.card h3{margin:0 0 12px; font-family:var(--font-heading); font-size:22px; letter-spacing:-0.3px; color:var(--primary); font-weight:400; line-height:1.3}
.card p{margin:0; color:rgba(44,36,32,.65); font-weight:400; font-size:15px; line-height:1.7}
.card .btn{width:100%; margin-top:24px}

.why{
  display:grid; grid-template-columns:1fr; gap:24px; align-items:stretch;
}
.bullets{display:grid; gap:24px; grid-template-columns:repeat(2, 1fr)}
.bullet{
  padding:32px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--border);
}
.bullet b{display:block; margin-bottom:12px; font-family:var(--font-heading); font-size:18px; font-weight:400; color:var(--primary)}
.bullet span{color:rgba(44,36,32,.65); font-weight:400; font-size:15px; line-height:1.7}
.badgeBox{
  padding:32px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--border);
  display:flex; flex-direction:column; gap:16px;
}
.badgeRow{display:flex; gap:10px; flex-wrap:wrap}
.small{font-size:14px; color:rgba(44,36,32,.65); font-weight:400; margin:0; line-height:1.6}
.hr{height:1px; background:var(--border); margin:20px 0}

.testi{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;
}
.quote{
  padding:32px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--border);
}
.quote p{margin:0 0 16px; color:rgba(44,36,32,.75); font-weight:400; font-size:16px; line-height:1.7}
.quote b{display:block; font-size:16px; font-weight:400; color:var(--primary)}
.quote span{color:rgba(44,36,32,.65); font-weight:400; font-size:14px}

details{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:16px;
  padding:24px 28px;
}
summary{
  cursor:pointer;
  font-family:var(--font-heading);
  font-weight:400;
  font-size:17px;
  list-style:none;
  min-height:44px;
  display:flex;
  align-items:center;
  touch-action:manipulation;
  color:var(--primary);
}
summary::-webkit-details-marker{display:none}
details p{margin:16px 0 0; color:rgba(44,36,32,.65); font-weight:400; font-size:15px; line-height:1.7}

.cta{
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding:48px;
  background:var(--card);
  display:flex; align-items:center; justify-content:space-between; gap:32px;
  box-shadow:none;
}
.cta h3{margin:0; font-family:var(--font-heading); font-size:28px; color:var(--primary); font-weight:400; letter-spacing:-0.4px}
.cta p{margin:12px 0 0; color:rgba(44,36,32,.65); font-weight:400; max-width:70ch; font-size:17px; line-height:1.7}

footer{
  padding:64px 0 48px;
  border-top:1px solid var(--border);
  background:var(--card);
  margin-top:80px;
}
.footgrid{display:grid; grid-template-columns:1.2fr .8fr; gap:48px}
.footgrid a{color:rgba(44,36,32,.75); text-decoration:none}
.footgrid a:hover{text-decoration:underline}
.legal{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:10px;
  color:rgba(44,36,32,.65); font-weight:650; font-size:12px;
}

.modalBack{
  position:fixed; inset:0; display:none;
  background:rgba(0,0,0,.40);
  z-index:70;
  padding:18px;
}
.modal{
  max-width:720px;
  margin:40px auto;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modalTop{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 14px;
  border-bottom:1px solid var(--border);
  background:rgba(0,0,0,.02);
}
.modalTop b{font-size:16px}
.x{
  border:none; background:rgba(0,0,0,.04);
  color:var(--text); font-weight:900;
  width:44px; height:44px;
  border-radius:14px; cursor:pointer;
  border:1px solid var(--border);
  font-size:20px;
  touch-action:manipulation;
}
.modalBody{padding:14px}
.itGrid{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:10px}
.it{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background:rgba(0,0,0,.02);
}
.it b{display:block; margin-bottom:4px}
.tag{
  display:inline-flex; padding:6px 10px; border-radius:999px;
  background:rgba(13,148,136,.08);
  border:1px solid rgba(13,148,136,.20);
  font-weight:900; font-size:12px;
  color:var(--primary);
}
.muted{color:rgba(44,36,32,.65); font-weight:650}

/* === Clean Subtle Transitions (Premium) === */
.card{
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.card:hover{
  box-shadow:0 20px 50px rgba(26,58,82,.10);
  transform:translateY(-6px);
}
.btn.primary{
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.3s ease;
}
.btn.primary:hover{
  filter:saturate(1.08) brightness(1.05);
  transform:translateY(-2px);
  box-shadow: 0 20px 44px rgba(13,148,136,.28);
}
.logo{
  transition: transform 0.3s ease;
}
.logo:hover{
  transform:scale(1.06);
}
.chip{
  transition: background 0.2s ease;
}
.chip:hover{background:rgba(13,148,136,.12)}

/* ================================
   ABOUT US / OUR STORY
   ================================ */
.about-section{
  padding:100px 0;
  background:linear-gradient(180deg, var(--bg) 0%, rgba(26,58,82,.03) 40%, var(--bg) 100%);
  position:relative;
  overflow:hidden;
}
.about-section::before{
  content:'';
  position:absolute;
  top:60px;
  right:-120px;
  width:400px;
  height:400px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(13,148,136,.06) 0%, transparent 70%);
  pointer-events:none;
}
.about-section::after{
  content:'';
  position:absolute;
  bottom:40px;
  left:-80px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(74,124,158,.05) 0%, transparent 70%);
  pointer-events:none;
}
.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
}
.about-kicker{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
}
.about-heading{
  font-family:var(--font-heading);
  font-size:40px;
  font-weight:400;
  line-height:1.15;
  letter-spacing:-0.5px;
  color:var(--primary);
  margin:0 0 24px;
}
.about-text{
  font-size:16px;
  line-height:1.8;
  color:rgba(44,36,32,.68);
  margin:0 0 16px;
  max-width:58ch;
}
.about-values{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:28px;
}
.about-value{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 18px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  transition:all .3s ease;
}
.about-value:hover{
  box-shadow:0 12px 32px rgba(26,58,82,.07);
  transform:translateY(-2px);
  border-color:rgba(13,148,136,.2);
}
.about-value-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(13,148,136,.1), rgba(13,148,136,.04));
  border:1px solid rgba(13,148,136,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:var(--accent);
}
.about-value b{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:3px;
}
.about-value span{
  font-size:13.5px;
  color:rgba(44,36,32,.6);
  line-height:1.5;
}
.about-signature{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid var(--border);
}
.about-signature-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), #2a5a7a);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.85);
  flex-shrink:0;
}
.about-signature-name{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--primary);
}
.about-signature-role{
  font-size:13px;
  color:rgba(44,36,32,.55);
  font-weight:500;
}

/* About Visual / Collage */
.about-visual{
  position:relative;
}
.about-collage{
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:180px 180px;
  gap:12px;
}
.about-img{
  background-size:cover;
  background-position:center;
  border-radius:var(--radius);
  box-shadow:0 12px 36px rgba(26,58,82,.08);
  transition:transform .4s ease, box-shadow .4s ease;
  overflow:hidden;
}
.about-img:hover{
  transform:scale(1.03);
  box-shadow:0 20px 48px rgba(26,58,82,.12);
}
.about-img-1{
  grid-column:1 / 2;
  grid-row:1 / 3;
  min-height:372px;
}
.about-img-2{
  grid-column:2 / 3;
  grid-row:1 / 2;
}
.about-img-3{
  grid-column:2 / 3;
  grid-row:2 / 3;
}
.about-stats-row{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.about-stat{
  text-align:center;
  padding:20px 12px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  transition:all .3s ease;
}
.about-stat:hover{
  box-shadow:0 8px 24px rgba(26,58,82,.06);
  transform:translateY(-2px);
}
.about-stat-num{
  display:block;
  font-family:var(--font-heading);
  font-size:28px;
  font-weight:400;
  color:var(--primary);
  letter-spacing:-0.5px;
  line-height:1.1;
}
.about-stat-label{
  display:block;
  font-size:12px;
  font-weight:700;
  color:rgba(44,36,32,.55);
  margin-top:4px;
  letter-spacing:.2px;
}

/* About Responsive */
@media (max-width:980px){
  .about-grid{grid-template-columns:1fr; gap:40px}
  .about-heading{font-size:34px}
  .about-collage{grid-template-rows:160px 160px}
  .about-img-1{min-height:332px}
}
@media (max-width:640px){
  .about-section{padding:64px 0}
  .about-heading{font-size:28px}
  .about-text{font-size:15px}
  .about-collage{grid-template-columns:1fr 1fr; grid-template-rows:140px 140px}
  .about-img-1{min-height:292px}
  .about-stats-row{grid-template-columns:repeat(3, 1fr); gap:8px}
  .about-stat{padding:16px 8px}
  .about-stat-num{font-size:22px}
  .about-value{padding:14px}
}

.mini{
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.mini:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(26,58,82,.08);
}
.navlinks a{
  transition: color 0.2s ease, background 0.2s ease;
}
.navlinks a:hover{
  background:rgba(13,148,136,.08);
  color:var(--primary);
}
.thumb{
  transition: transform 0.5s ease;
  overflow:hidden;
}
.card:hover .thumb{
  transform:scale(1.04);
}
.modalBack{
  animation:fadeIn 0.3s ease-out;
  backdrop-filter:blur(6px);
}
.modal{
  animation:heroFadeIn 0.4s ease-out;
}
.cta{
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.cta:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(26,58,82,.08);
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr; gap:18px; align-items:start}
  .heroMain{height:auto}
  .collage{margin-top:18px; flex:0}
  .hero-dest-grid{gap:8px}
  .hero-dest-large{grid-row:auto}
  .hero-trust{gap:6px}
  .trust-bar{gap:5px}
  .trust-item{min-width:100px; padding:8px 10px}
  .why{grid-template-columns:1fr}
  .bullets{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr 1fr; gap:24px}
  .testi{grid-template-columns:1fr 1fr}
  h1, .hero-card-heading{font-size:38px}
  section{padding:60px 0}
  .sectionHead{margin-bottom:40px}
  .sectionHead h2{font-size:32px}
  /* Tablet search widget */
  .search-widget{grid-template-columns:repeat(2, 1fr); gap:14px}
  .search-widget .btn.primary{grid-column:1/-1; width:100%}
}
@media (max-width: 640px){
  body{padding-top:70px}
  .wrap{padding:0 20px}
  .nav{padding:16px 0}
  .brand span{display:none}
  .logo{width:36px; height:36px}
  .menu-toggle{display:flex; align-items:center; justify-content:center; width:44px; height:44px; border:1px solid var(--border); background:rgba(0,0,0,.04); border-radius:12px; font-size:24px; cursor:pointer; font-weight:900; order:2}
  .navlinks{position:fixed; top:70px; left:0; right:0; background:var(--panel); border-bottom:1px solid var(--border); flex-direction:column; padding:16px; gap:8px; box-shadow:0 4px 12px rgba(0,0,0,.1); display:none; z-index:40}
  .navlinks.active{display:flex}
  .navlinks a{width:100%; padding:14px 16px; font-size:16px; text-align:center; border-radius:12px; background:rgba(0,0,0,.02)}
  .actions{gap:8px}
  .actions .btn{padding:12px 14px; font-size:14px}
  .grid3,.grid2{grid-template-columns:1fr; gap:20px}
  .bullets{grid-template-columns:1fr}
  .testi{grid-template-columns:1fr}
  .row2{grid-template-columns:1fr}
  h1, .hero-card-heading{font-size:32px; line-height:1.15}
  .sub{font-size:15px}
  .cta{flex-direction:column; align-items:flex-start; padding:32px}
  .cta h3{font-size:24px}
  .cta p{font-size:16px}
  .filters{flex-direction:column; width:100%}
  .filters input,.filters select{width:100%; min-width:100%}
  .sectionHead{flex-direction:column; align-items:flex-start; margin-bottom:32px}
  .sectionHead h2{font-size:28px}
  .sectionHead p{font-size:16px}
  .miniRow .btn.primary{font-size:15px; padding:13px 20px}
  .footgrid{grid-template-columns:1fr; gap:32px}
  .hero-premium{min-height:100svh}
  .hero-headline{font-size:42px}
  .hero-subheadline{font-size:17px}
  .hero-ctas{flex-direction:column; width:100%}
  .hero-primary,.hero-secondary{width:100%}
  section{padding:48px 0}
  .pad{padding:20px}
  .bullet{padding:24px}
  .badgeBox{padding:24px}
  .quote{padding:24px}
  details{padding:20px 24px}
  .collage{grid-template-columns:1fr 1fr; gap:12px}
  .collage-item{min-height:140px}
  .hero-dest-grid{grid-template-columns:1fr 1fr; gap:8px}
  .hero-dest-large{grid-row:auto}
  .hero-trust{gap:6px}
  .hero-btn-row{flex-direction:column}
  .hero-btn-row .btn,
  .hero-btn-row .hero-wa-btn{width:100%; text-align:center; justify-content:center}
  .trust-bar{flex-direction:column; gap:4px}
  .trust-item{min-width:100%}
  .form-header-icon{width:36px; height:36px; border-radius:10px}
  /* Mobile search widget */
  .search-widget{display:grid; grid-template-columns:1fr; gap:12px; padding:0 20px}
  .search-widget .btn.primary{width:100%}
  .search-widget-section{padding:32px 0}
}


.testi-carousel{position:relative; padding:0 52px}
.testi-track{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:4px 0 12px;
}
.testi-track::-webkit-scrollbar{display:none}
.quote{
  min-width:calc((100% - 40px) / 3);
  max-width:calc((100% - 40px) / 3);
  flex-shrink:0;
  scroll-snap-align:start;
}
.quote-header{display:flex; gap:12px; align-items:center; margin-bottom:12px}
.reviewer-img{width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; border:2px solid var(--accent)}
.stars{font-size:14px; margin-top:8px}
.carousel-btn{position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; border-radius:50%; border:1px solid var(--border); background:var(--card); cursor:pointer; font-size:20px; font-weight:900; color:var(--accent-text); box-shadow:0 4px 12px rgba(26,58,82,.08); transition:all 0.3s ease; z-index:2; touch-action:manipulation}
.carousel-btn:hover{background:var(--accent); color:#fff; transform:translateY(-50%) scale(1.1)}
.carousel-btn.prev{left:0}
.carousel-btn.next{right:0}

@media (max-width: 980px){
  .quote{min-width:calc((100% - 20px) / 2); max-width:calc((100% - 20px) / 2)}
}
@media (max-width: 640px){
  .quote{min-width:100%; max-width:100%}
  .testi-carousel{padding:0 44px}
}


/* Chat Widget */
.menu-toggle{display:none}
.chat-widget{position:fixed; bottom:24px; right:24px; z-index:60; cursor:pointer}
.chat-bubble{width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg, var(--accent), var(--accent2)); box-shadow:0 8px 24px rgba(13,148,136,.28); display:flex; align-items:center; justify-content:center; font-size:28px; transition:all 0.3s ease; touch-action:manipulation}
.chat-bubble:hover{transform:scale(1.1); box-shadow:0 12px 32px rgba(13,148,136,.35)}
.chat-tooltip{position:absolute; bottom:75px; right:0; background:var(--card); border:1px solid var(--border); border-radius:12px; padding:10px 14px; font-size:14px; font-weight:700; white-space:nowrap; box-shadow:0 4px 12px rgba(26,58,82,.08); opacity:0; pointer-events:none; transition:opacity 0.3s ease}
.chat-widget:hover .chat-tooltip{opacity:1}

/* Image Optimization */
.thumb{will-change:transform; background-size:cover; background-position:center}
.card img,.thumb{content-visibility:auto}

@media (max-width: 640px){
  .chat-bubble{width:60px; height:60px; font-size:26px}
  .chat-widget{bottom:80px; right:20px}
  .chat-tooltip{font-size:13px; padding:8px 12px}
}

/* === Section Visual Separation === */
section#destinations{
  padding:100px 0;
  background:linear-gradient(180deg, var(--bg) 0%, rgba(26,58,82,.02) 50%, var(--bg) 100%);
}
section#why{
  padding:80px 0;
  background:var(--bg);
}
section#reviews{
  padding:80px 0;
  background:linear-gradient(180deg, rgba(13,148,136,.02) 0%, var(--bg) 100%);
}
section#faq{
  padding:80px 0;
}
section#contact{
  padding:80px 0;
  background:linear-gradient(180deg, var(--bg) 0%, rgba(26,58,82,.03) 100%);
}

/* Section divider line */
.section-divider{
  width:60px;
  height:2px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius:2px;
  margin:0 0 16px;
}

/* === Stats / Social Proof Section === */
.stats-section{
  padding:64px 0;
  background:var(--primary);
  color:#ffffff;
  position:relative;
  overflow:hidden;
}
.stats-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(13,148,136,.12), transparent),
    radial-gradient(400px 200px at 80% 50%, rgba(74,124,158,.10), transparent);
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  position:relative;
  z-index:1;
  text-align:center;
}
.stat-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.stat-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:8px;
}
.stat-icon svg{
  width:24px;
  height:24px;
  stroke:var(--accent);
  fill:none;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.stat-number{
  font-family:var(--font-heading);
  font-size:42px;
  font-weight:400;
  letter-spacing:-1px;
  line-height:1;
  color:#ffffff;
}
.stat-label{
  font-size:14px;
  font-weight:500;
  color:rgba(255,255,255,.7);
  letter-spacing:.3px;
}

@media (max-width:980px){
  .stats-grid{grid-template-columns:repeat(2, 1fr); gap:40px 24px}
}
@media (max-width:640px){
  .stats-grid{grid-template-columns:repeat(2, 1fr); gap:32px 16px}
  .stat-number{font-size:34px}
  .stats-section{padding:48px 0}
}

/* === Refined Search Widget === */
.search-widget-section{
  padding:48px 0;
  background:var(--panel);
  border-top:1px solid var(--border);
  box-shadow:0 8px 40px rgba(26,58,82,.04);
  position:relative;
  z-index:5;
  margin-top:-40px;
  border-radius:24px 24px 0 0;
}

/* === Premium Testimonials === */
.quote{
  padding:32px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--border);
  position:relative;
}
.quote::before{
  content:'\201C';
  position:absolute;
  top:16px;
  right:24px;
  font-family:var(--font-heading);
  font-size:64px;
  line-height:1;
  color:rgba(13,148,136,.12);
  pointer-events:none;
}
.stars-premium{
  display:flex;
  gap:3px;
  margin-top:12px;
}
.stars-premium svg{
  width:16px;
  height:16px;
  fill:var(--accent);
}
.rating-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(13,148,136,.06);
  border:1px solid rgba(13,148,136,.15);
  font-weight:700;
  font-size:14px;
  color:var(--primary);
}

/* === Contact Card Icons === */
.contact-icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(13,148,136,.08), rgba(13,148,136,.04));
  border:1px solid rgba(13,148,136,.15);
  margin-bottom:16px;
}
.contact-icon svg{
  width:24px;
  height:24px;
  stroke:var(--accent);
  fill:none;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* === Premium Footer === */
footer{
  padding:80px 0 40px;
  border-top:none;
  background:var(--primary);
  color:rgba(255,255,255,.85);
  margin-top:0;
}
.footgrid{display:grid; grid-template-columns:1.4fr 1fr .8fr; gap:48px}
.footgrid a{color:rgba(255,255,255,.7); text-decoration:none; transition:color .2s ease}
.footgrid a:hover{color:var(--accent); text-decoration:none}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.footer-brand .logo{
  background-image:url('./logo/logo.png');
  background-size:cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.footer-brand b{
  font-size:18px;
  font-family:var(--font-heading);
  color:#ffffff;
  font-weight:400;
  letter-spacing:.3px;
}
.footer-desc{
  font-size:14px;
  color:rgba(255,255,255,.6);
  line-height:1.7;
  margin:0 0 20px;
  max-width:36ch;
}
.footer-social{
  display:flex;
  gap:12px;
}
.footer-social a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition:all .2s ease;
}
.footer-social a:hover{
  background:rgba(13,148,136,.15);
  border-color:rgba(13,148,136,.3);
}
.footer-social svg{
  width:18px;
  height:18px;
  fill:rgba(255,255,255,.7);
}
.footer-social a:hover svg{
  fill:var(--accent);
}
.footer-heading{
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin:0 0 16px;
}
.footer-links{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  font-size:14px;
  font-weight:500;
}
.footer-bottom{
  margin-top:48px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}
.footer-bottom p{
  font-size:13px;
  color:rgba(255,255,255,.45);
  margin:0;
}
.footer-legal{
  display:flex;
  gap:16px;
}
.footer-legal a{
  font-size:13px;
  color:rgba(255,255,255,.45);
}
.footer-legal a:hover{
  color:var(--accent);
}

@media (max-width:980px){
  .footgrid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .footgrid{grid-template-columns:1fr; gap:32px}
  footer{padding:56px 0 32px}
  .footer-bottom{flex-direction:column; align-items:flex-start}
}

/* === Back to Top === */
.back-to-top{
  position:fixed;
  bottom:24px;
  right:100px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--panel);
  border:1px solid var(--border);
  box-shadow:0 4px 16px rgba(26,58,82,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:all .3s ease;
  z-index:55;
}
.back-to-top.visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.back-to-top:hover{
  background:var(--accent);
  border-color:var(--accent);
  box-shadow:0 8px 24px rgba(13,148,136,.2);
}
.back-to-top svg{
  width:20px;
  height:20px;
  stroke:var(--primary);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.back-to-top:hover svg{
  stroke:#ffffff;
}
@media (max-width:640px){
  .back-to-top{bottom:20px; right:84px; width:44px; height:44px}
}

/* === Prefers Reduced Motion === */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
  .reveal{
    opacity:1 !important;
    transform:none !important;
  }
  .hero-content{animation:none}
  .hero-scroll{animation:none}
}

/* Section-specific spacing */
section#quick-form{padding:36px 0}

/* Reduce repeated dividers in certain areas */
.why .hr{display:none}

/* Slight asymmetry to avoid perfect vertical rhythm */
section:nth-of-type(odd) .wrap{padding-top:8px; padding-bottom:0}
section:nth-of-type(even) .wrap{padding-top:0; padding-bottom:8px}

/* === FAQ Premium Arrow === */
summary::after{
  content:'';
  width:20px;
  height:20px;
  margin-left:auto;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a3a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  transition:transform .3s ease;
  flex-shrink:0;
}
details[open] summary::after{
  transform:rotate(180deg);
}

/* ================================
   PACKAGES PAGE
   ================================ */
.packages-hero{
  padding:64px 0;
  background:linear-gradient(135deg, rgba(26,58,82,.08) 0%, rgba(13,148,136,.04) 100%);
  border-bottom:1px solid var(--border);
}
.packages-hero h1{
  font-family:var(--font-heading);
  font-size:48px;
  font-weight:400;
  letter-spacing:-0.5px;
  margin:0 0 12px;
  color:var(--primary);
}
.packages-hero p{
  font-size:18px;
  color:rgba(44,36,32,.65);
  max-width:70ch;
  margin:0;
}

/* Filter Panel */
.filter-panel{
  padding:32px 0;
  border-bottom:1px solid var(--border);
  background:var(--panel);
}
.filter-controls{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:16px;
  max-width:1140px;
  margin:0 auto;
}
.filter-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.filter-group label{
  font-weight:800;
  font-size:12px;
  color:var(--primary);
  letter-spacing:.2px;
  text-transform:uppercase;
}
.filter-group select{
  background:var(--card);
  border:1px solid var(--border);
  color:var(--text);
  padding:12px 14px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  outline:none;
  min-height:44px;
  cursor:pointer;
  transition:all 0.3s ease;
}
.filter-group select:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(13,148,136,.1);
}
.filter-btn{
  display:flex;
  gap:8px;
  align-items:center;
  align-self:flex-end;
}
.filter-btn button{
  padding:12px 16px;
  font-size:14px;
  font-weight:700;
  min-height:44px;
}
.filter-btn .btn-reset{
  background:rgba(0,0,0,.04);
  border:1px solid var(--border);
  color:var(--text);
}

/* Packages Grid */
.packages-section{
  padding:64px 0;
}
.packages-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
  gap:24px;
}
.package-card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:none;
  transition:all 0.4s ease;
  display:flex;
  flex-direction:column;
}
.package-card:hover{
  box-shadow:0 20px 50px rgba(26,58,82,.08);
  transform:translateY(-4px);
}
.package-card.hidden{
  display:none;
}
.package-thumb{
  height:240px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--border);
}
.package-content{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.package-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.package-tag{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(13,148,136,.08);
  border:1px solid rgba(13,148,136,.15);
  color:var(--primary);
}
.package-card h3{
  margin:0 0 12px;
  font-family:var(--font-heading);
  font-size:22px;
  letter-spacing:-0.3px;
  color:var(--primary);
  font-weight:400;
  line-height:1.3;
}
.package-card p{
  margin:0 0 16px;
  color:rgba(44,36,32,.65);
  font-weight:400;
  font-size:15px;
  line-height:1.7;
  flex:1;
}
.package-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:16px;
  border-top:1px solid var(--border);
}
.package-price{
  display:flex;
  flex-direction:column;
}
.package-price-label{
  font-size:12px;
  color:rgba(44,36,32,.65);
  font-weight:700;
}
.package-price-value{
  font-size:20px;
  font-weight:700;
  color:var(--primary);
}
.package-duration{
  font-size:13px;
  font-weight:600;
  color:rgba(44,36,32,.65);
}
.package-card .btn{
  margin:0 -24px -24px;
  margin-top:auto;
  padding:14px 24px;
  border-radius:0;
  width:calc(100% + 48px);
  text-align:center;
}

/* No Results */
.no-results{
  text-align:center;
  padding:60px 32px;
  color:rgba(44,36,32,.65);
}
.no-results h3{
  font-size:24px;
  margin:0 0 12px;
  color:var(--primary);
}

/* Packages Responsive */
@media (max-width: 980px){
  .packages-hero h1{font-size:38px}
  .filter-controls{grid-template-columns:repeat(auto-fit, minmax(160px, 1fr))}
  .packages-grid{grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:20px}
}
@media (max-width: 640px){
  .packages-hero{padding:40px 0}
  .packages-hero h1{font-size:32px}
  .filter-controls{grid-template-columns:1fr; gap:12px; padding:0 20px}
  .filter-btn{width:100%; flex-direction:column}
  .filter-btn button{width:100%}
  .packages-grid{grid-template-columns:1fr; gap:16px}
  .packages-section{padding:40px 0}
  .package-card .btn{margin:0 -20px -20px; width:calc(100% + 40px); padding:12px 20px}
  .package-content{padding:20px}
}

/* ================================
   DESTINATIONS PAGE
   ================================ */
.dest-hero{
  padding:64px 0;
  background:linear-gradient(135deg, rgba(26,58,82,.08) 0%, rgba(13,148,136,.04) 100%);
  border-bottom:1px solid var(--border);
}
.dest-hero h1{
  font-family:var(--font-heading);
  font-size:48px;
  font-weight:400;
  letter-spacing:-0.5px;
  margin:0 0 12px;
  color:var(--primary);
}
.dest-hero p{
  font-size:18px;
  color:rgba(44,36,32,.65);
  max-width:70ch;
  margin:0;
}

/* Filter Dropdowns */
.dest-filters{
  padding:24px 0;
  border-bottom:1px solid var(--border);
  background:var(--panel);
}
.dest-filter-row{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:flex-end;
}
.dest-filter-group{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:200px;
  flex:1;
  max-width:300px;
}
.dest-filter-group label{
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted, #888);
  font-family:var(--font);
}
.dest-select{
  padding:10px 36px 10px 14px;
  border:1px solid var(--border);
  background:var(--card);
  border-radius:10px;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  cursor:pointer;
  transition:all .25s ease;
  font-family:var(--font);
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
}
.dest-select:hover{
  border-color:var(--accent);
}
.dest-select:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(13,148,136,.12);
}
.dest-select:disabled{
  opacity:.5;
  cursor:not-allowed;
}

/* Country Sections */
.dest-country-section{
  padding:48px 0 24px;
}
.dest-country-section + .dest-country-section{
  border-top:1px solid var(--border);
}
.dest-country-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
}
.dest-country-head h2{
  font-family:var(--font-heading);
  font-size:32px;
  font-weight:400;
  color:var(--primary);
  margin:0;
}
.dest-country-tag{
  font-size:12px;
  font-weight:700;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(13,148,136,.1);
  border:1px solid rgba(13,148,136,.18);
  color:var(--accent-text);
  text-transform:uppercase;
  letter-spacing:.3px;
}

/* Destination Grid */
.dest-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:24px;
}

/* Destination Card */
.dest-card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  overflow:hidden;
  transition:all .4s ease;
  display:flex;
  flex-direction:column;
}
.dest-card:hover{
  box-shadow:0 16px 48px rgba(26,58,82,.09);
  transform:translateY(-4px);
}
.dest-thumb{
  height:220px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--border);
  position:relative;
}

/* Price badge overlay on thumbnail */
.dest-price-badge{
  position:absolute;
  bottom:12px;
  left:12px;
  background:linear-gradient(135deg, rgba(15,32,39,.92), rgba(13,59,62,.88));
  color:#fff;
  padding:8px 14px;
  border-radius:10px;
  font-size:16px;
  font-weight:800;
  letter-spacing:-.2px;
  line-height:1;
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 4px 16px rgba(0,0,0,.25);
  z-index:2;
}
.dest-price-badge small{
  font-size:11px;
  font-weight:600;
  opacity:.75;
  margin-left:2px;
}
.dest-card:hover .dest-price-badge{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border-color:rgba(255,255,255,.2);
  box-shadow:0 6px 20px rgba(13,148,136,.35);
}
.dest-info{
  padding:24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.dest-info h3{
  margin:0 0 8px;
  font-family:var(--font-heading);
  font-size:24px;
  font-weight:400;
  color:var(--primary);
  letter-spacing:-0.3px;
}
.dest-info p{
  margin:0 0 14px;
  color:rgba(44,36,32,.65);
  font-size:15px;
  line-height:1.7;
  flex:1;
}
.dest-meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.dest-pill{
  font-size:11px;
  font-weight:800;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(26,58,82,.05);
  border:1px solid var(--border);
  color:var(--primary);
  letter-spacing:.1px;
}
.dest-cta{
  margin-top:auto;
  text-align:center;
  padding:12px 20px;
  font-size:14px;
}

/* Dual button row */
.dest-btn-row{
  display:flex;
  gap:10px;
  margin-top:auto;
}
.dest-btn-row .dest-view-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:11px 14px;
  font-size:13.5px;
  font-weight:700;
  border:2px solid var(--accent);
  background:transparent;
  color:var(--accent-text);
  border-radius:14px;
  cursor:pointer;
  transition:all .25s ease;
  font-family:var(--font);
  white-space:nowrap;
}
.dest-btn-row .dest-view-btn:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 4px 14px rgba(13,148,136,.2);
}
.dest-btn-row .dest-cta{
  flex:1;
  margin-top:0;
  padding:11px 14px;
  font-size:13.5px;
  white-space:nowrap;
}
/* Legacy dest-view-details (replaced by .dest-btn-row .dest-view-btn) */

/* CTA Banner */
.dest-cta-banner{
  padding:64px 0;
  text-align:center;
  background:linear-gradient(135deg, var(--primary) 0%, #2a5a7a 100%);
  color:#fff;
}
.dest-cta-banner h2{
  font-family:var(--font-heading);
  font-size:36px;
  font-weight:400;
  margin:0 0 12px;
  color:#fff;
}
.dest-cta-banner p{
  font-size:17px;
  color:rgba(255,255,255,.75);
  margin:0 0 28px;
  max-width:50ch;
  margin-left:auto;
  margin-right:auto;
}
.dest-cta-banner .btn.primary{
  background:#fff;
  color:var(--primary);
  border-color:#fff;
}
.dest-cta-banner .btn.primary:hover{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

/* Nav active link */
.navlinks a.active{
  color:var(--primary);
}

/* ── Destination Detail Modal ── */
.dd-backdrop{
  position:fixed; inset:0; z-index:2000;
  background:rgba(10,20,30,.55);
  backdrop-filter:blur(6px);
  display:flex; align-items:stretch; justify-content:stretch;
  opacity:0; transition:opacity .3s ease;
  padding:0;
}
.dd-backdrop.active{opacity:1}
.dd-modal{
  position:relative;
  background:#fff;
  border-radius:0;
  width:100%; height:100%;
  max-width:100%; max-height:100vh;
  overflow-y:auto;
  box-shadow:none;
  transform:translateY(24px);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
}
.dd-backdrop.active .dd-modal{
  transform:translateY(0);
}
.dd-close{
  position:sticky; top:12px; float:right; margin:12px 12px 0 0;
  width:36px; height:36px; border-radius:50%;
  border:none; cursor:pointer; z-index:10;
  background:rgba(0,0,0,.45); color:#fff;
  font-size:16px; display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.dd-close:hover{background:rgba(0,0,0,.7)}

/* Hero image */
.dd-hero{
  position:relative;
  height:45vh;
  min-height:280px;
  max-height:480px;
  border-radius:0;
  background-size:cover; background-position:center;
  overflow:hidden;
}
.dd-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,20,30,.8) 0%, transparent 55%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px 32px;
}
.dd-hero-overlay h2{
  font-family:var(--font-heading);
  font-size:36px; font-weight:500;
  color:#fff; margin:0 0 4px; line-height:1.15;
}
.dd-tagline{
  font-size:15px; color:rgba(255,255,255,.8);
  margin:0; font-style:italic;
}

/* Quick info bar */
.dd-quick{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-bottom:1px solid #eee;
}

/* Price banner in detail modal */
.dd-price-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 32px;
  background:linear-gradient(135deg, rgba(13,148,136,.06), rgba(13,148,136,.03));
  border-bottom:1px solid rgba(13,148,136,.15);
}
.dd-price-main{
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-shrink:0;
}
.dd-price-label{
  font-size:13px;
  font-weight:600;
  color:#888;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.dd-price-value{
  font-family:var(--font-heading);
  font-size:28px;
  font-weight:500;
  color:var(--primary);
  letter-spacing:-.5px;
}
.dd-price-note{
  font-size:13px;
  color:rgba(44,36,32,.55);
  line-height:1.4;
  max-width:32ch;
  text-align:right;
}
.dd-quick-item{
  display:flex; align-items:center; gap:10px;
  padding:18px 16px;
  border-right:1px solid #eee;
}
.dd-quick-item:last-child{border-right:none}
.dd-quick-item svg{
  width:20px; height:20px; flex-shrink:0;
  stroke:var(--accent); fill:none; stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}
.dd-quick-label{
  display:block; font-size:11px; text-transform:uppercase;
  letter-spacing:.6px; color:#888; margin-bottom:2px;
}
.dd-quick-value{
  display:block; font-size:14px; font-weight:600;
  color:var(--primary); line-height:1.3;
}

/* Content sections */
.dd-body{padding:0; max-width:960px; margin:0 auto}
.dd-sections{
  display:grid; grid-template-columns:1fr 1fr;
  gap:0; padding:28px 32px 20px;
}
.dd-section{
  padding:0 16px 24px 0;
}
.dd-section:nth-child(even){padding:0 0 24px 16px}
.dd-section-full{
  grid-column:1/-1;
  padding:0 0 24px 0;
  border-top:1px solid #eee;
  padding-top:20px;
}
.dd-section h3{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-heading);
  font-size:20px; font-weight:500;
  color:var(--primary); margin:0 0 14px;
}
.dd-section h3 svg{
  width:18px; height:18px;
  stroke:var(--accent); fill:none; stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}
.dd-section ul{
  list-style:none; margin:0; padding:0;
}
.dd-section ul li{
  position:relative;
  padding:6px 0 6px 20px;
  font-size:14.5px; color:#444;
  line-height:1.5;
}
.dd-section ul li::before{
  content:'';
  position:absolute; left:0; top:13px;
  width:7px; height:7px;
  border-radius:50%;
  background:var(--accent);
}
.dd-section p{
  font-size:14.5px; color:#444;
  line-height:1.7; margin:0;
}

/* CTA bar */
.dd-cta-bar{
  display:flex; gap:12px;
  padding:20px 32px 28px;
  border-top:1px solid #eee;
}
.dd-enquire-btn{
  display:flex; align-items:center; gap:8px;
  flex:1; justify-content:center;
}
.dd-enquire-btn svg{
  width:18px; height:18px;
  fill:#fff; stroke:none;
}
.dd-packages-btn{
  flex:1; text-align:center;
  background:transparent; color:var(--primary);
  border:2px solid var(--primary);
}
.dd-packages-btn:hover{
  background:var(--primary); color:#fff;
}

/* Destinations Responsive */
@media (max-width:980px){
  .dest-hero h1{font-size:38px}
  .dest-country-head h2{font-size:26px}
  .dest-grid{grid-template-columns:repeat(auto-fill, minmax(260px, 1fr)); gap:20px}
  .dd-quick{grid-template-columns:repeat(2,1fr)}
  .dd-quick-item:nth-child(2){border-right:none}
  .dd-quick-item:nth-child(n+3){border-top:1px solid #eee}
  .dd-price-banner{padding:16px 24px}
  .dd-price-value{font-size:24px}
}
@media (max-width:640px){
  .dest-hero{padding:40px 0}
  .dest-hero h1{font-size:30px}
  .dest-filter-row{flex-direction:column; gap:12px}
  .dest-filter-group{max-width:100%; min-width:0}
  .dest-grid{grid-template-columns:1fr; gap:16px}
  .dest-country-section{padding:32px 0 16px}
  .dest-country-head{flex-direction:column; align-items:flex-start; gap:8px}
  .dest-cta-banner{padding:48px 0}
  .dest-cta-banner h2{font-size:28px}
  .dest-btn-row{flex-direction:column; gap:8px}
  .dest-btn-row .dest-view-btn,
  .dest-btn-row .dest-cta{width:100%; flex:auto}
  .dest-price-badge{font-size:14px; padding:6px 10px}
  .dest-price-badge small{font-size:10px}

  /* Modal mobile */
  .dd-backdrop{padding:0}
  .dd-modal{max-height:100vh; border-radius:0; max-width:100%; width:100%}
  .dd-hero{height:200px; border-radius:0}
  .dd-hero-overlay h2{font-size:26px}
  .dd-hero-overlay{padding:20px}
  .dd-price-banner{flex-direction:column; gap:8px; padding:14px 20px; text-align:left}
  .dd-price-value{font-size:22px}
  .dd-price-note{text-align:left; max-width:none}
  .dd-quick{grid-template-columns:1fr 1fr}
  .dd-quick-item{padding:14px 12px}
  .dd-sections{grid-template-columns:1fr; padding:20px 20px 12px}
  .dd-section, .dd-section:nth-child(even){padding:0 0 20px 0}
  .dd-section:nth-child(n+2){border-top:1px solid #f0f0f0; padding-top:16px}
  .dd-section-full{padding-top:16px}
  .dd-cta-bar{flex-direction:column; padding:16px 20px 24px}
}

/* ==============================================
   URGENCY / HIGHLIGHT SYSTEM  (--highlight)
   ============================================== */

/* ─── Urgency Badge (overlay on cards) ─── */
.badge-urgent,
.badge-popular,
.badge-deal{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:999px;
  color:#ffffff;
  white-space:nowrap;
}
.badge-urgent{
  background:var(--highlight);
  box-shadow:0 4px 14px rgba(224,122,95,.30);
}
.badge-popular{
  background:linear-gradient(135deg, var(--highlight), #c96b50);
  box-shadow:0 4px 14px rgba(224,122,95,.25);
}
.badge-deal{
  background:linear-gradient(135deg, #e07a5f, #d4622a);
  box-shadow:0 4px 14px rgba(224,122,95,.25);
}

/* ─── Highlight Pill (for dest-pill variant) ─── */
.dest-pill.highlight{
  background:rgba(224,122,95,.10);
  border-color:rgba(224,122,95,.25);
  color:#b5533d;
}

/* ─── Highlight Chip (inline usage) ─── */
.chip.highlight{
  background:rgba(224,122,95,.08);
  border:1px solid rgba(224,122,95,.18);
  color:#b5533d;
}

/* ─── Highlight CTA Button ─── */
.btn.highlight{
  border:none;
  background:linear-gradient(135deg, var(--highlight), #c96b50);
  box-shadow:0 16px 36px rgba(224,122,95,.22);
  color:#ffffff;
}
.btn.highlight:hover{
  filter:saturate(1.1) brightness(1.05);
}

/* ─── Pulsing dot for "Selling Fast" / "Limited" ─── */
.badge-urgent::before,
.badge-popular::before{
  content:'';
  width:6px;
  height:6px;
  border-radius:50%;
  background:#ffffff;
  animation:urgencyPulse 1.8s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes urgencyPulse{
  0%,100%{opacity:1; transform:scale(1)}
  50%{opacity:.5; transform:scale(1.4)}
}
