:root{
  --bg:#071311;
  --panel:#0d1f20;
  --panel-2:#132b2e;
  --ink:#2f2d2d;
  --stroke:rgba(255,255,255,0.12);
  --text:#ffffff;
  --muted:rgba(255,255,255,0.78);
  --muted-2:rgba(255,255,255,0.64);
  --accent:#F37401;
  --gold:#f0c56e;
  --glacier:#76d0cf;
  --fern:#8fd05f;
  --shadow:0 20px 70px rgba(0,0,0,0.42);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:linear-gradient(135deg, rgba(118,208,207,0.08), transparent 34%),
  linear-gradient(315deg, rgba(243,116,1,0.10), transparent 42%),
  var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

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

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* NAVBAR */

nav{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  background:rgba(5,13,14,0.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--stroke);
}

.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.logo-mark{
  width:300px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:7px 14px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:8px;
  background:linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
  box-shadow:0 14px 34px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(243,116,1,0.10);
  position:relative;
  overflow:hidden;
}

.logo-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 3px 5px rgba(0,0,0,0.16));
}

.logo-copy{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.logo-copy strong{
  font-size:13px;
  letter-spacing:0.14em;
  text-transform:uppercase;
}

.logo-copy span{
  color:var(--muted-2);
  font-size:11px;
  letter-spacing:0.10em;
  text-transform:uppercase;
}

.menu{
  display:flex;
  gap:35px;
  align-items:center;
}

.menu a{
  color:rgba(255,255,255,0.82);
  font-size:15px;
  transition:0.3s;
  font-weight:600;
}

.menu a:hover{
  color:var(--glacier);
}

.btn{
  padding:14px 28px;
  background:linear-gradient(135deg, var(--accent), #ff9d3d);
  color:#101010;
  border-radius:8px;
  font-weight:700;
  transition:0.4s;
  display:inline-block;
  box-shadow:0 12px 34px rgba(243,116,1,0.30);
  border:0;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-4px);
}

.btn.btn-dark{
  background:rgba(255,255,255,0.10);
  color:#fff;
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:none;
  backdrop-filter:blur(10px);
}

.btn.btn-dark:hover{
  background:rgba(255,255,255,0.16);
}

.nav-cta-hidden{
  display:none;
}

.inline-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.section-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.section-actions.centered{
  margin-top:22px;
  justify-content:center;
}

.cta-inner{
  padding:90px 0;
}

/* HERO */

.hero{
  min-height:100vh;
  background:linear-gradient(90deg, rgba(4,11,12,0.92) 0%, rgba(4,11,12,0.66) 48%, rgba(4,11,12,0.28) 100%),
  url('https://images.unsplash.com/photo-1507699622108-4be3abd695ad?q=80&w=2070&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  position:relative;
  padding:124px 0 72px;
  isolation:isolate;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:34%;
  background:linear-gradient(0deg, var(--bg), transparent);
  z-index:-1;
}

.hero-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 370px;
  gap:42px;
  align-items:center;
}

.hero-content{
  max-width:760px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.86);
  font-size:12px;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-kicker::before{
  content:"";
  width:42px;
  height:2px;
  background:linear-gradient(90deg, var(--accent), var(--glacier));
}

.hero h1{
  font-size:82px;
  line-height:1;
  margin-bottom:25px;
  font-weight:800;
  text-transform:uppercase;
  max-width:840px;
}

.hero h1 span{
  color:var(--accent);
}

.hero p{
  font-size:20px;
  line-height:1.8;
  margin-bottom:40px;
  color:#e8e8e8;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.outline-btn{
  border:2px solid rgba(255,255,255,0.4);
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  transition:0.4s;
  font-weight:600;
  display:inline-block;
}

.outline-btn:hover{
  background:#fff;
  color:#000;
}

.brand-showcase{
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.18);
  background:linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
  box-shadow:var(--shadow);
  overflow:hidden;
  backdrop-filter:blur(16px);
}

.brand-showcase .logo-stage{
  min-height:250px;
  display:grid;
  place-items:center;
  padding:30px;
  background:
  linear-gradient(135deg, rgba(255,255,255,0.96), rgba(231,247,244,0.86)),
  linear-gradient(90deg, rgba(243,116,1,0.14), transparent);
}

