:root{
  --bg:#04140d;
  --bg-soft:#062015;
  --primary:#9fd93a;
  --accent:#6fae1e;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --border:rgba(148,163,184,.3);
}

*{box-sizing:border-box;margin:0;padding:0}
body{font-family:system-ui,Segoe UI,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
a{color:var(--primary);text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:1100px;margin:0 auto;padding:0 1.2rem}

.header{position:sticky;top:0;z-index:50;background:rgba(4,20,13,.95);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:1.2rem 0;gap:1.2rem}

.brand{display:flex;align-items:center;gap:.8rem}
.logo{width:200px;height:auto;object-fit:contain;transition:.25s}
.logo:hover{transform:scale(1.03)}

.menu{display:flex;gap:1.2rem}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#04210f;
  padding:.55rem 1.2rem;
  border-radius:999px;
  font-weight:600
}
.btn-secondary{
  border:1px solid var(--border);
  padding:.55rem 1.2rem;
  border-radius:999px;
  color:var(--text)
}

/* ===== HERO ===== */
.hero{padding:3rem 0;background:radial-gradient(circle at top,#083021,#04140d 60%)}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:2rem;align-items:center}
.hero h1{font-size:2.6rem;line-height:1.15}
.hero h1 span{color:var(--primary)}
.hero p{margin-top:.8rem;color:var(--muted)}
.hero-actions{margin-top:1.2rem;display:flex;gap:.8rem}
.hero-card{background:var(--bg-soft);border:1px solid var(--border);border-radius:18px;padding:1.2rem}
.hero-card .open{margin-top:.5rem;color:var(--primary);font-weight:600}
.hero-photo{width:100%;max-height:220px;object-fit:cover;border-radius:14px;border:1px solid var(--border)}

/* ===== SEKCJE ===== */
.section{padding:3rem 0}
.section-soft{background:var(--bg-soft)}
.section h2{margin-bottom:1.2rem}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.card{background:var(--bg-soft);border:1px solid var(--border);border-radius:16px;padding:1.2rem;text-align:center}

.two-col{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem}

/* ===== DLACZEGO MY ===== */
#dlaczego h2{font-size:2.2rem;font-weight:800}
#dlaczego li{font-size:1.1rem;font-weight:700;margin-bottom:.6rem}
#dlaczego li::marker{color:var(--primary)}

/* ===== GALERIA ===== */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem}
.gallery-thumb{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  cursor:pointer;
  transition:.25s
}
.gallery-thumb:hover{transform:scale(1.03)}

/* ===== LIGHTBOX ===== */
#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999
}
#lightbox img{
  max-width:95vw;
  max-height:95vh;
  border-radius:16px;
  border:2px solid var(--primary)
}

/* ===== FORMULARZE ===== */
.contact-form{display:grid;gap:.6rem}
input,textarea{
  background:#0a2a1d;
  border:1px solid var(--border);
  border-radius:10px;
  padding:.55rem;
  color:var(--text)
}
textarea{min-height:100px}

/* ===== STOPKA ===== */
.footer{border-top:1px solid var(--border);padding:1.5rem 0;font-size:.85rem;color:var(--muted);text-align:center}

/* =======================================================
   ===== PIONOWA OŚ STATUSU – KLIENT =====
======================================================= */

.vertical-timeline{
  position:relative;
  margin-top:2rem;
  padding-left:28px;
  border-left:3px solid #22c55e;
}

.vt-step{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:1.8rem;
  position:relative;
}
.vt-step{
  opacity:0;
  transform:translateX(-20px);
  animation: stepIn .5s ease forwards;
}

.vt-step:nth-child(1){animation-delay:.1s}
.vt-step:nth-child(2){animation-delay:.2s}
.vt-step:nth-child(3){animation-delay:.3s}
.vt-step:nth-child(4){animation-delay:.4s}
.vt-step:nth-child(5){animation-delay:.5s}
.vt-step:nth-child(6){animation-delay:.6s}
.vt-step:nth-child(7){animation-delay:.7s}

@keyframes stepIn{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

.vt-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#9ca3af;
  position:absolute;
  left:-9px;
  top:4px;
  transition:.25s;
}

.vt-box{
  background:#0f172a;
  padding:10px 16px;
  border-radius:10px;
  font-size:14px;
  min-width:220px;
  border:1px solid #1f2933;
  transition:.25s;
}

