:root{
  --bg:#ffffff;
  --bg2:#f5f7fa;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --primary:#2da4ff;
  --primary2:#1b8be0;
  --radius:16px;
  --shadow:0 10px 30px rgba(17,24,39,.06);
  --container:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
code{background:#eef6ff;border:1px solid #d8ecff;padding:.1rem .35rem;border-radius:8px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:.9em}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.muted{color:var(--muted)}
.lead{font-size:18px}
.section{padding:84px 0}
.section-alt{background:var(--bg2)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:22px}
.section-head h2{margin:0}
.section h2{font-size:34px;letter-spacing:-.02em}
h1{font-size:50px;line-height:1.06;letter-spacing:-.03em;margin:14px 0 14px}
h2{margin:0 0 16px}
h3{margin:0 0 8px}
p{margin:0 0 14px}

.site-header{background:linear-gradient(180deg,#e6f5ff 0%, #ffffff 70%)}
.nav{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 0;
}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:36px;height:36px;border-radius:12px;background:rgba(45,164,255,.14);
  display:grid;place-items:center;color:var(--primary2);font-weight:800;
}
.brand-text{font-weight:700;letter-spacing:-.01em}

.nav-links{display:flex;align-items:center;gap:18px}
.nav-links a{padding:10px 10px;border-radius:12px}
.nav-links a:hover{background:rgba(17,24,39,.05)}
.nav-toggle{
  display:none;border:1px solid var(--line);background:#fff;border-radius:14px;
  padding:10px;cursor:pointer
}
.nav-toggle span{display:block;width:18px;height:2px;background:#111827;margin:4px 0;border-radius:2px}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;padding:12px 16px;border:1px solid transparent;
  font-weight:600;gap:10px;cursor:pointer
}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary2)}
.btn-ghost{background:#fff;border-color:var(--line)}
.btn-ghost:hover{background:rgba(255,255,255,.65)}

.hero{padding:10px 0 52px;position:relative}
.hero-inner{
  display:grid;grid-template-columns:1.25fr .75fr;gap:22px;align-items:center;
  padding:28px 0 12px;
}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border:1px solid rgba(45,164,255,.25);
  background:rgba(255,255,255,.7);border-radius:999px;
  color:#0b4a7a;font-weight:600;font-size:13px
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0 18px}
.hero-highlights{display:flex;gap:10px;flex-wrap:wrap}
.pill{
  background:#fff;border:1px solid var(--line);border-radius:999px;
  padding:9px 12px;font-weight:600;font-size:13px
}
.hero-card{
  border:1px solid var(--line);background:#fff;border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow)
}
.hero-photo{
  height:220px;
  background:
    linear-gradient(180deg, rgba(45,164,255,.18), rgba(255,255,255,0)),
    url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
}
.hero-card-body{padding:14px 14px 16px}
.hero-card-title{font-weight:700;margin-bottom:6px}
.hero-wave{
  height:34px;
  background:linear-gradient(90deg, rgba(45,164,255,.20), rgba(45,164,255,.08));
  clip-path:polygon(0 40%, 20% 55%, 40% 45%, 60% 65%, 80% 50%, 100% 62%, 100% 100%, 0 100%);
}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:start}

