:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --alt:#0d1730;
  --text:#eaf0ff;
  --muted:#b9c5e6;
  --line:rgba(255,255,255,.08);
  --primary:#4ea7ff;
  --primary2:#2d7dff;
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{margin:0; padding:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial; background:linear-gradient(180deg,#070c16, #0b1220); color:var(--text);}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

.topbar{
  background:rgba(255,255,255,.03);
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:10px 0;
}
.topbar-left{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted)}
.topbar-left a{color:var(--muted)}
.topbar-right{display:flex; gap:8px}
.chip{
  border:1px solid var(--line);
  padding:6px 10px; border-radius:999px;
  color:var(--muted);
}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,18,32,.7);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center}
.logo{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  font-weight:800;
}
.brand small{display:block; color:var(--muted); letter-spacing:.18em; margin-top:2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}
.burger{display:none; background:transparent; border:0; color:var(--text); font-size:22px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px; border:1px solid var(--line);
  cursor:pointer; gap:8px; font-weight:600;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  border-color:transparent;
  color:#061021;
}
.btn-ghost{background:rgba(255,255,255,.04)}
.w100{width:100%}

.hero{padding:40px 0 10px}
.hero-grid{display:grid; grid-template-columns:1.2fr .9fr; gap:24px; align-items:start}
.hero-text h1{font-size:44px; margin:10px 0 10px}
.hero-text p{color:var(--muted); line-height:1.6; font-size:16px}
.hero-actions{display:flex; gap:12px; margin:18px 0}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.badge{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  padding:8px 10px; border-radius:999px;
  color:var(--muted);
  font-size:14px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-card h3{margin:0 0 10px}

.form .row{display:flex; flex-direction:column; gap:6px; margin:10px 0}
label{color:var(--muted); font-size:14px}
input, select, textarea{
  background:rgba(0,0,0,.25);
  border:1px solid var(--line);
  padding:12px 12px;
  border-radius:12px;
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form-note{color:var(--muted); font-size:13px; margin:10px 0 0}

.section{padding:56px 0}
.section.alt{background:rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:30px}
.section-head p{margin:0; color:var(--muted)}

.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card-icon{font-size:26px}
.card h3{margin:10px 0 6px}
.card p{color:var(--muted); line-height:1.6; margin:0 0 12px}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

.tour-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.tour{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
}
.tour-img{height:160px; background-size:cover; background-position:center}
.tour-body{padding:14px}
.tour-body p{color:var(--muted); margin:6px 0 10px; line-height:1.6}
.tour-meta{display:flex; justify-content:space-between; color:var(--muted); font-size:13px}

.center{display:flex; justify-content:center; margin-top:18px}

.cta{
  display:grid; grid-template-columns:1.2fr .8fr; gap:16px; align-items:stretch;
}
.cta-box{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.cta-actions{display:flex; gap:12px; margin-top:12px}
.cta-item{display:flex; gap:10px; padding:10px 0; border-bottom:1px solid var(--line); color:var(--muted)}
.cta-item:last-child{border-bottom:0}

.faq details{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:700}
.faq p{color:var(--muted); line-height:1.6}

.contact{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}
.contact-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:14px 0}
.mini{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background:rgba(255,255,255,.03);
}
.mini-title{color:var(--muted); font-size:13px}
.mini-value{display:inline-block; margin-top:6px; font-weight:700}
.muted{color:var(--muted)}

.contact-form{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  padding:16px;
  box-shadow:var(--shadow);
}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  color:var(--muted);
}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer-links{display:flex; gap:14px}

.wa-float{
  position:fixed; right:18px; bottom:18px;
  width:54px; height:54px; border-radius:18px;
  display:grid; place-items:center;
  background:linear-gradient(135deg,#25D366,#1aa34f);
  color:#06210f;
  box-shadow:var(--shadow);
  font-size:22px;
  border:1px solid rgba(255,255,255,.15);
}

@media (max-width: 920px){
  .hero-grid, .cards, .tour-grid, .cta, .contact{grid-template-columns:1fr}
  .hero-text h1{font-size:36px}
  .topbar-inner{flex-direction:column; align-items:flex-start}
  .nav{display:none; position:absolute; left:0; right:0; top:60px; padding:14px; background:rgba(11,18,32,.95); border-bottom:1px solid var(--line); flex-direction:column; align-items:stretch}
  .nav.show{display:flex}
  .burger{display:block}
}