.brand-showcase img{
  width:100%;
  max-width:300px;
  height:auto;
  filter:drop-shadow(0 16px 24px rgba(47,45,45,0.20));
}

.brand-notes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,0.12);
}

.brand-note{
  padding:16px 14px;
  border-right:1px solid rgba(255,255,255,0.10);
}

.brand-note:last-child{
  border-right:0;
}

.brand-note strong{
  display:block;
  color:#fff;
  font-size:18px;
  line-height:1;
  margin-bottom:5px;
}

.brand-note span{
  color:var(--muted-2);
  font-size:11px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

/* STATS */

.stats{
  margin-top:-44px;
  position:relative;
  z-index:10;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.stat-box{
  background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid var(--stroke);
  box-shadow:0 16px 50px rgba(0,0,0,0.35);
  border-radius:8px;
  padding:35px;
  text-align:center;
  transition:0.4s;
}

.stat-box:hover{
  transform:translateY(-8px);
  background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.stat-box h2{
  font-size:42px;
  color:var(--accent);
  margin-bottom:10px;
}

.stat-box p{
  color:#d8d8d8;
}

/* SECTION */

section{
  padding:110px 0;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:54px;
  margin-bottom:18px;
}

.section-title p{
  color:#cfcfcf;
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.22);
  color:var(--muted);
  margin:0 auto 14px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-size:12px;
}

.eyebrow .dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(180deg, var(--accent), rgba(140,255,0,0.35));
  box-shadow:0 0 0 6px rgba(140,255,0,0.10);
}

/* DESTINATIONS */

.destinations{
  background:
  linear-gradient(135deg, rgba(118,208,207,0.07), transparent 36%),
  linear-gradient(180deg, #081716, #071311);
}

.destination-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.filters{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin:-30px auto 38px;
  max-width:980px;
}

.chip{
  padding:11px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  color:var(--muted);
  cursor:pointer;
  transition:0.25s;
  user-select:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:13px;
}

.chip:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.10);
}

.chip.active{
  border-color:rgba(118,208,207,0.46);
  background:rgba(118,208,207,0.12);
  color:#fff;
}

.card{
  border-radius:8px;
  overflow:hidden;
  position:relative;
  transition:0.5s;
  cursor:pointer;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 26px 70px rgba(0,0,0,0.38);
  transform:translateY(8px);
  opacity:0;
  padding:0;
  width:100%;
  text-align:left;
  color:inherit;
  font:inherit;
  appearance:none;
  -webkit-appearance:none;
}

.card:hover{
  transform:translateY(-10px) scale(1.01);
}

.card img{
  width:100%;
  height:340px;
  object-fit:cover;
  transition:0.5s;
  filter:saturate(1.08) contrast(1.04);
}

.card:hover img{
  transform:scale(1.08);
}

.card-content{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:30px;
  background:linear-gradient(transparent,rgba(0,0,0,0.92));
}

.card-content h3{
  font-size:28px;
  margin-bottom:10px;
}

.card-content p{
  color:#ddd;
  line-height:1.6;
}

.card-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:16px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(0,0,0,0.20);
  color:rgba(255,255,255,0.86);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.02em;
}

.pill .spark{
  width:10px;
  height:10px;
  border-radius:3px;
  background:linear-gradient(180deg, var(--gold), var(--glacier));
  box-shadow:0 0 0 6px rgba(214,192,141,0.12);
}

.hint{
  color:rgba(255,255,255,0.82);
  font-weight:700;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.reveal{
  opacity:1;
  transform:translateY(0);
  transition:transform 700ms cubic-bezier(.2,.85,.2,1), opacity 700ms cubic-bezier(.2,.85,.2,1);
}

/* DESTINATION DETAILS */

.details{
  padding-top:70px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent 55%);
}

.details-shell{
  display:grid;
  grid-template-columns:1.25fr 0.95fr;
  gap:30px;
  align-items:stretch;
}

.details-media{
  border-radius:8px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.03);
  box-shadow:var(--shadow);
  min-height:420px;
}

.details-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.01);
  filter:saturate(1.08) contrast(1.04);
}

.details-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(135deg, rgba(118,208,207,0.12), transparent 46%),
  linear-gradient(0deg, rgba(0,0,0,0.70), rgba(0,0,0,0.08) 55%, rgba(0,0,0,0.0));
}

