:root{
  --e1:#6d28d9; /* violet */
  --e2:#0ea5e9; /* sky */
  --card: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.12);
  --textDim: rgba(255,255,255,.72);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ overflow-x:hidden; }

.eclipse-bg{
  min-height:100vh;
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(109,40,217,.35), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(14,165,233,.30), transparent 55%),
    linear-gradient(180deg, #070A12, #070A12);
}

.eclipse-nav{
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand-logo{ height: 30px; width:auto; }

.eclipse-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
}

.btn-eclipse{
  background: linear-gradient(90deg, var(--e1), var(--e2));
  border: none;
  color:#fff;
  font-weight: 800;
}
.btn-eclipse:hover{ filter: brightness(1.06); color:#fff; }

.glow-badge{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  padding: 8px 12px;
  border-radius: 999px;
}

.text-glow{
  background: linear-gradient(90deg, rgba(109,40,217,1), rgba(14,165,233,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-img{
  height: 380px;
  object-fit: cover;
}

.feature-pill{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

.mini-stat{
  display:flex;
  gap:12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.mini-stat-icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  font-size: 18px;
}

.section-head{ margin-bottom: 12px; }

.plan-badge{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.price{ font-size: 34px; font-weight: 900; letter-spacing: -0.5px; }

.plan-icon{
  width: 52px; height: 52px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  font-size: 22px;
}

.featured{
  position: relative;
  outline: 1px solid rgba(14,165,233,.25);
  box-shadow: 0 18px 50px rgba(14,165,233,.12);
}
.ribbon{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--e1), var(--e2));
  color: #fff;
}

.note-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
}
.note-icon{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color:#fff;
}

.gallery-tile{
  position:relative;
  display:block;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.gallery-tile img{
  height: 190px;
  object-fit: cover;
  transition: transform .18s ease;
}
.gallery-tile:hover img{ transform: scale(1.04); }

.gallery-overlay{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.25);
  opacity:0;
  transition: opacity .18s ease;
  color:#fff;
  font-size: 26px;
}
.gallery-tile:hover .gallery-overlay{ opacity:1; }

.step-no{
  width: 42px; height: 42px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, var(--e1), var(--e2));
}

.eclipse-acc{
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow:hidden;
  margin-bottom: 10px;
}
.accordion-button{
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.92) !important;
}
.accordion-button:focus{
  box-shadow: 0 0 0 .2rem rgba(14,165,233,.25) !important;
}
.accordion-body{
  background: rgba(255,255,255,.04);
  color: var(--textDim);
}

.form-control, .form-select{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: white !important;
}
.form-control::placeholder{ color: rgba(255,255,255,.55); }

.footer-dim{ color: rgba(255,255,255,.60); }

/* Disco ball (pure CSS) */
.disco-ball{
  position:absolute;
  top:-14px;
  left:-14px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,0) 35%),
    conic-gradient(from 0deg,
      rgba(255,255,255,.20), rgba(255,255,255,.05), rgba(255,255,255,.18), rgba(255,255,255,.04),
      rgba(255,255,255,.20), rgba(255,255,255,.05), rgba(255,255,255,.18), rgba(255,255,255,.04)
    );
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  overflow:hidden;
  pointer-events:none;
}
.disco-ball:before{
  content:"";
  position:absolute; inset:-30%;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.10) 0 10px, rgba(255,255,255,.02) 10px 20px),
    repeating-linear-gradient(0deg, rgba(0,0,0,.10) 0 10px, rgba(255,255,255,.02) 10px 20px);
  transform: rotate(10deg);
  opacity:.55;
}
.disco-ball:after{
  content:"";
  position:absolute;
  top:-26px; left:50%;
  width: 10px; height: 26px;
  background: rgba(255,255,255,.35);
  transform: translateX(-50%);
  border-radius: 10px;
}

.hero-wrap{ position:relative; }
.hero-glow{
  position:absolute;
  inset:-40px -20px auto auto;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(14,165,233,.22), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}

.package-poster{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
  background: rgba(255,255,255,.05);
}
.package-poster img{ width:100%; height:auto; display:block; }

/* Snow canvas */
#snowCanvas{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .75;
}

/* Mobile sticky bar */
.mobile-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 10000;
  display:none;
}
.mobile-cta .btn{ border-radius: 999px; font-weight: 800; }
@media (max-width: 575px){
  .hero-img{ height: 260px; }
  .price{ font-size: 30px; }
  .mobile-cta{ display:flex; gap:10px; }
}

/* === IZLOG / DISCO LAYER (LASERS + NEON TILES) === */
.laser-wrap{ position: relative; overflow: hidden; }
.laser-overlay{
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,0,200,.14), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,210,255,.14), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.10) 0 2px, rgba(255,255,255,0) 2px 42px);
  transform: rotate(-8deg);
  filter: blur(0.2px);
  opacity: .55;
  pointer-events:none;
  animation: laserMove 7s linear infinite;
}
@keyframes laserMove{
  0%{ transform: translateX(-3%) rotate(-8deg); opacity:.45; }
  50%{ transform: translateX(3%) rotate(-8deg); opacity:.65; }
  100%{ transform: translateX(-3%) rotate(-8deg); opacity:.45; }
}

.neon-tile{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 14px 10px;
  position: relative;
  overflow:hidden;
}
.neon-tile:before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(90deg, rgba(255,0,200,.20), rgba(0,210,255,.18));
  filter: blur(14px);
  opacity:.35;
  pointer-events:none;
}
.neon-ico{
  width: 44px; height: 44px;
  margin: 0 auto 8px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.neon-txt{
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .2px;
}