.card{
  border:1px solid var(--line);border-radius:var(--radius);
  padding:18px 18px;background:#fff;box-shadow:var(--shadow)
}
.card-soft{background:rgba(255,255,255,.7)}
.info-row{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.info{border:1px solid var(--line);border-radius:14px;padding:12px 12px;background:#fff}
.info-k{color:var(--muted);font-size:12px;font-weight:600}
.info-v{font-weight:700;margin-top:4px}

.checklist{margin:10px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.checklist li{
  padding-left:28px;position:relative
}
.checklist li:before{
  content:"✓";position:absolute;left:0;top:0;
  width:20px;height:20px;border-radius:8px;
  background:rgba(45,164,255,.16);color:var(--primary2);
  display:grid;place-items:center;font-weight:800;font-size:13px
}
.note{
  margin-top:14px;padding:12px 12px;border-radius:14px;
  background:#f0f9ff;border:1px dashed rgba(45,164,255,.4);color:#0b4a7a
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.feature{
  border:1px solid var(--line);border-radius:var(--radius);
  padding:18px;background:#fff;box-shadow:var(--shadow)
}
.icon{
  width:40px;height:40px;border-radius:14px;
  background:rgba(45,164,255,.14);
  display:grid;place-items:center;
  font-size:18px;margin-bottom:10px
}

.gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.shot{
  margin:0;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;background:#fff;box-shadow:var(--shadow)
}
.shot-img{
  height:150px;
  background:
    linear-gradient(180deg, rgba(45,164,255,.10), rgba(255,255,255,0)),
    url("assets/g1.jpg");
  background-size:cover;background-position:center;
}
.shot-img[data-img="2"]{background-image:linear-gradient(180deg, rgba(45,164,255,.10), rgba(255,255,255,0)), url("assets/g2.jpg")}
.shot-img[data-img="3"]{background-image:linear-gradient(180deg, rgba(45,164,255,.10), rgba(255,255,255,0)), url("assets/g3.jpg")}
.shot-img[data-img="4"]{background-image:linear-gradient(180deg, rgba(45,164,255,.10), rgba(255,255,255,0)), url("assets/g4.jpg")}
.shot-img[data-img="5"]{background-image:linear-gradient(180deg, rgba(45,164,255,.10), rgba(255,255,255,0)), url("assets/g5.jpg")}
.shot-img[data-img="6"]{background-image:linear-gradient(180deg, rgba(45,164,255,.10), rgba(255,255,255,0)), url("assets/g6.jpg")}
.shot figcaption{padding:12px 12px;font-weight:700}
.help{
  margin-top:16px;
  border:1px solid var(--line);border-radius:var(--radius);
  padding:16px;background:#fff;box-shadow:var(--shadow)
}
.help-title{font-weight:800;margin-bottom:10px}

.faq{border-top:1px solid var(--line);padding:10px 0}
.faq:first-of-type{border-top:none;padding-top:0}
.faq-q{
  width:100%;text-align:left;background:transparent;border:0;padding:12px 0;
  font-weight:700;cursor:pointer
}
.faq-a{display:none;color:var(--muted);padding-bottom:12px}
.faq.open .faq-a{display:block}

.steps{display:grid;gap:10px;margin-top:16px}
.step{display:flex;gap:12px;align-items:flex-start}
.step-n{
  width:34px;height:34px;border-radius:12px;background:rgba(45,164,255,.14);
  display:grid;place-items:center;font-weight:900;color:var(--primary2)
}
.step-t{font-weight:800}

.map{padding:0;overflow:hidden}
.map-top{padding:16px 16px 10px;display:flex;align-items:baseline;justify-content:space-between}
.map-title{font-weight:900}
.map-placeholder{height:260px;background:linear-gradient(180deg,#e6f5ff,#ffffff);border-top:1px solid var(--line)}
.map-hint{padding:12px 16px 16px}

.contacts{
  display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:12px;margin-top:16px
}
.contact{display:grid;gap:6px}
.contact-k{color:var(--muted);font-weight:700;font-size:12px}
.contact-v{font-weight:900}

.cta{
  margin-top:18px;
  border:1px solid var(--line);border-radius:var(--radius);
  padding:16px;background:#fff;box-shadow:var(--shadow);
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap
}
.cta-title{font-weight:900}

.footer{padding:26px 0;border-top:1px solid var(--line);background:#fff}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.brand--footer .brand-mark{width:34px;height:34px}
.brand--footer .brand-text{font-weight:800}

@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  h1{font-size:44px}
  .grid-2{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .gallery{grid-template-columns:repeat(2, minmax(0,1fr))}
  .contacts{grid-template-columns:1fr}
  .nav{gap:10px}
  .nav-toggle{display:inline-block}
  .nav-links{
    position:absolute;left:20px;right:20px;top:64px;
    background:#fff;border:1px solid var(--line);border-radius:18px;
    padding:10px;display:none;flex-direction:column;gap:6px;box-shadow:var(--shadow);
    z-index: 1000;
  }
  .nav-links.open{display:flex}
  .site-header{
    position:relative;
  }
}

@media (max-width: 520px){
  h1{font-size:36px}
  .cards,.gallery{grid-template-columns:1fr}
  .section{padding:72px 0}
}
.hero-card{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);

  max-width: 420px;
  width: 100%;
}

.hero-video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}


.booking-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-note {
  font-size: 13px;
  text-align: center;
}

/* Booking v2 */
.product-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.product-card{
  text-align:left;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff,rgba(255,255,255,.92));
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.product-card:hover{ transform:translateY(-1px); box-shadow:0 10px 25px rgba(0,0,0,.06); }
.product-card.selected{ border-color:var(--primary); box-shadow:0 12px 28px rgba(16,108,255,.18); }

.pc-title{ font-weight:700; }
.pc-price{ margin-top:6px; font-weight:700; color:var(--primary); }
.pc-desc{ margin-top:6px; font-size:13px; }

.booking-summary{ display:grid; gap:10px; }
.summary-row{ display:flex; justify-content:space-between; align-items:center; }
.summary-total{ font-weight:800; font-size:18px; }

.booking-result{ margin-top:18px; }
.result-codes{ display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:start; }
.code-big{ font-size:34px; font-weight:900; letter-spacing:3px; color:#0b1a2a; padding:10px 14px; border-radius:14px; border:1px dashed var(--line); background:rgba(16,108,255,.06); text-align:center; }

@media (max-width: 720px){
  .product-grid{ grid-template-columns:1fr; }
  .result-codes{ grid-template-columns:1fr; }
}