.details-badge{
  position:absolute;
  top:18px;
  left:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  z-index:2;
}

.details-panel{
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow:var(--shadow);
  padding:34px;
}

.details-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.details-title h3{
  font-size:34px;
  line-height:1.1;
  margin:0;
}

.details-title .lux{
  color:rgba(255,255,255,0.86);
  font-weight:800;
  font-size:12px;
  letter-spacing:0.10em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(214,192,141,0.25);
  background:rgba(214,192,141,0.08);
  white-space:nowrap;
}

.details-panel p{
  color:var(--muted);
  line-height:1.9;
  margin-bottom:22px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-bottom:22px;
}

.feature{
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.18);
}

.feature .k{
  color:rgba(255,255,255,0.76);
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:6px;
  font-weight:800;
}

.feature .v{
  font-weight:700;
  color:#fff;
}

.details-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  margin-top:10px;
}

.details-actions .price-tag{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.details-actions .price-tag small{
  color:rgba(255,255,255,0.70);
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size:11px;
}

.details-actions .price-tag strong{
  color:var(--accent);
  font-size:28px;
}

/* NEWSLETTER */

.newsletter{
  background:
  linear-gradient(135deg, rgba(214,192,141,0.10), transparent 45%),
  linear-gradient(315deg, rgba(118,208,207,0.09), transparent 45%),
  linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  padding:90px 0;
}

.newsletter-box{
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}

.newsletter-inner{
  display:grid;
  grid-template-columns:1.25fr 0.95fr;
  gap:28px;
  padding:42px;
  align-items:center;
}

.newsletter-copy h3{
  font-size:42px;
  margin-bottom:10px;
}

.newsletter-copy p{
  color:var(--muted);
  line-height:1.9;
}

.form-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.input{
  flex:1;
  min-width:220px;
  padding:15px 16px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(0,0,0,0.25);
  color:#fff;
  outline:none;
  transition:0.25s;
}

.input:focus{
  border-color:rgba(118,208,207,0.52);
  box-shadow:0 0 0 6px rgba(118,208,207,0.12);
}

.form-hint{
  margin-top:10px;
  color:rgba(255,255,255,0.66);
  font-size:13px;
  line-height:1.7;
  text-align:right;
}

/* ABOUT / EXPERTISE / WHY US */

.about{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent 55%);
}

.split{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:stretch;
}

.panel{
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow:var(--shadow);
  padding:34px;
}

.panel p{
  color:var(--muted);
  line-height:1.9;
}

.bullets{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:18px;
}

.bullet{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.18);
}

.bullet .mark{
  width:38px;
  height:38px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:rgba(118,208,207,0.12);
  border:1px solid rgba(118,208,207,0.24);
  color:var(--accent);
  font-weight:900;
  flex:0 0 auto;
}

.bullet .t{
  font-weight:800;
  margin-bottom:4px;
}

.bullet .d{
  color:rgba(255,255,255,0.72);
  line-height:1.7;
  font-size:14px;
}

.media-panel{
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.03);
  box-shadow:var(--shadow);
  position:relative;
  min-height:420px;
}

.media-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}

.media-panel .shade{
  position:absolute;
  inset:0;
  background:
  linear-gradient(135deg, rgba(214,192,141,0.16), transparent 48%),
  linear-gradient(0deg, rgba(0,0,0,0.74), rgba(0,0,0,0.10) 60%, rgba(0,0,0,0));
}

.media-panel .stamp{
  position:absolute;
  left:20px;
  bottom:20px;
  right:20px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(0,0,0,0.26);
  backdrop-filter:blur(10px);
  padding:18px 18px;
}

.media-panel .stamp strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.media-panel .stamp span{
  color:rgba(255,255,255,0.72);
  line-height:1.7;
  font-size:13px;
  display:block;
}

.expertise{
  background:
  linear-gradient(315deg, rgba(143,208,95,0.08), transparent 46%),
  linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}

.expertise-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.expertise-card{
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow:0 18px 55px rgba(0,0,0,0.35);
  padding:26px;
  transition:0.35s;
}

.expertise-card:hover{
  transform:translateY(-8px);
  background:linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
}

