:root{
  --bg:#070b14;
  --bg2:#0b1220;
  --panel: rgba(255,255,255,.92);
  --glass: rgba(255,255,255,.06);
  --text:#0f172a;
  --muted:#6b7280;
  --white:#ffffff;

  --border: rgba(15,23,42,.10);
  --border2: rgba(255,255,255,.14);

  --teal:#1aa39a;
  --teal2:#21c8bd;

  --gold:#e7d37c;
  --gold2:#c9b25a;

  --shadow: 0 22px 70px rgba(2, 6, 23, .30);
  --shadow2: 0 14px 40px rgba(2, 6, 23, .18);

  --r:18px;
  --r2:26px;
  --max:1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(var(--max), calc(100% - 42px)); margin:0 auto; }

.sr-only{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

/* NAV */
.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(7,11,20,.82), rgba(7,11,20,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; min-width:220px; }
.logo{
  width:46px; height:46px;
  border-radius: 14px;
  overflow:hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:center;
}
.logo img{ width:100%; height:100%; object-fit:contain; }
.brand .name{ display:flex; flex-direction:column; line-height:1.1; }
.brand .name strong{
  color: var(--white);
  font-weight: 850;
  letter-spacing: .2px;
}
.brand .name span{
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

.nav-actions{ display:flex; align-items:center; gap:10px; }
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.06);
  color: var(--white);
  transition: transform .15s ease, background .15s ease, filter .15s ease;
  user-select:none;
}
.pill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }
.pill svg{ width:18px; height:18px; opacity:.95; }

.cta{
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px rgba(26,163,154,.35);
  font-weight: 850;
  color: #06221f;
}
.cta:hover{ filter: brightness(.98); }

/* HERO */
.hero{
  position:relative;
  padding-top: 86px;
  min-height: 92vh;
  display:flex;
  overflow:hidden;
  isolation:isolate;
}
.hero-bg{ position:absolute; inset:0; z-index:-2; }
.slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 6s ease;
  filter: saturate(1.07) contrast(1.05);
}
.slide.active{ opacity:1; transform: scale(1.07); }

.hero-overlay{
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(1200px 600px at 18% 26%, rgba(26,163,154,.28), transparent 60%),
    radial-gradient(1000px 600px at 72% 38%, rgba(231,211,124,.18), transparent 55%),
    linear-gradient(90deg, rgba(7,11,20,.90), rgba(7,11,20,.56) 40%, rgba(7,11,20,.28));
}

.hero-inner{
  width:100%;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
  padding: 58px 0 48px;
}

.hero-copy{ color: var(--white); padding-right: 10px; }
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
}
.kicker .dot{
  width:8px; height:8px;
  border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(231,211,124,.18);
}
h1{
  margin:0 0 14px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height:1.02;
  letter-spacing: -1px;
  font-weight: 900;
}
.sub{
  margin:0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 60ch;
}
.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.badge svg{ width:18px; height:18px; opacity:.95; }

/* CARD */
.card{
  background: rgba(255,255,255,.93);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.42);
  overflow:hidden;
}
.card-head{
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.card-head h2{
  margin:0;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.card-head small{ color: var(--muted); display:flex; align-items:center; gap:8px; }
.card-body{ padding: 16px 18px 18px; }

.flash{
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  border: 1px solid;
}
.flash.success{ background: rgba(34,197,94,.10); border-color: rgba(34,197,94,.25); color:#14532d; }
.flash.error{ background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.25); color:#7f1d1d; }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.row{ grid-column: 1 / -1; }
.field{ display:flex; flex-direction:column; gap:6px; }

label{
  font-size: 12px;
  color: rgba(15,23,42,.72);
  font-weight: 700;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:#fff;
  outline:none;
  font: inherit;
  color: var(--text);
  transition: box-shadow .15s ease, border-color .15s ease;
}
textarea{ min-height: 90px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(26,163,154,.55);
  box-shadow: 0 0 0 4px rgba(26,163,154,.14);
}

.radio-row{
  display:flex; gap:12px; align-items:center; flex-wrap:wrap;
  padding: 10px 12px;
  border: 1px dashed rgba(15,23,42,.18);
  border-radius: 14px;
  background: rgba(15,23,42,.02);
}
.radio{
  display:flex; align-items:center; gap:8px;
  font-size: 13px;
  color: rgba(15,23,42,.88);
}
.radio input{ width:16px; height:16px; padding:0; }

.actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.04);
  color: rgba(15,23,42,.92);
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(15,23,42,.06); }
.btn-primary{
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  border-color: rgba(26,163,154,.28);
  color:#06221f;
  box-shadow: 0 12px 28px rgba(26,163,154,.28);
}
.btn-primary:hover{ filter: brightness(.98); }

.hint{
  font-size: 12px;
  color: rgba(15,23,42,.62);
  display:flex; align-items:center; gap:8px;
}

/* SECTIONS */
.section{ padding: 78px 0; background:#fff; }
.section.alt{ background: linear-gradient(180deg, #ffffff, #f7fafc); }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 26px;
}
.section-head h3{
  margin:0;
  font-size: 36px;
  letter-spacing: -0.9px;
}
.section-head p{
  margin:0;
  max-width: 66ch;
  color: rgba(15,23,42,.70);
  line-height: 1.7;
}

/* FAIR RATES split */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
}
.split .panel{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
  padding: 24px;
}
.split .img{
  border-radius: var(--r2);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow2);
  overflow:hidden;
  background:#111827;
  min-height: 320px;
  position:relative;
}
.split .img img{ width:100%; height:100%; object-fit:cover; }
.split .img:after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(700px 400px at 20% 15%, rgba(231,211,124,.14), transparent 55%),
              linear-gradient(180deg, rgba(2,6,23,.05), rgba(2,6,23,.22));
  pointer-events:none;
}
.big-kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:900;
  color: rgba(15,23,42,.78);
  margin-bottom: 10px;
}
.big-kicker .bar{
  width:32px; height:2px;
  background: linear-gradient(90deg, var(--gold2), rgba(231,211,124,0));
}
.lead{
  margin:0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15,23,42,.74);
}

