:root{
  --bg:#0b1220; --bg2:#0f172a;
  --card:#121c33; --line:rgba(255,255,255,.10);
  --text:#eaf0ff; --muted:#b7c3e3;
  --accent:#60a5fa; --accent2:#22c55e;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(1100px 650px at 20% -10%, rgba(96,165,250,.30), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(34,197,94,.18), transparent 50%),
    linear-gradient(180deg,var(--bg),var(--bg2));
}

a{color:var(--accent);text-decoration:none}
.wrap{max-width:1120px;margin:0 auto;padding:0 18px}

.top{
  position:sticky; top:0; z-index:30;
  background:rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.card.package {
  display: flex;
  flex-direction: column;
}

.card.package .p {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.package .price {
  margin-top: auto;
  padding-top: 16px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  flex-wrap:nowrap;
  padding:8px 0;          /* ✅ keeps header tight */
}

.brand{
  display:flex;
  align-items:center;     /* ✅ valid */
  gap:12px;

  margin-right:auto;      /* ✅ pushes navlinks to the right */
}

.brandtext{display:flex;flex-direction:column;line-height:1.1}
.brandtext .name{font-weight:900}
.brandtext .tag{font-size:12px;color:var(--muted);margin-top:4px}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:46px;            /* ✅ THIS controls banner height */
  width:auto;             /* ✅ no stretching */
  display:block;
}
.name{font-weight:900}
.tag{font-size:13px;color:var(--muted);margin-top:2px}
.navlinks{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.navlinks a{color:var(--muted)}
.navlinks a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(96,165,250,.18);
  color:var(--text); font-weight:800;
}
.btn:hover{filter:brightness(1.12)}
.btn.green{background:rgba(34,197,94,.18);border-color:rgba(34,197,94,.35)}
.btn.ghost{background:transparent}

.hero{padding:56px 0 24px}
.heroGrid{display:grid; grid-template-columns:1.1fr .9fr; gap:18px; align-items:start}
.hTitle{font-size:46px; line-height:1.05; margin:0 0 12px}
.lead{color:var(--muted); font-size:16px; line-height:1.55; max-width:62ch}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  font-size:13px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.heroImg{
  border-radius:22px; overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  box-shadow:0 18px 55px rgba(0,0,0,.35);
}
.heroImg img{width:100%; height:360px; object-fit:cover; display:block}

.section{padding:34px 0}
h2{margin:0 0 14px;font-size:30px}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}

.card{
  background:rgba(18,28,51,.72);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}
.card img{width:100%; height:160px; object-fit:cover; display:block}
.p{padding:14px}
.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted); line-height:1.5}

.prices{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.price{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.price.featured{
  border-color:rgba(96,165,250,.35);
  background:rgba(96,165,250,.08);
}
.amt{font-size:30px; font-weight:900; margin:10px 0}
.kicker{color:var(--muted); font-size:14px}
.fine{color:var(--muted); font-size:13px}

.split{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:start}
.mapWrap{
  border-radius:18px; overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.mapWrap iframe{width:100%; height:340px; border:0; display:block}

.form{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(2,6,23,.60);
}
label{display:block;margin:10px 0 6px;color:var(--muted);font-size:13px}
input,select,textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  background:rgba(2,6,23,.80);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
}
textarea{resize:vertical}
.row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.alert{
  padding:12px; border-radius:14px;
  border:1px solid rgba(251,113,133,.35);
  background:rgba(251,113,133,.10);
  margin-bottom:12px;
}
.ok{
  padding:12px; border-radius:14px;
  border:1px solid rgba(34,197,94,.35);
  background:rgba(34,197,94,.10);
  margin-bottom:12px;
}
.honeypot{display:none !important}

.foot{border-top:1px solid var(--line); padding:22px 0 90px; color:var(--muted)}
.footgrid{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;align-items:center}
.footname{font-weight:900;color:var(--text)}

.stickybar{
  position:fixed; left:0; right:0; bottom:0; z-index:50;
  background:rgba(11,18,32,.88);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--line);
}
.stickyinner{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; flex-wrap:wrap; padding:10px 12px;
}
.stickyactions{display:flex; gap:10px; flex-wrap:wrap}

@media (max-width:900px){
  .heroGrid,.grid3,.prices,.split{grid-template-columns:1fr}
  .hTitle{font-size:38px}
  .heroImg img{height:260px}
  .row{grid-template-columns:1fr}
}