.vt-title{font-weight:700;color:#e5e7eb}
.vt-date{font-size:12px;color:#9ca3af;margin-top:4px}

/* ✅ WYKONANE */
.vt-step.done .vt-dot{background:#22c55e}
.vt-step.done .vt-box{border-color:#22c55e}

/* ✅ AKTUALNY */
.vt-step.active .vt-dot{
  background:#9fd93a;
  box-shadow:0 0 0 4px rgba(159,217,58,.35)
}
.vt-step.active .vt-box{
  border-color:#9fd93a;
  background:#102a1c;
  animation:vt-pop .45s ease-out;
}

.vt-step.future {
  opacity: .25;
  filter: grayscale(100%);
}

.vt-step.future .vt-box{
  border-color:#374151;
  background:#020617;
}

/* ❌ ANULOWANE */
.cancel-box{
  margin-top:2rem;
  padding:16px;
  border-radius:10px;
  background:#450a0a;
  border:2px solid #dc2626;
  color:#fecaca;
  font-weight:700;
  text-align:center;
}

/* ✅ ANIMACJA */
@keyframes vt-pop{
  0%{transform:translateX(-6px);opacity:0}
  60%{transform:translateX(2px);opacity:1}
  100%{transform:translateX(0);opacity:1}
}

/* 🎆 FAJERWERKI DLA OSTATNIEGO STATUSU */
.vt-step.finish .vt-dot {
    background: #22c55e;
    box-shadow:
        0 0 10px #22c55e,
        0 0 20px #22c55e,
        0 0 40px #22c55e;
    animation: fireworks 1.2s infinite ease-in-out;
}
.vt-step.finish .vt-box{
  box-shadow: 0 0 18px rgba(34,197,94,.75);
  animation: glowPulse 1.4s infinite alternate;
}

@keyframes glowPulse{
  from{box-shadow:0 0 12px rgba(34,197,94,.6)}
  to{box-shadow:0 0 26px rgba(34,197,94,1)}
}

.vertical-timeline{
  overflow:hidden;
}

.vertical-timeline::after{
  content:"";
  position:absolute;
  left:-3px;
  top:0;
  width:3px;
  height:100%;
  background:#22c55e;
  animation: lineDraw 1.2s ease-out forwards;
}

@keyframes lineDraw{
  from{height:0}
  to{height:100%}
}

@keyframes fireworks {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px #22c55e;
    }
    50% {
        transform: scale(1.4);
        box-shadow:
            0 0 20px #22c55e,
            0 0 40px #22c55e,
            0 0 80px #22c55e;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px #22c55e;
    }
}

.vt-step.finish .vt-box {
    border-color: #22c55e;
    background: linear-gradient(135deg, #022c22, #064e3b);
}
.vt-time{
  width:120px;
  font-size:12px;
  color:#9ca3af;
  text-align:right;
  padding-top:4px;
}
.vt-dot{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#062400;
  font-size:13px;
  font-weight:900;
}
/* ============================
   ✅ POPRAWKA MENU PO DODANIU "ZLEĆ NAPRAWĘ"
============================ */

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.2rem 0;
  gap:1.2rem;
  flex-wrap:nowrap; /* 👈 KLUCZ: wszystko w jednym wierszu */
}

.menu{
  display:flex;
  gap:1.2rem;
  flex-wrap:wrap;   /* 👈 zawija się tylko menu */
}

.menu a{
  white-space:nowrap;
}

.btn-primary{
  flex-shrink:0;
  margin-left:1rem; /* ładny odstęp od menu */
}
/* ===== BUTTONY W MENU ===== */
.menu a{
  padding:.45rem 1rem;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(6,32,21,.6);
  color:var(--text);
  font-weight:600;
  font-size:.9rem;
  transition:.25s;
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu a:hover{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#04210f;
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,.35);
}

/* aktywna sekcja – jeśli dodasz class="active" */
.menu a.active{
  background:var(--primary);
  color:#04210f;
  border-color:transparent;
  box-shadow:0 0 0 3px rgba(159,217,58,.25);
}

.opinie-note{
  margin-top:.6rem;
  text-align:center;
  font-size:.8rem;
  color:var(--muted);
  opacity:.85;
  line-height:1.4;
}
section[id]{
  scroll-margin-top: 200px;
}

/* ===== SELECT – RODZAJ SPRZĘTU (DOPASOWANY DO MOTYWU) ===== */

.select-dark{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  background:#0a2a1d;
  border:1px solid var(--border);
  border-radius:12px;
  padding:.6rem .9rem;
  padding-right:2.2rem;

  color:var(--text);
  font-size:.95rem;
  cursor:pointer;

  background-image:
    linear-gradient(45deg,transparent 50%,var(--primary) 50%),
    linear-gradient(135deg,var(--primary) 50%,transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

.select-dark:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(159,217,58,.25);
}

.select-dark option{
  background:#04140d;
  color:#e5e7eb;
}

/* placeholder */
.select-dark option[value=""]{
  color:#9ca3af;
}


/* ===== RESPONSYWNOŚĆ ===== */
@media(max-width:900px){
  .hero-grid,.two-col{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
}
@media(max-width:700px){
  .gallery-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:520px){
  .menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    width:100%;
    gap:.6rem;
    padding-top:.6rem;
  }

  .menu a{
    border:1px solid var(--border);
    padding:.35rem .9rem;
    border-radius:999px;
    font-size:.75rem;
    background:var(--bg-soft);
  }

  .nav{
    flex-direction:column;
    align-items:center;
  }

  .logo{width:120px}
}
