/* styles.css */
:root{
  --bg0:#071a18;
  --bg1:#0a2320;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.62);
  --accent:#25e2c7;
  --accent2:#0dd0b7;
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --shadow2: 0 12px 40px rgba(0,0,0,.35);
  --r:18px;
  --r2:24px;
  --max:1120px;
  --pad: clamp(16px, 2.2vw, 26px);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{animation:none!important; transition:none!important}
}
body{
  margin:0;
  font-family: var(--font);
  background:
    radial-gradient(1100px 700px at 16% 12%, rgba(37,226,199,.16), transparent 60%),
    radial-gradient(900px 650px at 90% 8%, rgba(37,226,199,.10), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  line-height:1.45;
}

a{color:inherit}
img{max-width:100%; display:block; height:auto}

.wrap{max-width:var(--max); margin:0 auto; padding: 0 var(--pad)}
.center{display:flex; justify-content:center; margin-top:18px}

/* Skip link */
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px; z-index:9999;
}

/* Utility bar */
.utility{
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility__inner{
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding: 10px var(--pad);
}
.utility__left{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.utility__right{display:flex; gap:10px; align-items:center}
.utility__pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration:none;
  font-weight:650;
  letter-spacing:.1px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.utility__pill:hover{border-color: rgba(37,226,199,.35)}
.i svg{width:18px; height:18px; fill: currentColor; opacity:.95}

/* Header */
.hdr{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,26,24,.62);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hdr.is-sticky{
  background: rgba(7,26,24,.78);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.hdr__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding: 12px var(--pad);
}
.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.brand__logo{
  width:44px; height:44px; border-radius:14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__sub{font-size:.92rem; color:var(--muted)}

.nav{display:flex; gap:18px; align-items:center}
.nav__link{
  text-decoration:none;
  color: var(--muted);
  font-weight:650;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav__link:hover{color:var(--text); background: rgba(255,255,255,.05)}

.hdr__cta{display:flex; gap:10px; align-items:center}
.hdr__menu{
  display:none;
  width:42px; height:42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
}
.hdr__menu span{
  display:block; height:2px; width:18px;
  margin: 4px auto;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
}
.hdr__menu:focus{outline: 3px solid rgba(37,226,199,.35); outline-offset:2px}

/* Mobile nav panel */
.mnav{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,26,24,.88);
}
.mnav__inner{padding: 10px var(--pad); display:flex; flex-direction:column; gap:8px}
.mnav__link{
  text-decoration:none;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-weight:700;
}
.mnav__link:hover{border-color: rgba(37,226,199,.25)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.15px;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  user-select:none;
}
.btn--sm{padding: 9px 12px; font-weight:800}
.btn--block{width:100%}
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#04201b;
  border-color: rgba(0,0,0,.08);
}
.btn--primary:hover{filter: brightness(1.02)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: var(--text);
}
.btn--ghost:hover{border-color: rgba(37,226,199,.35)}

/* Sections */
.section{padding: clamp(42px, 6vw, 78px) 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__hdr{margin-bottom: 18px}
.section__hdr h2{margin:0 0 6px; font-size: clamp(1.35rem, 2.3vw, 2.05rem)}
.muted{color: var(--muted); margin:0}

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r2);
  box-shadow: var(--shadow2);
}
.card:hover{border-color: rgba(37,226,199,.18)}

/* Hero */
.hero{padding: clamp(34px, 4.8vw, 66px) 0 20px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 28px);
  align-items:center;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight:750;
  width: fit-content;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(2.05rem, 4.1vw, 3.6rem);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{margin:0; color: var(--muted); max-width: 58ch}
.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin-top: 16px}
.trust-mini{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top: 18px;
}
.trust-mini__item{
  display:flex; gap:12px; align-items:center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:650;
}
.hero__media{position:relative}
.frame{
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.frame img{width:100%; aspect-ratio: 1 / 1; object-fit:cover}
.glow{
  position:absolute; inset:-26px;
  background: radial-gradient(500px 400px at 72% 26%, rgba(37,226,199,.28), transparent 65%);
  filter: blur(18px);
  pointer-events:none;
  z-index:-1;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{padding: 16px}
.step__num{
  width:34px; height:34px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(37,226,199,.14);
  border: 1px solid rgba(37,226,199,.22);
  font-weight:900;
  color: var(--text);
}
.step h3{margin:10px 0 6px; font-size:1.02rem}
.step p{margin:0; color: var(--muted); font-size:.98rem}

.note{
  display:flex; gap:12px; align-items:flex-start;
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(37,226,199,.08);
  border: 1px solid rgba(37,226,199,.18);
  color: var(--muted);
}
.note__icon{
  width:34px; height:34px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(37,226,199,.16);
  border: 1px solid rgba(37,226,199,.22);
  flex: 0 0 auto;
}
.note strong{color: var(--text)}

/* Cities grid */
.grid{display:grid; gap:14px}
.cities{
  grid-template-columns: repeat(4, 1fr);
}
.city{overflow:hidden}
.city__img{display:block; text-decoration:none}
.city__img img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: rgba(0,0,0,.25);
}
.city__meta{padding: 14px}
.city__name{font-weight:900; letter-spacing:.1px}
.city__handle{color: var(--muted2); font-weight:650; margin-top:2px}
.city__actions{display:flex; gap:10px; margin-top: 12px}

/* Packages */
.pkg-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.pkg{padding: 18px}
.pkg__top h3{margin:0 0 4px; font-size:1.25rem}
.pkg__top p{margin:0}
.pkg__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.price-card{
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
}
.price-card__hdr{
  display:flex; justify-content:space-between; align-items:baseline; gap:14px;
}
.price-card__name{font-weight:900}
.price-card__price{font-weight:950; font-size: 1.15rem}
.per{color: var(--muted2); font-weight:750; font-size:.95rem}
.was{
  color: rgba(255,255,255,.55);
  text-decoration: line-through;
  font-weight:800;
  margin-right: 8px;
  font-size: .98rem;
}
.ticks{margin: 12px 0 0; padding: 0; list-style:none; display:grid; gap:8px}
.ticks li{
  position:relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight:650;
}
.ticks li:before{
  content:"";
  position:absolute; left:0; top:.35em;
  width:16px; height:16px; border-radius: 6px;
  background: rgba(37,226,199,.18);
  border: 1px solid rgba(37,226,199,.25);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}
.ticks li:after{
  content:"";
  position:absolute; left:5px; top:.62em;
  width:7px; height:4px;
  border-left: 2px solid rgba(255,255,255,.90);
  border-bottom: 2px solid rgba(255,255,255,.90);
  transform: rotate(-45deg);
}
.pkg__foot{margin-top: 14px; display:grid; gap:12px}
.mini-offer{
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
}
.pkg__cta{display:flex; gap:10px; flex-wrap:wrap}

.pkg--accent{
  background:
    radial-gradient(900px 500px at 85% 12%, rgba(37,226,199,.16), transparent 60%),
    rgba(255,255,255,.04);
}

/* Compare card */
.compare{padding: 18px; margin-top: 14px}
.compare__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
  align-items:start;
}
.compare__box{
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.compare__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px}
.fine{font-size:.92rem; color: var(--muted2); margin-top: 10px}
.fine a{color: var(--text)}