.expertise-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.expertise-card p{
  color:rgba(255,255,255,0.72);
  line-height:1.8;
  margin-bottom:14px;
}

.tagrow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.tag{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(214,192,141,0.22);
  background:rgba(214,192,141,0.08);
  color:rgba(255,255,255,0.86);
  font-weight:800;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.why{
  background:
  linear-gradient(135deg, rgba(214,192,141,0.09), transparent 42%),
  linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}

.why-card{
  position:relative;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.12);
  background:
  linear-gradient(135deg, rgba(214,192,141,0.11), transparent 48%),
  linear-gradient(315deg, rgba(118,208,207,0.08), transparent 45%),
  linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  padding:22px 22px 22px;
  overflow:hidden;
  box-shadow:0 22px 65px rgba(0,0,0,0.40);
  transition:transform 350ms cubic-bezier(.2,.85,.2,1), border-color 350ms ease, background 350ms ease;
}

.why-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(120deg, rgba(214,192,141,0.28), rgba(140,255,0,0.18), rgba(255,255,255,0.06));
  opacity:0;
  transition:opacity 350ms ease;
  pointer-events:none;
}

.why-card::after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:120px;
  height:3px;
  background:linear-gradient(90deg, transparent, rgba(118,208,207,0.36), var(--accent));
  transform:rotate(-35deg);
  opacity:0.85;
  pointer-events:none;
}

.why-card:hover{
  transform:translateY(-10px);
  border-color:rgba(214,192,141,0.22);
}

.why-card:hover::before{
  opacity:0.55;
}

.why-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}

.why-icon{
  width:44px;
  height:44px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,0.22);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(8px);
  flex:0 0 auto;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

.why-icon i{
  width:18px;
  height:18px;
  border-radius:4px;
  background:linear-gradient(180deg, rgba(214,192,141,0.95), rgba(214,192,141,0.40));
  box-shadow:0 0 0 6px rgba(214,192,141,0.10);
  display:block;
}

.why-card strong{
  display:block;
  margin-bottom:0;
  letter-spacing:0.02em;
  font-size:16px;
}

.why-card span{
  color:rgba(255,255,255,0.70);
  line-height:1.8;
  font-size:14px;
  display:block;
  position:relative;
  z-index:1;
}

/* CONTACT POPUP */

.fab{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1200;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
  color:#fff;
  box-shadow:0 18px 55px rgba(0,0,0,0.45);
  cursor:pointer;
  transition:0.25s;
  user-select:none;
}

.fab:hover{
  transform:translateY(-4px);
  border-color:rgba(118,208,207,0.42);
}

.fab .ring{
  width:40px;
  height:40px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--accent), var(--gold));
  color:#000;
  font-weight:900;
  box-shadow:0 14px 35px rgba(243,116,1,0.24);
}

.fab .fab-text{
  font-weight:800;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,0.92);
}

.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.62);
  backdrop-filter:blur(6px);
  z-index:1300;
  opacity:0;
  pointer-events:none;
  transition:opacity 220ms ease;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding:18px;
}

.modal-backdrop.open{
  opacity:1;
  pointer-events:auto;
}

.modal{
  width:min(460px, 100%);
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.16);
  background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
  overflow:hidden;
  transform:translateY(16px);
  opacity:0;
  transition:transform 260ms cubic-bezier(.2,.85,.2,1), opacity 260ms ease;
}

.modal-backdrop.open .modal{
  transform:translateY(0);
  opacity:1;
}

.modal-head{
  padding:18px 18px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.18);
}

.modal-head h3{
  font-size:18px;
  margin:0;
  letter-spacing:0.06em;
  text-transform:uppercase;
}

.modal-head p{
  margin-top:6px;
  color:rgba(255,255,255,0.70);
  font-size:13px;
  line-height:1.7;
}

.icon-btn{
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
  width:42px;
  height:42px;
  border-radius:8px;
  color:#fff;
  cursor:pointer;
  transition:0.2s;
  font-size:18px;
  line-height:1;
}

.icon-btn:hover{
  background:rgba(255,255,255,0.10);
  transform:translateY(-2px);
}

.modal-body{
  padding:18px;
}

.modal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

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

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

.modal-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-top:12px;
}

