/* --- ZMIENNE --- */
:root {
    --bg: #0a0a0a;             /* Czerń */
    --bg-light: #141414;       /* Ciemny grafit */
    --gold: #FFC800;           /* Złoto */
    --gold-dark: #cc9a00;
    --text: #ffffff;
    --text-muted: #a1a1a1;
    --glass: rgba(255, 255, 255, 0.05);
    --border: 1px solid rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    padding-bottom: 70px; /* Miejsce na pasek mobile */
}

/* --- GLÓWNE KLASY --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section { padding: 80px 0; }
.gold-text { color: var(--gold); }

/* --- NAWIGACJA --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(10px);
    border-bottom: var(--border); padding: 15px 0;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { 
    font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; 
    display: flex; align-items: center; gap: 5px;
}
.logo i { color: var(--gold); font-size: 1.8rem; }

.desktop-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.desktop-menu a { text-decoration: none; color: #ddd; font-weight: 500; transition: 0.3s; }
.desktop-menu a:hover { color: var(--gold); }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.hamburger span { display: block; width: 25px; height: 3px; background: #fff; border-radius: 2px; }

/* Menu Mobile Overlay */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); z-index: 900;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateY(-100%); transition: 0.4s ease;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-link { font-size: 2rem; color: #fff; text-decoration: none; margin: 20px 0; font-weight: 700; }

/* --- HERO SECTION --- */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=1920&auto=format&fit=crop');
    background-size: cover; background-position: center;
    background-attachment: fixed; /* Parallax */
    z-index: -2;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: -1;
}

.hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: #ccc; max-width: 600px; margin: 0 auto 30px; }
.badge { color: var(--gold); font-weight: 800; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 15px; }

/* Przyciski */
.btn-gold, .btn-gold-sm {
    background: var(--gold); color: #000; padding: 12px 30px;
    font-weight: 700; text-decoration: none; border-radius: 5px; display: inline-block;
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-gold-sm { padding: 8px 20px; font-size: 0.9rem; }

.btn-outline {
    border: 2px solid #fff; color: #fff; padding: 12px 30px;
    font-weight: 700; text-decoration: none; border-radius: 5px; display: inline-block;
    margin-left: 10px;
}
.btn-outline:hover { background: #fff; color: #000; }

/* --- USŁUGI --- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.gold-line { width: 60px; height: 4px; background: var(--gold); margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.glass-card {
    background: var(--glass); border: var(--border); padding: 30px;
    border-radius: 10px; transition: 0.3s;
}
.glass-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.glass-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.glass-card p { color: var(--text-muted); }

/* --- CENNIK I KALKULATOR --- */
.dark-section { background: var(--bg-light); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.price-list { list-style: none; margin-top: 30px; }
.price-list li {
    display: flex; justify-content: space-between; border-bottom: 1px solid #333;
    padding: 15px 0;
}
.price-list strong { color: var(--gold); }

/* Formularz Kalkulatora */
.glass-form {
    background: #000; border: 1px solid var(--gold);
    padding: 30px; border-radius: 10px;
}
.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; color: #ccc; }
.input-group input {
    width: 100%; padding: 10px; background: #222; border: 1px solid #444;
    color: #fff; border-radius: 5px; text-align: center; font-size: 1.1rem;
}
.checkbox-group label { display: block; margin-bottom: 10px; cursor: pointer; }

.result-box {
    margin-top: 20px; padding-top: 20px; border-top: 1px solid #333;
    display: flex; justify-content: space-between; align-items: center;
}
#total-price { font-size: 2rem; color: var(--gold); font-weight: 800; }
.small-note { font-size: 0.8rem; color: #666; margin-top: 10px; }

/* --- KONTAKT & TRUST --- */
.trust-box {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 50px;
}
.badges { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.badge-item { display: flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; }

.contact-row {
    display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
    background: rgba(255,255,255,0.03); padding: 15px; border-radius: 8px;
    text-decoration: none; color: #fff; transition: 0.3s;
}
.contact-row:hover { background: rgba(255,200,0,0.1); }
.contact-row i { font-size: 2rem; color: var(--gold); }
.contact-row span { font-size: 0.8rem; color: #888; display: block; }
.contact-row strong { font-size: 1.2rem; }

/* --- FOOTER --- */
footer { text-align: center; padding: 30px; color: #555; font-size: 0.9rem; }

/* --- STICKY MOBILE --- */
.mobile-sticky-bar {
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 2000;
    display: none; background: #000; border-top: 1px solid #333;
}
.sticky-btn {
    flex: 1; padding: 15px; text-align: center; text-decoration: none;
    font-weight: 700; display: flex; justify-content: center; align-items: center; gap: 10px;
}
.sticky-btn.call { background: var(--gold); color: #000; }
.sticky-btn.msg { background: #111; color: #fff; }

/* --- RWD (MEDIA QUERIES) --- */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { display: flex; flex-direction: column; gap: 10px; }
    .btn-outline { margin-left: 0; }
    
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
    
    .split-layout, .trust-box { grid-template-columns: 1fr; }
    
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 60px; }
    
    .trust-box { padding: 20px; }
    /* Fix Parallax on Mobile */
    .hero-bg { background-attachment: scroll; }
}

/* --- NOWY CENNIK STYLES --- */
.price-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-category h4 {
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-category h4 i {
    color: var(--gold);
}

.price-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-list li:last-child {
    border-bottom: none;
}

/* Przyklejony kalkulator na desktopie */
@media (min-width: 900px) {
    .sticky-form {
        position: sticky;
        top: 100px; /* Odstęp od góry ekranu */
    }
}