/* Enquiry */
.enq-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form{padding: 18px}
.field{display:grid; gap:8px; margin-bottom: 12px}
label{font-weight:800; color: var(--text)}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
}
input:focus, textarea:focus{
  outline: 3px solid rgba(37,226,199,.22);
  border-color: rgba(37,226,199,.35);
}
.talk{padding: 18px}
.talk h3{margin:0 0 6px}
.talk__btns{display:flex; gap:10px; flex-wrap:wrap; margin: 12px 0 0}
.talk__divider{height:1px; background: rgba(255,255,255,.08); margin: 14px 0}
.faq{display:grid; gap:10px; margin-top: 10px}
.faq__item{
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 10px 12px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:850;
  color: var(--text);
}
.faq__a{color: var(--muted); margin-top: 8px}

/* Footer */
.ftr{
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 26px 0 10px;
}
.ftr__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:start;
}
.ftr__brand{display:flex; gap:12px; align-items:center}
.ftr__brand img{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 25px rgba(0,0,0,.30);
}
.ftr__name{font-weight:950}
.ftr__sub{color: var(--muted2)}
.ftr__links{margin-top: 6px; color: var(--muted); font-weight:650}
.ftr__links a{color: var(--text); text-decoration:none}
.ftr__links a:hover{text-decoration:underline}
.dot{opacity:.6; margin: 0 6px}

.ftr__cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ftr__hd{font-weight:900; margin-bottom: 8px}
.ftr__col a{
  display:block;
  color: var(--muted);
  text-decoration:none;
  padding: 6px 0;
  font-weight:650;
}
.ftr__col a:hover{color: var(--text)}
.social{display:flex; gap:10px; margin-top: 6px}
.social__btn{
  width:42px; height:42px;
  border-radius: 16px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration:none;
}
.social__btn:hover{border-color: rgba(37,226,199,.35)}
.social__btn svg{width:20px; height:20px; fill: currentColor; opacity:.92}

.ftr__base{
  margin-top: 18px;
  padding: 14px var(--pad);
  display:flex; justify-content:space-between; align-items:center;
  color: var(--muted2);
  border-top: 1px solid rgba(255,255,255,.08);
}
.toplink{color: var(--text); text-decoration:none; font-weight:800}
.toplink:hover{text-decoration:underline}

/* Back to top */
.toTop{
  position: fixed;
  right: 16px;
  bottom: 86px;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: var(--text);
  display:grid;
  place-items:center;
  box-shadow: var(--shadow2);
  opacity:0;
  transform: translateY(8px);
  pointer-events:none;
}
.toTop svg{width:20px; height:20px; fill: currentColor}
.toTop.is-on{opacity:1; transform:none; pointer-events:auto}
.toTop:focus{outline: 3px solid rgba(37,226,199,.25); outline-offset:2px}

/* Sticky bottom bar */
.bbar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  background: rgba(7,26,24,.86);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  z-index: 60;
}
.bbar__btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding: 10px 10px;
  border-radius: 18px;
  text-decoration:none;
  font-weight:900;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
}
.bbar__btn:hover{border-color: rgba(37,226,199,.30)}
.bbar__btn .i svg{width:18px; height:18px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .frame img{aspect-ratio: 16 / 12}
  .steps{grid-template-columns: repeat(2, 1fr)}
  .cities{grid-template-columns: repeat(3, 1fr)}
  .pkg-split{grid-template-columns: 1fr}
  .compare__grid{grid-template-columns: 1fr}
  .enq-grid{grid-template-columns: 1fr}
  .nav{display:none}
  .hdr__cta{display:none}
  .hdr__menu{display:inline-flex; align-items:center; justify-content:center}
  .ftr__grid{grid-template-columns: 1fr}
  .ftr__cols{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 620px){
  .utility__right{display:none}
  .cities{grid-template-columns: repeat(2, 1fr)}
  .steps{grid-template-columns: 1fr}
  .ftr__cols{grid-template-columns: 1fr}
}
/* Give space for bottom bar on small screens */
@media (max-width: 980px){
  body{padding-bottom: 86px}
}
/* Hide bottom bar on larger screens */
@media (min-width: 981px){
  .bbar{display:none}
  body{padding-bottom:0}
}
