:root{
  --bg:#061017;
  --bg2:#081a24;
  --card:#0c2230;
  --text:#eaf6ff;
  --muted:rgba(234,246,255,.78);
  --accent:#2fd0e0;
  --accent2:#1bb0d2;
  --stroke:rgba(234,246,255,.14);
  --shadow: 0 18px 55px rgba(0,0,0,.42);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(47,208,224,.25), transparent 60%),
              radial-gradient(900px 480px at 90% 30%, rgba(27,176,210,.18), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
a{color:inherit; text-decoration:none}

.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

/* Topbar */
.topbar{
  background: rgba(0,0,0,.25);
  border-bottom:1px solid var(--stroke);
  backdrop-filter: blur(12px);
}
.topbar .wrap{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:10px 0;
  font-size:14px;
  color:var(--muted);
}
.pills{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background:rgba(255,255,255,.04);
}
.pill strong{color:var(--text); font-weight:600}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(6,16,23,.6);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--stroke);
}
.header .nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:170px; height:auto}

.menu{display:flex; gap:18px; align-items:center}
.menu a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.05)}

.ctaRow{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  color:var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.08)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-color: rgba(255,255,255,.0);
  color:#041017;
  box-shadow: 0 16px 40px rgba(47,208,224,.22);
}
.btn.primary:hover{box-shadow: 0 20px 50px rgba(47,208,224,.30)}

.burger{display:none; width:44px; height:44px; border-radius:12px; border:1px solid var(--stroke); background:rgba(255,255,255,.05); color:var(--text)}

/* Hero */
.hero{
  position:relative;
  padding:58px 0 38px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.heroCard{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroMedia{
  position:relative;
  min-height: 420px;
  background: #000;
}
.heroMedia img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}
.heroMedia .shade{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(6,16,23,.92) 0%, rgba(6,16,23,.35) 55%, rgba(6,16,23,.05) 100%);
}
.heroContent{
  position:absolute; inset:0;
  padding:32px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.kicker{display:inline-flex; align-items:center; gap:10px; color:rgba(234,246,255,.86); font-weight:700; font-size:13px}
.kicker .dot{width:10px; height:10px; border-radius:999px; background:var(--accent)}
.hero h1{margin:10px 0 10px; font-size: clamp(28px, 3.2vw, 44px); line-height:1.05}
.hero p{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6; max-width: 52ch}
.heroActions{display:flex; gap:12px; flex-wrap:wrap}

.heroSide{
  padding:26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.badge{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(12,34,48,.55);
}
.badgeIcon{
  width:40px; height:40px; border-radius:14px;
  background: rgba(47,208,224,.16);
  border:1px solid rgba(47,208,224,.25);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.badge h3{margin:0; font-size:15px}
.badge p{margin:4px 0 0; color:var(--muted); font-size:13.5px; line-height:1.45}

/* Sections */
.section{padding:40px 0}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
.sectionHead h2{margin:0; font-size: clamp(22px, 2.2vw, 28px)}
.sectionHead p{margin:0; color:var(--muted); max-width: 60ch; line-height:1.6}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.55; font-size:14px}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gItem{
  grid-column: span 4;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  position:relative;
  cursor:pointer;
}
.gItem img{width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.02); transition: transform .25s ease}
.gItem:hover img{transform:scale(1.06)}
.gItem .cap{
  position:absolute; inset:auto 12px 12px 12px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(6,16,23,.70);
  border:1px solid rgba(234,246,255,.12);
  color:rgba(234,246,255,.92);
  font-size:13px;
}

/* Social + Video */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.embedBox{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow:hidden;
  min-height: 420px;
}
.embedBox header{
  padding:14px 16px;
  border-bottom:1px solid var(--stroke);
  display:flex; justify-content:space-between; align-items:center;
}
.embedBox header span{font-weight:800}
.embedBox header a{color:var(--muted); font-weight:700; font-size:13px}
.embedBox iframe{width:100%; height: calc(100% - 54px); border:0}

.videoWrap{position:relative; padding-top:56.25%;}
.videoWrap iframe{position:absolute; inset:0; width:100%; height:100%; border:0}

/* Contact */
.contactGrid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.form{
  display:grid; gap:10px;
}
.input{
  width:100%;
  padding:14px 14px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.input::placeholder{color: rgba(234,246,255,.55)}
textarea.input{min-height:130px; resize:vertical}
.small{color:var(--muted); font-size:13px; line-height:1.5}

/* Footer */
footer{
  border-top:1px solid var(--stroke);
  margin-top:34px;
  padding:28px 0;
  color:var(--muted);
}
footer .foot{
  display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding: 24px;
}
.lightbox.open{display:flex}
.lightbox .inner{
  width:min(1100px, 100%);
  border-radius: 20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  background:#000;
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
  position:relative;
}
.lightbox img{width:100%; height:auto; display:block}
.lightbox button{
  position:absolute; top:12px;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:#fff;
  cursor:pointer;
}
.lightbox .close{right:12px}
.lightbox .prev{left:12px; top:50%; transform:translateY(-50%)}
.lightbox .next{right:12px; top:50%; transform:translateY(-50%)}

/* Floating WhatsApp */
.fab{
  position:fixed;
  right:18px;
  bottom:18px;
  width:58px;
  height:58px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #25D366 0%, #1ab954 100%);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  z-index:250;
  border:1px solid rgba(255,255,255,.15);
}
.fab svg{width:28px; height:28px; fill:#071017}
.fab:hover{transform: translateY(-1px)}

/* Reveal */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease}
.reveal.show{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr;}
  .heroMedia{min-height: 420px}
  .split{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
}
@media (max-width: 780px){
  .menu{display:none}
  .burger{display:inline-flex}
  .menu.open{
    display:flex;
    position:absolute;
    left:20px; right:20px;
    top:72px;
    padding:12px;
    flex-direction:column;
    background: rgba(6,16,23,.92);
    border:1px solid var(--stroke);
    border-radius: 18px;
  }
  .grid3{grid-template-columns:1fr}
  .gItem{grid-column: span 6}
}
@media (max-width: 520px){
  .gItem{grid-column: span 12}
  .brand img{width:150px}
  .heroContent{padding:22px}
}