.toast{
  position:fixed;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  background:rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(10px);
  border-radius:8px;
  padding:12px 14px;
  color:rgba(255,255,255,0.92);
  font-weight:700;
  z-index:2000;
  opacity:0;
  pointer-events:none;
  transition:opacity 200ms ease;
}

.toast.show{
  opacity:1;
}

/* TOURS */

.tour-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.tour-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-radius:8px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 18px 55px rgba(0,0,0,0.34);
}

.tour-card:hover{
  transform:translateY(-10px);
}

.tour-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  filter:saturate(1.08) contrast(1.04);
}

.tour-content{
  padding:30px;
}

.tour-content h3{
  font-size:28px;
  margin-bottom:14px;
}

.tour-content p{
  line-height:1.8;
  color:#d7d7d7;
  margin-bottom:25px;
}

.price{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price h4{
  color:var(--accent);
  font-size:26px;
}

/* CTA */

.cta{
  background:linear-gradient(90deg, rgba(4,11,12,0.78), rgba(4,11,12,0.50)),
  url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2070&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  text-align:center;
  border-radius:8px;
  overflow:hidden;
}

.cta h2{
  font-size:70px;
  margin-bottom:25px;
}

.cta p{
  max-width:750px;
  margin:auto;
  line-height:1.9;
  color:#e3e3e3;
  margin-bottom:40px;
  font-size:18px;
}

/* FOOTER */

footer{
  background:#030b0b;
  padding:80px 0 40px;
  border-top:1px solid rgba(255,255,255,0.10);
}

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

.footer-col h3{
  margin-bottom:25px;
  font-size:24px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}

.footer-brand .logo-mark{
  flex:0 0 auto;
}

.footer-accent{
  width:78px;
  height:4px;
  background:linear-gradient(90deg, var(--accent), var(--gold), var(--glacier));
  border-radius:999px;
  margin-top:18px;
}

.footer-col p,
.footer-col a{
  color:#cfcfcf;
  line-height:2;
  display:block;
  transition:0.3s;
}

.footer-col a:hover{
  color:#F37401;
}

.copyright{
  text-align:center;
  margin-top:70px;
  color:#8c8c8c;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:30px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .menu{
    display:none;
  }

  .hero h1{
    font-size:58px;
  }

  .hero-layout{
    grid-template-columns:1fr;
  }

  .brand-showcase{
    max-width:460px;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

  .section-title h2{
    font-size:42px;
  }

  .cta h2{
    font-size:46px;
  }

  .details-shell{
    grid-template-columns:1fr;
  }

  .newsletter-inner{
    grid-template-columns:1fr;
  }

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

  .form-row{
    justify-content:stretch;
  }

  .form-hint{
    text-align:left;
  }
}

@media(max-width:768px){

  .nav-wrapper{
    padding:10px 0;
  }

  .logo-mark{
    width:210px;
    height:76px;
    padding:6px 10px;
  }

  .hero h1{
    font-size:44px;
  }

  .hero p{
    font-size:16px;
  }

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

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

  .section-title h2{
    font-size:36px;
  }

  .cta h2{
    font-size:36px;
  }

  section{
    padding:90px 0;
  }

  .details-panel{
    padding:24px;
  }

  .details-title h3{
    font-size:28px;
  }

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

  .newsletter-inner{
    padding:28px;
  }

  .newsletter-copy h3{
    font-size:32px;
  }

  .modal-backdrop{
    align-items:flex-end;
    justify-content:center;
  }

  .fab{
    right:14px;
    bottom:14px;
    padding:10px;
    gap:0;
  }

  .fab .fab-text{
    display:none;
  }

  .fab .ring{
    width:36px;
    height:36px;
  }

  .brand-notes{
    grid-template-columns:1fr;
  }

  .brand-note{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,0.10);
  }

  .brand-note:last-child{
    border-bottom:0;
  }
}

@media(max-width:520px){
  .hero{
    padding-top:104px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero-buttons,
  .details-actions,
  .price{
    align-items:stretch;
    flex-direction:column;
  }

  .btn,
  .outline-btn{
    text-align:center;
    width:100%;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .card, .reveal, .modal, .fab, .btn, .outline-btn, .tour-card, .stat-box{
    transition:none !important;
    animation:none !important;
  }
}
