:root{
  --bg:#071225;
  --bg2:#050a14;

  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);

  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.085);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --accent:#44c6ff;
  --accent2:#5b7cff;

  --shadow:0 22px 55px rgba(0,0,0,.45);
  --shadow2:0 14px 34px rgba(0,0,0,.38);

  --r14:14px;
  --r18:18px;
  --r22:22px;

  --max:1180px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(68,198,255,.16), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(91,124,255,.16), transparent 60%),
    radial-gradient(900px 520px at 60% 105%, rgba(68,198,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button, input, select, textarea{ font:inherit; color:inherit; }
::selection{ background:rgba(68,198,255,.22); }

.wrap{
  width:min(var(--max), calc(100% - 44px));
  margin:0 auto;
}

/* Background */
.bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}
.bg__grid{
  position:absolute;
  inset:0;
  opacity:.10;
  background:
    linear-gradient(transparent 0, transparent 96%, rgba(255,255,255,.06) 96%, rgba(255,255,255,.06) 98%, transparent 98%),
    linear-gradient(90deg, transparent 0, transparent 96%, rgba(255,255,255,.06) 96%, rgba(255,255,255,.06) 98%, transparent 98%);
  background-size: 120px 120px;
  filter: blur(.25px);
}
.bg__orb{
  position:absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 999px;
  filter: blur(28px);
  opacity:.55;
}
.bg__orb--a{
  left:-18vmax;
  top:-18vmax;
  background: radial-gradient(circle at 30% 30%, rgba(68,198,255,.22), transparent 60%);
}
.bg__orb--b{
  right:-18vmax;
  top:-22vmax;
  background: radial-gradient(circle at 30% 30%, rgba(91,124,255,.20), transparent 60%);
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,18,37,.80), rgba(7,18,37,.55));
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header__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: 240px;
}
.brand__logo{
  width:42px;
  height:42px;
  border-radius:14px;
  object-fit:contain;
  padding:6px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.brand__name{
  font-weight:950;
  letter-spacing:-.2px;
  font-size:14.5px;
}
.brand__sub{
  margin-top:2px;
  font-size:12px;
  color:var(--muted);
}

.nav{
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.nav a{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  color: rgba(234,242,255,.82);
  transition:.18s ease;
}
.nav a:hover{
  background: rgba(68,198,255,.09);
  color: rgba(234,242,255,.95);
}

.hdrBtns{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
  border:1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  user-select:none;
  transform: translateZ(0);
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px) scale(.99); }

.btn--primary{
  background: linear-gradient(135deg, rgba(68,198,255,.92), rgba(91,124,255,.86));
  border-color: rgba(68,198,255,.34);
  box-shadow: 0 16px 44px rgba(68,198,255,.18);
  color:#031019;
}
.btn--primary:hover{
  box-shadow: 0 20px 54px rgba(68,198,255,.24);
}

.btn--ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.btn--ghost:hover{
  border-color: rgba(68,198,255,.28);
  background: rgba(68,198,255,.08);
}

.menuBtn{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:10px;
  gap:6px;
  flex-direction:column;
  justify-content:center;
  transition:.18s ease;
}
.menuBtn:hover{
  border-color: rgba(68,198,255,.28);
  background: rgba(68,198,255,.08);
}
.menuBtn span{
  height:2px;
  width:100%;
  background: rgba(234,242,255,.86);
  border-radius:999px;
}

/* Mobile menu */
.mobile{
  display:none;
  position:absolute;
  left:0; right:0;
  top:100%;
  padding:0;
}
.mobile__inner{
  margin-top:10px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,18,37,.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding:12px;
  display:grid;
  gap:10px;
}
.mLink{
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color: rgba(234,242,255,.86);
}
.mLink:hover{
  border-color: rgba(68,198,255,.26);
  background: rgba(68,198,255,.08);
}
.mBtns{ display:flex; gap:10px; }

/* Hero */
.hero{
  padding: 26px 0 36px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}
.pill{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(68,198,255,.22);
  background: rgba(68,198,255,.06);
  color: rgba(234,242,255,.86);
}

.hero__title{
  margin:0;
  font-size: clamp(30px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
  font-weight: 980;
}
.hero__sub{
  margin:14px 0 18px;
  color: rgba(234,242,255,.78);
  font-size:15px;
  line-height:1.55;
  max-width: 58ch;
}
.hero__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 14px 0 16px;
}

.hero__stats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}
.stat{
  flex:1 1 160px;
  padding:12px 12px;
  border-radius: var(--r18);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.stat__n{
  font-weight:980;
  font-size:22px;
  letter-spacing:-.4px;
  background: linear-gradient(90deg, rgba(68,198,255,.95), rgba(91,124,255,.90));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stat__l{
  margin-top:4px;
  font-size:12px;
  color: rgba(234,242,255,.70);
}

.contactStrip{
  margin-top:14px;
  display:grid;
  gap:10px;
  max-width: 680px;
}
.contactStrip__item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius: var(--r18);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.contactStrip__k{
  font-size:12px;
  color: rgba(234,242,255,.70);
}
.contactStrip__v{
  font-size:12px;
  font-weight:900;
  text-align:right;
  color: rgba(234,242,255,.92);
}

/* Cards + form */
.card{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.card--big{
  padding: 0;
}
.card__top{
  padding:16px 16px 12px;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(420px 240px at 20% 0%, rgba(68,198,255,.14), transparent 65%),
    radial-gradient(420px 240px at 90% 20%, rgba(91,124,255,.12), transparent 65%);
}
.card__t{ font-weight:980; font-size:16px; letter-spacing:-.2px; }
.card__s{ margin-top:6px; font-size:12px; color: rgba(234,242,255,.70); }

.form{
  padding:14px 16px 16px;
  display:grid;
  gap:12px;
}
.field{ display:grid; gap:7px; }
.field span{ font-size:12px; color: rgba(234,242,255,.72); }

input, select, textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:11px 12px;
  outline:none;
  transition:.18s ease;
}
textarea{ resize: vertical; min-height: 92px; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(68,198,255,.32);
  box-shadow: 0 0 0 6px rgba(68,198,255,.10);
  background: rgba(68,198,255,.06);
}
.two{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}

.miniList{
  padding:14px 14px;
  display:grid;
  gap:10px;
}
.miniItem{
  padding:10px 10px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  font-weight:900;
  font-size:12px;
  color: rgba(234,242,255,.86);
}

/* Sections */
.section{
  padding: 42px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 65%);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.head h2{
  margin:0;
  font-size:22px;
  font-weight:980;
  letter-spacing:-.2px;
}
.head p{
  margin:10px 0 0;
  font-size:14px;
  color: rgba(234,242,255,.72);
  max-width: 70ch;
  line-height:1.55;
}

/* Services grid */
.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.svc{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding:16px 16px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.svc:hover{
  transform: translateY(-2px);
  border-color: rgba(68,198,255,.24);
  background: rgba(68,198,255,.05);
}
.svc__ic{
  width:40px;
  height:40px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(68,198,255,.12);
  border:1px solid rgba(68,198,255,.20);
  font-size:18px;
}
.svc h3{
  margin:12px 0 6px;
  font-size:15px;
  font-weight:980;
  letter-spacing:-.2px;
}
.svc p{
  margin:0 0 12px;
  font-size:13px;
  line-height:1.55;
  color: rgba(234,242,255,.72);
}

/* Bar */
.bar{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}
.bar__t{ font-weight:980; letter-spacing:-.2px; }
.bar__s{ margin-top:4px; font-size:12px; color: rgba(234,242,255,.70); }
.bar__btns{ display:flex; gap:10px; flex-wrap:wrap; }

/* Steps */
.steps{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.step{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:14px 14px;
  display:flex;
  gap:12px;
}
.step__n{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:980;
  background: rgba(68,198,255,.14);
  border:1px solid rgba(68,198,255,.20);
}
.step__t{ font-weight:980; font-size:13px; }
.step__d{ margin-top:6px; font-size:12px; color: rgba(234,242,255,.70); line-height:1.45; }

/* Booking grid */
.bookGrid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.info{
  padding:14px 14px;
}
.info__t{
  font-size:12px;
  color: rgba(234,242,255,.70);
  font-weight:900;
}
.info__p{
  margin-top:6px;
  font-size:13px;
  color: rgba(234,242,255,.88);
  line-height:1.45;
}
.map{
  margin-top:12px;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow2);
}
.map iframe{
  width:100%;
  height:240px;
  border:0;
  filter: saturate(1.1) contrast(1.05);
}
.infoBtns{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* FAQ */
.faq{
  margin-top:14px;
  display:grid;
  gap:10px;
  max-width: 900px;
}
.qa{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding: 12px 14px;
}
.qa summary{
  cursor:pointer;
  font-weight:980;
  font-size:13px;
  list-style:none;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa summary:after{
  content:"+";
  float:right;
  color: rgba(234,242,255,.70);
  font-weight:980;
}
.qa[open] summary:after{ content:"–"; }
.ans{
  margin-top:10px;
  font-size:12.5px;
  color: rgba(234,242,255,.72);
  line-height:1.55;
}

/* Contact section */
.contact{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.contactRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.contactRow__k{ font-size:12px; color: rgba(234,242,255,.70); }
.contactRow__v{ font-size:12px; font-weight:900; color: rgba(234,242,255,.92); text-align:right; }

/* Footer */
.footer{
  padding: 30px 0 22px;
  border-top:1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.10));
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer__brand img{
  width:44px;
  height:44px;
  padding:6px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  object-fit:contain;
}
.footer__name{ font-weight:980; }
.footer__sub{ font-size:12px; color: rgba(234,242,255,.70); margin-top:2px; }
.footer__links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer__links a{
  font-size:12px;
  color: rgba(234,242,255,.72);
}
.footer__links a:hover{ color: rgba(234,242,255,.92); }
.footer__copy{ font-size:12px; color: rgba(234,242,255,.70); }

/* Floating actions */
.fabs{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.fab{
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,18,37,.72);
  backdrop-filter: blur(14px);
  padding: 10px 14px;
  font-weight:980;
  font-size:12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition:.18s ease;
}
.fab:hover{
  border-color: rgba(68,198,255,.28);
  background: rgba(68,198,255,.08);
}
.fab--wa{
  background: linear-gradient(135deg, rgba(68,198,255,.22), rgba(91,124,255,.18)), rgba(7,18,37,.72);
}
/* Before & After */
.baGrid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

.baCard{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.baHead{
  padding:14px 14px 12px;
  border-bottom:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(420px 240px at 20% 0%, rgba(68,198,255,.12), transparent 65%),
    radial-gradient(420px 240px at 90% 20%, rgba(91,124,255,.10), transparent 65%);
}

.baTitle{
  font-weight:980;
  letter-spacing:-.2px;
  font-size:14px;
}

.baMeta{
  margin-top:6px;
  font-size:12px;
  color: rgba(234,242,255,.70);
}

.baCols{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:0;
}

.baImg{
  position:relative;
  display:block;
  overflow:hidden;
  border-right:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

.baCols .baImg:last-child{
  border-right:0;
}

.baImg img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease, filter .25s ease;
  filter: saturate(1.05) contrast(1.03);
}

.baImg:hover img{
  transform: scale(1.06);
}

.baLbl{
  position:absolute;
  left:12px;
  top:12px;
  z-index:2;
  font-size:11px;
  font-weight:950;
  letter-spacing:.2px;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,18,37,.70);
  backdrop-filter: blur(10px);
  color: rgba(234,242,255,.88);
}

.baExtra{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.baSingle{
  position:relative;
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:block;
}

.baSingle img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}

.baSingle:hover img{
  transform: scale(1.06);
}

.baCta{
  border-radius: var(--r22);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding:16px 16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.baCtaTitle{
  font-weight:980;
  letter-spacing:-.2px;
  font-size:16px;
}

.baCtaSub{
  color: rgba(234,242,255,.72);
  font-size:13px;
  line-height:1.5;
}

/* Responsive: Before & After */
@media (max-width: 1060px){
  .baGrid{ grid-template-columns: 1fr; }
  .baExtra{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .baCols{ grid-template-columns: 1fr; }
  .baImg{ border-right:0; border-bottom:1px solid rgba(255,255,255,.08); }
  .baCols .baImg:last-child{ border-bottom:0; }
  .baImg img{ height:240px; }
  .baSingle img{ height:240px; }
}
.baStack{
  display:grid;
  gap:14px;
}
/* Responsive */
@media (max-width: 1060px){
  .hero__grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menuBtn{ display:flex; }
  .mobile{ display:block; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: 1fr; }
  .bookGrid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .wrap{ width: calc(100% - 26px); }
  .grid{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .bar{ flex-direction:column; align-items:flex-start; }
  .fabs{ right:12px; bottom:12px; }
}