/* TOURS: horizontal carousel of cards */
.carousel-wrap{
  position:relative;
}
.carousel{
  display:flex;
  gap: 16px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar{ height:10px; }
.carousel::-webkit-scrollbar-thumb{
  background: rgba(15,23,42,.12);
  border-radius:999px;
}
.tour{
  flex: 0 0 360px;
  scroll-snap-align: start;
  border-radius: var(--r2);
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction:column;
  min-height: 440px;
}

/* Each tour has image slider inside */
.tour-media{
  height: 190px;
  position:relative;
  background:#0b1220;
}
.tour-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}
.tour-media img.active{ display:block; }
.tour-media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.06), rgba(2,6,23,.30));
  pointer-events:none;
}
.tour-arrows{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 10px;
  pointer-events:none;
}
.tour-arrows button{
  pointer-events:auto;
  width:38px; height:38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: transform .15s ease, background .15s ease;
}
.tour-arrows button:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }
.tour-arrows svg{ width:18px; height:18px; color:#fff; }

.tour .body{ padding: 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
.tour h4{ margin:0; font-size: 18px; letter-spacing:-0.2px; }
.stars{ color:#f59e0b; letter-spacing: 1px; font-size: 14px; }

.meta{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  color: rgba(15,23,42,.74);
  font-size: 13px;
}
.meta span{ display:flex; gap:8px; align-items:center; }

.tour .foot{
  padding: 14px 16px 16px;
  display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
  border-top: 1px solid rgba(15,23,42,.08);
}

/* carousel nav buttons (cards) */
.carousel-nav{
  display:flex;
  gap:10px;
  margin-top: 14px;
}
.carousel-nav button{
  width:44px; height:44px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.04);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: transform .15s ease, background .15s ease;
}
.carousel-nav button:hover{ transform: translateY(-1px); background: rgba(15,23,42,.06); }

/* ACCORDION */
.accordion{
  border-radius: var(--r2);
  border: 1px solid rgba(15,23,42,.10);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow2);
}
.acc-item{ border-top: 1px solid rgba(15,23,42,.08); }
.acc-item:first-child{ border-top:0; }
.acc-btn{
  width:100%;
  text-align:left;
  background:#fff;
  border:0;
  padding: 16px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  cursor:pointer;
  font-weight: 900;
  color: rgba(15,23,42,.92);
}
.acc-btn span{ display:flex; align-items:center; gap:10px; }
.acc-panel{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease;
  background: linear-gradient(180deg, rgba(26,163,154,.06), rgba(26,163,154,.00));
}
.acc-panel .pad{
  padding: 0 16px 16px;
  color: rgba(15,23,42,.72);
  line-height: 1.8;
  font-size: 14px;
}
.chev{ transition: transform .2s ease; opacity:.8; }
.acc-item.open .chev{ transform: rotate(180deg); }

/* FOOTER */
.footer{
  background: #070b14;
  color: rgba(255,255,255,.88);
  padding: 64px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}
.footer:before{
  content:"";
  position:absolute; inset:-40px;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(26,163,154,.16), transparent 55%),
    radial-gradient(900px 500px at 80% 30%, rgba(231,211,124,.12), transparent 55%);
  pointer-events:none;
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
  position:relative;
  z-index:1;
}
.footer h5{ margin:0 0 14px; font-size: 15px; letter-spacing:.2px; }
.footer p, .footer a, .footer li{ color: rgba(255,255,255,.74); }
.footer a:hover{ color:#fff; }
.footer ul{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.footer .line{ height:1px; background: rgba(255,255,255,.10); margin: 18px 0; }
.copy{ color: rgba(255,255,255,.60); font-size: 13px; display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; }

/* Newsletter */
.news{
  display:flex; gap:10px; align-items:center; margin-top: 10px;
}
.news input{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
}
.news input::placeholder{ color: rgba(255,255,255,.55); }
.news button{
  border:0;
  padding: 12px 14px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 900;
  color:#06221f;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 14px 30px rgba(201,178,90,.20);
}

/* WhatsApp floating */
.whats{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  color: #06221f;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(26,163,154,.32);
  font-weight: 950;
  transform: translateZ(0);
}
.whats:hover{ filter: brightness(.98); transform: translateY(-1px); }

/* Responsive */
@media (max-width: 1020px){
  .hero-inner{ grid-template-columns: 1fr; padding: 34px 0 30px; }
  .split{ grid-template-columns: 1fr; }
  .footer .cols{ grid-template-columns: 1fr 1fr; }
  .nav-actions .pill.phone{ display:none; }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
  .tour{ flex-basis: 310px; }
  .footer .cols{ grid-template-columns: 1fr; }
}

.whats .wa-ico{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  color: #fff;
}
/* FORCE logo size in header */
.nav .brand-logo-only .logo-img{
  height: 40px !important;   /* mete 36/40/44 */
  width: auto !important;
  max-height: 40px !important;
  display:block;
}

