/* ==========================================================================
   STRONA GŁÓWNA (INDEX.HTML) - STYLE
   ========================================================================== */

/* 1. ZMIENNE I RESET */
:root {
    --bg-dark: #050505;
    --bg-light: #0f0f0f;
    --primary: #8a2be2;   /* Fiolet neon */
    --secondary: #00e5ff; /* Błękit neon */
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --gradient: linear-gradient(90deg, var(--primary), var(--secondary));
    --card-bg: #161616;
}

/* Połączony reset i blokada zaznaczania */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Wyjątek dla pól formularza - zostawiamy, aby można było wpisywać tekst */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* 2. STYLE OGÓLNE I UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.dark-bg { background-color: var(--bg-light); }

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   NAVBAR (GLOBALNY) - NOWY STYL
   ========================================================================== */
   /* ==========================================================================
   NAVBAR (POPRAWIONY - DZIAŁA NA KOMPIE I TELEFONIE)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.85); /* Ciemne tło */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.logo img {
    height: 45px;
    width: auto;
    transition: 0.3s;
}
.logo img:hover { transform: scale(1.05); }

/* --- WIDOK KOMPUTEROWY (DOMYŚLNY) --- */
.nav-links {
    display: flex !important; /* Wymuszamy pokazanie na komputerze */
    flex-direction: row;      /* Linki w rzędzie */
    list-style: none;
    gap: 30px;
    position: static;         /* Normalna pozycja, nie "fixed" */
    height: auto;
    background: transparent;
    width: auto;
    transform: none;          /* Resetujemy przesunięcia */
    padding: 0;
}

.nav-links li {
    opacity: 1; /* Widoczne */
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    padding: 10px 0;
}

.nav-links li a:hover {
    color: var(--secondary);
}

/* Ukrywamy burgera na komputerze */
.burger {
    display: none; 
}

/* SOCIALE W NAVBARZE (KOMPUTER) */
.nav-socials {
    display: flex;
    gap: 10px;
}
.nav-social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}
.nav-social-circle:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* DROPDOWN (KOMPUTER) */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #0f0f0f;
    min-width: 200px;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--secondary);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 10px 0;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #ccc;
}
.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}


/* --- WIDOK MOBILNY (TELEFON/TABLET) --- */
/* To zadziała TYLKO gdy ekran jest mniejszy niż 1100px */
@media (max-width: 1100px) {
    
    /* Pokazujemy burgera */
    .burger { 
        display: block; 
        cursor: pointer;
        z-index: 1001; 
    }
    
    .burger div {
        width: 25px; height: 3px; background-color: white; margin: 5px; transition: 0.3s;
    }

    /* Animacja X burgera */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    /* Ukrywamy sociale z nagłówka na telefonie (za mało miejsca) */
    .nav-socials { display: none; }

    /* Zmieniamy menu w wysuwany panel */
    .nav-links {
        /* Nadpisujemy style komputerowe */
        position: fixed;
        right: 0;
        top: 90px;
        height: calc(100vh - 90px);
        background: #000;
        display: flex !important;
        flex-direction: column; /* Pionowo */
        align-items: center;
        width: 100%;
        transform: translateX(100%); /* Chowamy poza ekran */
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        border-top: 1px solid #333;
    }
    
    /* Klasa dodawana przez JS - wysuwa menu */
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0; /* Animacja wjazdu poszczególnych linków */
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }
    
    .nav-links li a {
        font-size: 1.5rem; /* Większe litery na telefonie */
    }

    /* Dropdown na telefonie - zawsze widoczny pod spodem */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        transform: none;
        display: none; /* Domyślnie zwinięte */
        padding-left: 0;
    }
    
    /* Prosty trick: po kliknięciu w "Oferta" (hover na telefonie to też klik) */
    .dropdown:hover .dropdown-menu {
        display: block; 
    }
    .dropdown-menu li a {
        text-align: center;
        font-size: 1.1rem;
        color: #888;
    }
}

@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   4. HERO SECTION (HOME - DESIGN "BIG LOGO")
   ========================================================================== */
   .hero-home {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 60% 50%, #1a0b2e 0%, #050505 70%); /* Tło dopasowane do zdjęcia */
    overflow: hidden;
    padding-top: 60px;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+'); /* Delikatny szum */
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.hero-home-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 80% !important;
    padding: 0 2%;
}

/* --- LEWA STRONA (TEKSTY) --- */
.hero-text-content {
    flex: 1.2; /* Dajemy więcej miejsca na tekst/logo */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5; /* Tekst nad zdjęciem w razie nałożenia */
}

/* LOGO - OGROMNE */
.hero-main-logo {
    width: 200%; /* Wychodzi poza swój kontener */
    max-width: 950px; /* Limit wielkości, ale bardzo duży */
    height: auto;
    margin-bottom: 10px;
    margin-left: -5%; /* Lekkie przesunięcie w lewo dla balansu */
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.3));
}

/* IMIĘ - WIĘKSZE, JEDNA LINIA, POGRUBIONE */
.hero-name {
    font-size: 2.5rem;
    font-weight: 900; /* Najgrubszy możliwy */
    text-transform: uppercase;
    color: white;
    margin: 0 0 5px 0;
    line-height: 1;
    white-space: nowrap; /* Jedna linia */
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* SLOGAN - GRUBY I WIĘKSZY */
.hero-slogan {
    font-size: 2rem;
    font-weight: 900; /* Całe pogrubione */
    color: white;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap; /* Jedna linia */
}

/* PRZYCISK - DUŻY I W JEDNEJ LINII */
.hero-cta {
    padding: 22px 60px; /* Duży padding */
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap; /* Zabrania łamania tekstu */
    background: linear-gradient(90deg, #c0392b, #e74c3c); /* Czerwony styl */
    border: none;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
}
.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(192, 57, 43, 0.6);
}

/* --- PRAWA STRONA (ZDJĘCIE) --- */
    .hero-img-content {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        position: relative;
    }

    .hero-dj-img {
        max-height: 90vh; /* Wysokie zdjęcie */
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 0 50px rgba(138, 43, 226, 0.15));
        
        /* PRZESUNIĘCIE W LEWO O 10-15% */
        transform: translateX(-5%); 
    }

/* --- ELEMENTY BOCZNE --- */

/* SCROLL (STARY STYL - PIONOWY) */
.side-scroll-container {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column; /* Pionowy układ kontenera */
    align-items: center;
    gap: 10px;
}

.scroll-text {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    writing-mode: vertical-rl; /* Tekst pionowy */
    transform: rotate(180deg); /* Obrót, żeby czytało się od dołu do góry */
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff 50%, transparent 50%);
    background-size: 1px 10px; /* Przerywana linia */
    opacity: 0.5;
}

/* SOCIALE (PRAWY DÓŁ) */
.side-socials-container {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-socials-container a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.side-socials-container a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

/* --- RWD (TELEFON) --- */
@media (max-width: 1100px) {
    .hero-name { font-size: 2rem; }
    .hero-slogan { font-size: 1.2rem; }
    .hero-main-logo { max-width: 500px; }
    .hero-dj-img { transform: translateX(0); } /* Reset przesunięcia na mniejszym ekranie */
}

@media (max-width: 900px) {
    .hero-home { height: auto; min-height: 100vh; padding-bottom: 80px; }
    .hero-home-container { flex-direction: column-reverse; justify-content: center; }
    .hero-text-content { padding-left: 0; align-items: center; text-align: center; margin-top: -30px; }
    .hero-main-logo { max-width: 90%; }
    .hero-name { white-space: normal; } /* Na telefonie pozwalamy łamać linię */
    .hero-img-content { width: 100%; height: 50vh; justify-content: center; }
    .hero-dj-img { max-height: 100%; transform: translateX(0); }
    .side-scroll-container { display: none; }
    .side-socials-container { flex-direction: row; bottom: 20px; right: 50%; transform: translateX(50%); }
}


/* 5. ABOUT SECTION */
.about-content { text-align: center; max-width: 800px; margin: 0 auto 50px auto; color: #ccc; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: #161616; padding: 30px; border-radius: 15px; border: 1px solid #222; text-align: center; transition: 0.3s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.feature-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; color: white; }
.feature-card p { font-size: 0.9rem; color: #999; }

/* 6. OFFER SECTION - 4 w rzędzie */
.offer-grid {
    display: grid;
    /* To zapewnia 4 kolumny obok siebie */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.offer-card {
    background: #111;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}
.offer-card:hover { border-color: var(--secondary); transform: translateY(-5px); }
.offer-card i {
    font-size: 3rem; margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.offer-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: white; }
.offer-card p { font-size: 0.9rem; color: #888; margin-bottom: 25px; flex-grow: 1; }

.btn-card {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-card:hover { background: var(--primary); color: white; }

/* 7. REVIEWS SECTION (Slider) */
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-window { width: 100%; overflow: hidden; padding: 20px 0; }
.reviews-track { display: flex; gap: 20px; transition: transform 0.5s ease-in-out; }
.review-card {
    min-width: calc((100% - 40px) / 3); 
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.review-source { color: #4267B2; font-size: 1.2rem; }
.review-source.fa-google { color: #DB4437; }
.review-source.fa-instagram { color: #C13584; }
.stars { color: #f1c40f; letter-spacing: 2px; }
.review-text { font-style: italic; font-size: 0.9rem; color: #ccc; margin-bottom: 15px; }
.review-author { font-weight: 700; text-align: right; color: white; font-size: 0.9rem; }
.slider-btn {
    background: #111; border: 1px solid #333; color: white;
    width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; font-size: 1rem; transition: 0.3s;
    z-index: 10; position: absolute;
}
.slider-btn:hover { border-color: var(--secondary); color: var(--secondary); }
.prev-btn { left: -50px; }
.next-btn { right: -50px; }

.more-text { display: none; }
.read-more-btn {
    color: var(--text-muted); /* Neonowy błękit */
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 5px;
    text-transform: uppercase;
    transition: 0.3s;
}
.read-more-btn:hover {
    color: var(--text-main); /* Neonowy fiolet po najechaniu */
    text-decoration: underline;
}
/* 8. GALLERY & LIGHTBOX */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { position: relative; height: 250px; overflow: hidden; border-radius: 10px; border: 1px solid #333; cursor: pointer; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.1); }

/* Lightbox Modal */
.lightbox {
    display: none; position: fixed; z-index: 2000; padding-top: 60px;
    left: 0; top: 0; width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0, 0, 0, 0.95); backdrop-filter: blur(5px);
}
.lightbox-content {
    margin: auto; display: block; width: 80%; max-width: 1000px;
    max-height: 80vh; object-fit: contain; border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5); animation: zoomIn 0.3s;
}
@keyframes zoomIn { from {transform:scale(0)} to {transform:scale(1)} }
.close-lightbox { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; z-index: 2001; }
.close-lightbox:hover { color: var(--secondary); }
.lightbox-nav { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -50px; color: white; font-weight: bold; font-size: 40px; transition: 0.3s; user-select: none; z-index: 2001; }
.lightbox-nav:hover { color: var(--secondary); background: rgba(0,0,0,0.5); border-radius: 5px; }
.prev { left: 20px; }
.next { right: 20px; }

/* 9. FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #222; margin-bottom: 15px; }
.faq-question { padding: 15px 0; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-question:hover { color: var(--secondary); }
.faq-answer { padding-bottom: 15px; color: var(--text-muted); display: none; font-size: 0.95rem; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active i { transform: rotate(45deg); transition: 0.3s; }

/* 10. CONTACT */

/* 2. UKŁAD KONTAKTU NA GŁÓWNEJ (Obok siebie) */
.main-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Pół na pół */
    gap: 60px;
    align-items: start;
    padding: 80px 20px;
    text-align: left;
}

/* Style tekstów po lewej */
.contact-heading {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.main-contact-details {
    margin: 40px 0;
    border-left: 3px solid var(--secondary);
    padding-left: 20px;
}

.main-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.main-contact-row i { color: var(--secondary); }

.main-socials-list {
    display: flex;
    gap: 15px;
}

/* 3. STYLIZACJA FORMULARZA (NAPRAWA WYGLĄDU) */
.main-contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-form-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.main-input {
    display: block !important;
    width: 100% !important;
    height: 50px !important; /* Wymuszona wysokość pól */
    background: #1a1a1a !important; /* Ciemniejsze tło wewnątrz */
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    color: white !important;
    padding: 0 15px !important;
    margin-bottom: 15px !important;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box !important;
}

.main-form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.main-btn-submit {
    background: var(--secondary) !important;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.main-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
}

/* Responsywność */
@media (max-width: 900px) {
    .main-contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .main-contact-details { border: none; padding: 0; }
    .main-contact-row, .main-socials-list { justify-content: center; }
}
/* Specyficzne poprawki dla textarea i select */
textarea.main-input {
    height: auto !important;
    padding: 15px !important;
}
select.main-input {
    appearance: none; /* Usuwa systemową strzałkę */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    cursor: pointer;
}

/* Naprawa rzędu (Telefon i Email) */
.main-form-row-split {
    display: flex !important;
    gap: 15px;
    margin-bottom: 0px; /* Reset, bo inputy mają swój margin */
}

.main-form-row-split .main-input {
    flex: 1; /* Każdy zajmuje połowę */
}

/* Social Icons */
.social-icons-wrapper { display: flex; gap: 20px; flex-wrap: wrap; }
.social-circle { width: 70px; height: 70px; border-radius: 50%; background: #1a1a1a; border: 1px solid #333; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; text-decoration: none; transition: 0.4s; }
.social-circle:hover { transform: translateY(-8px) scale(1.1); color: white; border-color: transparent; }
.tiktok:hover { background: #000; box-shadow: 0 0 25px rgba(255, 0, 80, 0.6); }
.insta:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 0 25px rgba(214, 36, 159, 0.6); }
.fb:hover { background: #1877F2; box-shadow: 0 0 25px rgba(24, 119, 242, 0.6); }
.mail:hover { background: var(--primary); box-shadow: 0 0 25px rgba(138, 43, 226, 0.6); }
.phone:hover { background: var(--secondary); box-shadow: 0 0 25px rgba(0, 229, 255, 0.6); }

/* Formularz */
.contact-form { background: #111; padding: 40px; border-radius: 20px; border: 1px solid #222; }
.form-title { font-size: 1.8rem; margin-bottom: 25px; text-transform: uppercase; color: white; }
.contact-form input, .contact-form textarea { width: 100%; padding: 18px 20px; margin-bottom: 20px; background: #080808; border: 1px solid #333; color: white; border-radius: 10px; font-size: 1rem; font-family: 'Montserrat', sans-serif; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--secondary); background: #000; }
.form-row-split { display: flex; gap: 20px; }
.form-row-split input { flex: 1; }
.btn-form-submit { width: 100%; }
.btn-main { display: inline-block; padding: 18px 45px; background: var(--gradient); color: white; border: none; border-radius: 50px; font-weight: 700; cursor: pointer; text-transform: uppercase; text-decoration: none; transition: 0.3s; font-size: 1rem; box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3); }
.btn-main:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.4); }

/* 11. FOOTER */
/* ==========================================================================
   FOOTER (GLOBALNY)
   ========================================================================== */
   footer {
    background: #000000; /* Głęboka czerń */
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Delikatna linia oddzielająca */
    position: relative;
    z-index: 10;
}

footer p {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px; /* Szeroki rozstaw liter wygląda bardziej "premium" */
    text-transform: uppercase;
    opacity: 0.6; /* Lekko przygaszony tekst, żeby nie raził */
    margin: 0;
}

/* 12. MEDIA QUERIES */
@media (max-width: 1100px) {
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; right: 0; background: #050505; width: 100%; text-align: center; padding: 20px 0; border-bottom: 1px solid #333; }
    .nav-links.active { display: flex; } .nav-links li { margin: 15px 0; } .hamburger { display: block; }
    .hero-home-container { flex-direction: column-reverse; text-align: center; }
    .hero-home-text { margin-top: 30px; padding-right: 0; }
    .hero-home-img { justify-content: center; margin-bottom: 20px; }
    .hero-profile-pic { max-height: 350px; }
    .dj-name-home { font-size: 3.5rem; } .dj-realname-home { font-size: 1rem; } .tagline-home { font-size: 1.4rem; }
    .review-card { min-width: calc((100% - 20px) / 2); }
    .prev-btn { left: 0; } .next-btn { right: 0; }
    .scroll-indicator { display: none; }
    .contact-container { flex-direction: column; }
    .faq-columns { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .lightbox-content { width: 95%; } .lightbox-nav { font-size: 30px; padding: 10px; } .prev { left: 5px; } .next { right: 5px; }
}
@media (max-width: 600px) {
    .offer-grid { grid-template-columns: 1fr; }
    .review-card { min-width: 100%; }
    .slider-btn { display: none; }
    .reviews-window { overflow-x: scroll; }
    .form-row-split { flex-direction: column; gap: 0; }
}
/* ==========================================================================
   STYLE DLA OKIENEK (MODALE) - POPRAWKA
   ========================================================================== */

/* Tło całego ekranu (ciemne) */
.custom-modal {
    display: none; /* WAŻNE: Domyślnie ukryte */
    position: fixed; /* Przyklejone do ekranu */
    z-index: 10000; /* Zawsze na wierzchu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Bardzo ciemne tło */
    backdrop-filter: blur(8px); /* Rozmycie tła */
    align-items: center; /* Środek pionowo */
    justify-content: center; /* Środek poziomo */
    opacity: 0; /* Do animacji */
    transition: opacity 0.3s ease;
}

/* Kiedy JS doda display:flex, zmieniamy opacity na 1 */
.custom-modal[style*="display: flex"] {
    opacity: 1;
}

/* Pudełko z komunikatem */
.modal-content {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--primary); /* Fioletowa ramka */
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.4); /* Fioletowa poświata */
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

/* Animacja powiększenia przy otwarciu */
.custom-modal[style*="display: flex"] .modal-content {
    transform: scale(1);
}

/* Ikona Sukcesu (Ptaszek) */
.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

/* Ikona Błędu (X) - Czerwona */
.error-mode {
    border-color: #ff3333 !important;
    box-shadow: 0 0 50px rgba(255, 51, 51, 0.4) !important;
}

.error-icon {
    background: #ff3333 !important;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.6) !important;
}

/* Teksty */
.modal-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Przycisk w modalu */
.modal-close-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-top: 10px;
}


/* ===============================================================================================================================================================================================
   STRONA OSIEMNASTKA      STRONA OSIEMNASTKA     STRONA OSIEMNASTKA     STRONA OSIEMNASTKA     STRONA OSIEMNASTKA     STRONA OSIEMNASTKA     STRONA OSIEMNASTKA     STRONA OSIEMNASTKA 
   =============================================================================================================================================================================================== */






/* ==========================================================================
   3. HERO SECTION (TYTUŁ DWUCZŁONOWY)
   ========================================================================== */
.offer-hero-full {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    background: radial-gradient(circle at center, #1a0b2e 0%, #000000 90%);
    overflow: hidden;
}

/* Efekt tła */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 0;
}

.container-fluid {
    width: 100%;
    padding: 0 2%;
    z-index: 1;
}

/* --- LOGIKA NAPISÓW --- */
.hero-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 0.9;
}

.hero-title-top,
.hero-title-bottom {
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(90deg, #fff, var(--secondary), var(--primary), #fff);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 6s infinite alternate;
    filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.4));
}

@keyframes gradientText {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

/* Górny napis - WYMARZONA */
.hero-title-top {
    font-size: 5rem; 
    letter-spacing: 3px;
    margin-bottom: 5px;
    opacity: 0.9;
}

/* Dolny napis - OSIEMNASTKA */
.hero-title-bottom {
    font-size: 7rem;
    letter-spacing: 5px;
}

/* --- TREŚĆ HERO --- */
.hero-content-wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sub-title {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin: 0;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.offer-desc {
    margin: 0;
    font-size: 1.1rem;
    max-width: 700px;
    color: #ccc;
    line-height: 1.4;
}

/* Przycisk Hero */
.hero-btn-large {
    font-size: 1.3rem;
    padding: 20px 60px;
    margin-top: 10px;
    border-radius: 50px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
    transition: 0.3s;
}
.hero-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.6);
}

/* Social Media w Hero */
.hero-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

/* Scroll Down Icon */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}
.scroll-down-indicator:hover { opacity: 1; }

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin-bottom: 5px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.arrow-scroll {
    width: 15px;
    height: 15px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
    animation-delay: 0.2s;
}

@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}
@keyframes scrollArrow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ==========================================================================
   4. PAKIETY (GRID)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #121212;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.pricing-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary); 
}

.pricing-card.popular {
    background: #181818;
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.15);
    z-index: 2;
}
.pricing-card.popular:hover { transform: scale(1.08); }

.badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); padding: 5px 25px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: white;
}

.pricing-card h3 { font-size: 1.8rem; margin-bottom: 5px; }
.price { font-size: 1.2rem; color: var(--secondary); margin-bottom: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

.features-list { list-style: none; text-align: left; margin-bottom: 40px; color: #ccc; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; font-size: 1rem; }
.features-list i { color: var(--primary); margin-right: 15px; font-size: 1.2rem; min-width: 25px; }

.btn-price {
    display: inline-block; padding: 12px 35px; border: 1px solid #555;
    color: white; text-decoration: none; border-radius: 50px; transition: 0.3s;
    text-transform: uppercase; font-weight: 600;
}
.btn-price:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(0, 229, 255, 0.1); }

/* ==========================================================================
   STYLE DLA NIEDOSTĘPNYCH PAKIETÓW (TYMCZASOWE)
   ========================================================================== */

/* Wygląd karty, gdy jest niedostępna */
.pricing-card.unavailable {
    border-color: #333 !important; /* Szara ramka zamiast kolorowej */
    background: #0a0a0a !important; /* Ciemniejsze tło */
    opacity: 0.8; /* Lekkie przygaszenie */
    transform: none !important; /* Brak powiększania po najechaniu */
    box-shadow: none !important; /* Brak poświaty */
}

/* Czerwona etykieta */
.unavailable-label {
    display: inline-block;
    background-color: #ff3333; /* Czerwień */
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4); /* Czerwona poświata */
    border: 1px solid #ff0000;
}

/* Zablokowanie przycisku w niedostępnej karcie */
.pricing-card.unavailable .btn-main,
.pricing-card.unavailable .btn-price {
    background: #333 !important;
    border-color: #333 !important;
    color: #777 !important;
    cursor: not-allowed; /* Kursor zakazu */
    pointer-events: none; /* Blokada kliknięcia */
    box-shadow: none !important;
}

/* Ukrycie starego badge'a "Najczęściej wybierany" jeśli jest niedostępny */
.pricing-card.unavailable .badge {
    display: none;
}

/* ==========================================================================
   5. DODATKI WOW (RZĄD ELEMENTÓW)
   ========================================================================== */
.wow-title { font-size: 3.5rem; }

.addons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.addons-row .addon-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background: #111;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.addons-row .addon-item:hover {
    border-color: var(--secondary);
    background: #161616;
    transform: translateY(-10px);
}

.addons-row .addon-item i { font-size: 3.5rem; margin-bottom: 20px; color: var(--primary); }
.addons-row .addon-item h4 { font-size: 1.3rem; margin-bottom: 10px; color: white; }
.addons-row .addon-item p { color: #999; font-size: 0.95rem; }


/* ==========================================================================
   6. PROCES (5 KAFLI W RZĘDZIE)
   ========================================================================== */
.section-separator {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin: -40px auto 60px auto;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.process-grid-wide {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    width: 90%;        /* Ustawia szerokość na 90% ekranu (zostawia 5% luzu z boków) */
    max-width: 1800px; /* Opcjonalnie: blokuje, żeby na wielkich monitorach nie było za szerokie */
    margin: 0 auto;    /* Magiczna komenda: Wyśrodkowuje element (robi równe marginesy) */
}

.step-card {
    background: #111;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    background: #1a1a1a;
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.step-icon-simple {
    font-size: 2.2rem;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.step-card:hover .step-icon-simple { color: white; transform: scale(1.1); }

.step-card h4 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.step-card p { font-size: 1.1rem; color: #888; }

/* ==========================================================================
   7. FAQ (2 KOLUMNY)
   ========================================================================== */
   .faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover { 
    color: var(--secondary); 
}

/* ODPOWIEDŹ - DOMYŚLNIE UKRYTA */
.faq-answer {
    padding-bottom: 20px;
    color: #ccc; /* Kolor tekstu odpowiedzi */
    display: none; /* TO JEST WAŻNE - ukrywa tekst */
    font-size: 1rem;
    line-height: 1.6;
}

/* KLASA ACTIVE - POKAZUJE ODPOWIEDŹ */
.faq-item.active .faq-answer {
    display: block; /* Pokazuje tekst gdy jest klasa active */
    animation: fadeIn 0.3s ease; /* Ładne pojawianie się */
}

/* OBRÓT PLUSA */
.faq-item.active i {
    transform: rotate(45deg); /* Obraca plusa w X */
    color: var(--primary);
    transition: 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RWD dla FAQ */
@media (max-width: 900px) {
    .faq-columns {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
    }
}

/* ==========================================================================
   8. KONTAKT (SOCIALE I FORMULARZ)
   ========================================================================== */

   .contact-container {
    display: flex;
    gap: 250px; /* Zmniejszyłem lekko przerwę, żeby zyskać miejsce */
    align-items: flex-start;
    /* To sprawi, że sekcja kontaktu będzie szersza niż reszta strony, ale nie na cały ekran */
    max-width: 2200px !important; 
    margin: 0 auto;
}

/* Tekst po lewej (Węższy) */
.contact-info { 
    flex: 1; /* Zajmuje 1 część miejsca */
    min-width: 300px; /* Żeby się nie zgniótł za mocno */
}

/* Formularz po prawej (Szerszy o ok. 25-30%) */
.contact-form { 
    flex: 1.8; /* Zajmuje prawie 2x więcej miejsca niż tekst */
}

/* Responsywność - na tablecie/telefonie wraca do pionu */
@media (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        max-width: 100%; /* Na telefonie wracamy do standardu */
    }
    .contact-info, .contact-form {
        width: 100%;
        flex: none;
    }
}

.contact-info, .contact-form { flex: 1; }

.contact-heading {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
    text-transform: uppercase;
}

.contact-sub { font-size: 1.2rem; color: #aaa; margin-bottom: 40px; }

/* Dane kontaktowe */
.contact-details-box {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    margin-bottom: 40px;
}

.contact-row {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
    display: flex; align-items: center; gap: 20px;
}
.contact-row i { color: var(--secondary); width: 40px; text-align: center; }


/* Okrągłe Social Media */
.social-icons-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-circle:hover { transform: translateY(-8px) scale(1.1); color: white; border-color: transparent; }

/* Kolory brandowe po najechaniu */
.tiktok:hover { background: #000; box-shadow: 0 0 25px rgba(255, 0, 80, 0.6); }
.insta:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 0 25px rgba(214, 36, 159, 0.6); }
.fb:hover { background: #1877F2; box-shadow: 0 0 25px rgba(24, 119, 242, 0.6); }
.mail:hover { background: var(--primary); box-shadow: 0 0 25px rgba(138, 43, 226, 0.6); }
.phone:hover { background: var(--secondary); box-shadow: 0 0 25px rgba(0, 229, 255, 0.6); }

/* --- NOWY FORMULARZ --- */
.contact-form {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
}

.form-title { font-size: 1.8rem; margin-bottom: 25px; text-transform: uppercase; color: white; }

.contact-form input, 
.contact-form textarea, 
.contact-form select {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    background: #080808;
    border: 1px solid #333;
    color: white;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus, 
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary);
    background: #000;
}

.custom-select-wrapper { position: relative; }
.select-arrow { position: absolute; right: 20px; top: 35%; color: var(--secondary); pointer-events: none; }
.contact-form input[type="date"] { color-scheme: dark; }

.btn-form-submit {
    width: 100%;
    border-radius: 10px;
    font-size: 1.2rem;
    padding: 20px;
    letter-spacing: 1px;
}

/* Etykieta nad datą */
.input-label {
    display: block;
    text-align: left;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
    margin-left: 5px;
}

/* Układ Telefon + Email w jednym rzędzie */
.form-row-split {
    display: flex;
    gap: 20px;
}
.form-row-split input { flex: 1; }

/* STYLOWANIE CHECKBOXÓW (DODATKI) */
.addons-selection-container {
    text-align: left;
    margin-bottom: 25px;
    background: #0d0d0d;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #222;
}

.addons-label {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.addons-grid-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ccc;
    user-select: none;
    transition: 0.3s;
}

.custom-checkbox:hover { color: white; }

.custom-checkbox input {
    position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;
}

.checkmark {
    position: absolute; top: 0; left: 0;
    height: 22px; width: 22px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 5px;
    transition: 0.3s;
}

.custom-checkbox input:checked ~ .checkmark {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.checkmark:after {
    content: ""; position: absolute; display: none;
}
.custom-checkbox input:checked ~ .checkmark:after { display: block; }

.custom-checkbox .checkmark:after {
    left: 7px; top: 3px;
    width: 6px; height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/* ==========================================================================
   FORMULARZ 2-KOLUMNOWY (OSIEMNASTKI)
   ========================================================================== */

   .form-layout-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-col-left, 
.form-col-right {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

/* Żeby textarea wypełniała całą wysokość prawej kolumny */
.form-col-right textarea {
    flex-grow: 1; 
    min-height: 150px;
}

.addons-selection-container {
    margin-bottom: 20px;
}

/* Responsywność - na telefonie jedna pod drugą */
@media (max-width: 900px) {
    .form-layout-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .form-col-right textarea {
        min-height: 120px;
    }
}


/* ==========================================================================
   9. STOPKA (MINIMALISTYCZNA)
   ========================================================================== */
.minimal-footer {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid #222;
    text-align: center;
    margin-top: 50px;
}

.footer-main-text {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-sub-text {
    font-size: 0.75rem;
    color: #555;
}

.divider {
    margin: 0 10px;
    color: var(--secondary);
}

/* ==========================================================================
   10. MEDIA QUERIES (RWD)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title-top { font-size: 2.5rem; }
    .hero-title-bottom { font-size: 4.5rem; }
    .process-grid-wide { grid-template-columns: repeat(3, 1fr); }
    .contact-heading { font-size: 2.5rem; }
}

@media (max-width: 900px) {
    /* Nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; right: 0; background: #050505; width: 100%;
        text-align: center; padding: 30px 0; border-bottom: 1px solid #333;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
    .hamburger { display: block; }

    /* Layouts */
    .contact-container { flex-direction: column; gap: 40px; }
    .faq-columns { grid-template-columns: 1fr; }
    .process-grid-wide { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .hero-title-container { line-height: 1; margin-bottom: 15px; }
    .hero-title-top { font-size: 1.8rem; letter-spacing: 2px; }
    .hero-title-bottom { font-size: 3.2rem; letter-spacing: 3px; }
    .hero-btn-large { padding: 15px 40px; font-size: 1.1rem; }
    .addons-row .addon-item { min-width: 45%; }
}

@media (max-width: 600px) {
    .process-grid-wide { grid-template-columns: 1fr; }
    .social-icons-wrapper { justify-content: center; }
    .contact-row { font-size: 1.2rem; }
    .form-row-split { flex-direction: column; gap: 0; }
    .addons-grid-checkboxes { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .addons-row .addon-item { min-width: 100%; }
}

@media (max-width: 400px) {
    .hero-title-top { font-size: 1.5rem; }
    .hero-title-bottom { font-size: 2.5rem; }
}

/* ===============================================================================================================================================================================================
   OFERTA STUDNIOWKA       OFERTA STUDNIOWKA       OFERTA STUDNIOWKA       OFERTA STUDNIOWKA       OFERTA STUDNIOWKA       OFERTA STUDNIOWKA       OFERTA STUDNIOWKA        
   =============================================================================================================================================================================================== */

/* --- 1. USTAWIENIA OGÓLNE I KOLORY --- */
:root {
    --prom-gold: #d4af37;
    --prom-gold-light: #f3e5ab;
    --prom-gold-dark: #aa8c2c;
    --prom-black: #050505;
    --prom-dark-grey: #121212;
    --prom-text-grey: #b3b3b3;
}

/* Grube fonty dla nagłówków */
.prom-main-title, .prom-sub-title, .prom-section-header, .prom-name, .prom-card-head h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.prom-section-header{
    text-align: center;
}

/* Sekcje tła */
.prom-section-black { background-color: var(--prom-black); padding: 80px 0; }
.prom-section-dark { background-color: var(--prom-dark-grey); padding: 80px 0; }

/* Złoty przycisk (Gradient) */
.btn-gold {
    background: linear-gradient(45deg, var(--prom-gold-dark), var(--prom-gold), var(--prom-gold-dark));
    background-size: 200% auto;
    color: black;
    padding: 15px 40px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: 0.5s;
    display: inline-block;
    letter-spacing: 1px;
}
.btn-gold:hover {
    background-position: right center;
    color: black;
    transform: scale(1.05);
}

/* Obramowany złoty przycisk */
.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--prom-gold);
    color: var(--prom-gold);
    padding: 12px 35px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}
.btn-outline-gold:hover {
    background: var(--prom-gold);
    color: black;
}

.full-width { width: 100%; text-align: center; }

/* --- 2. HERO SECTION (WIDEO) --- */
.prom-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Zapasowe tło, jeśli wideo nie działa */
    background: url('img/hero-studniowka.jpg') no-repeat center center/cover;
}

.prom-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.prom-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient przyciemniający */
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.9));
    z-index: 1;
}

.prom-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-top: 60px;
}

.prom-main-title {
    font-size: 3.5rem; /* Duże, ale nie za wielkie */
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.prom-sub-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--prom-gold);
    margin-bottom: 30px;
}

.prom-hero-text {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- 3. WSTĘP & NAGŁÓWKI SEKCJI --- */
.prom-section-header {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.prom-divider {
    width: 80px;
    height: 4px;
    background: var(--prom-gold);
    margin: 0 auto 40px auto;
}

.prom-lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

/* --- 4. DUO SECTION (ZIG-ZAG) --- */
.prom-profile-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}
.prom-profile-row:last-child { margin-bottom: 0; }

.prom-profile-text { flex: 1; }
.prom-profile-img-wrapper { 
    flex: 1; 
    display: flex; 
    justify-content: center; 
}

/* Ramka dla zdjęcia */
.prom-profile-img {
    max-width: 100%;
    width: 400px;
    height: auto;
    border-bottom: 4px solid var(--prom-gold);
    filter: grayscale(20%); /* Lekko czarno-białe dla klimatu */
    transition: 0.3s;
}
.prom-profile-img:hover { filter: grayscale(0%); }

.prom-name { font-size: 2.5rem; color: white; margin-bottom: 5px; font-weight: 900; }
.prom-role { color: var(--prom-gold); font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.prom-desc { color: #bbb; line-height: 1.7; font-size: 1rem; }

/* Wyrównania tekstu */
.text-right-desktop { text-align: right; }
.text-left-desktop { text-align: left; }

/* --- 5. TECH & ESTETYKA (GRID) --- */
.prom-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.prom-tech-item i {
    font-size: 3rem;
    color: var(--prom-gold);
    margin-bottom: 20px;
}
.prom-tech-item h4 { color: white; font-weight: 700; margin-bottom: 15px; font-size: 1.2rem; }
.prom-tech-item p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }

/* --- 6. ATRAKCJE (GRID) --- */
.prom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prom-feature-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #333;
}
.prom-feature-box:hover { border-color: var(--prom-gold); transform: translateY(-5px); }

.prom-icon-circle {
    width: 70px; height: 70px;
    background: #000;
    border: 2px solid var(--prom-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--prom-gold);
    font-size: 1.5rem;
}
.prom-feature-box h3 { color: white; font-size: 1.2rem; margin-bottom: 10px; font-weight: 800; }
.prom-feature-box p { color: #999; font-size: 0.9rem; }

/* --- 7. PAKIETY (CENNIK) --- */
.prom-pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.prom-price-card {
    background: #080808;
    border: 1px solid #333;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
    display: flex; flex-direction: column;
}

.prom-price-card:hover { transform: translateY(-10px); }

/* Wyróżniony GOLD */
.prom-price-card.prom-featured {
    border: 2px solid var(--prom-gold);
    background: linear-gradient(180deg, #151515, #050505);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}
.prom-price-card.prom-featured:hover { transform: scale(1.05) translateY(-10px); }

.prom-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--prom-gold); color: black;
    padding: 5px 20px; font-weight: 800; font-size: 0.8rem;
    text-transform: uppercase;
}

.prom-card-head { margin-bottom: 30px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.prom-card-head h3 { color: white; font-size: 2.2rem; margin-bottom: 5px; }
.prom-card-head span { color: var(--prom-gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }

.prom-card-list { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; flex-grow: 1; }
.prom-card-list li {
    padding: 12px 0; border-bottom: 1px solid #222; color: #ccc;
    font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px;
}
.prom-card-list li:last-child { border-bottom: none; }
.prom-card-list i { color: var(--prom-gold); margin-top: 4px; }

/* --- 8. FAQ --- */
.prom-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.prom-faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.prom-faq-q {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: white;
    display: flex; justify-content: space-between; align-items: center;
    transition: 0.3s;
}
.prom-faq-q:hover { color: var(--prom-gold); }

.prom-faq-a {
    display: none;
    color: #999;
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.prom-faq-item.active .prom-faq-a { display: block; }
.prom-faq-item.active i { transform: rotate(45deg); color: var(--prom-gold); }

/* --- 9. KONTAKT --- */
.prom-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: #0f0f0f;
    padding: 50px;
    border: 1px solid #333;
}

.prom-contact-info h3 { color: white; margin-bottom: 20px; }
.prom-contact-info p { color: #888; margin-bottom: 30px; }
.prom-info-item { color: white; font-size: 1.2rem; margin-bottom: 15px; }
.prom-info-item i { color: var(--prom-gold); width: 30px; }

.prom-socials-big { margin-top: 40px; }
.prom-socials-big a { color: white; font-size: 2rem; margin-right: 20px; transition: 0.3s; }
.prom-socials-big a:hover { color: var(--prom-gold); }

.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #050505;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--prom-gold);
}

/* --- RWD (MOBILE) --- */
@media (max-width: 900px) {
    .prom-main-title { font-size: 2.2rem; }
    .prom-sub-title { font-size: 1.2rem; }
    
    .prom-profile-row, .prom-profile-row.reverse-layout {
        flex-direction: column-reverse; /* Najpierw zdjęcie, potem tekst na mobile */
        text-align: center !important;
        gap: 20px;
    }
    
    .prom-profile-text { text-align: center; } /* Wymuszenie środkowania na mobile */
    .text-right-desktop, .text-left-desktop { text-align: center; }

    .prom-pricing-container { grid-template-columns: 1fr; }
    .prom-price-card.prom-featured { transform: scale(1); }
    
    .prom-faq-grid { grid-template-columns: 1fr; }
    
    .prom-contact-wrapper { grid-template-columns: 1fr; padding: 20px; }
}

/* BADGE "WYPRZEDANE" */
.prom-alert-badge {
    display: inline-block;
    /* Czerwony gradient premium */
    background: linear-gradient(90deg, #c0392b, #e74c3c); 
    color: white;
    padding: 8px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px; /* Lekko zaokrąglone rogi prostokąta */
    margin-bottom: 25px; /* Odstęp od napisu poniżej */
    
    /* Czerwona poświata (glow) */
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.4); 
    border: 1px solid rgba(255,255,255,0.2);
    
    /* Animacja pulsowania (opcjonalna - przyciąga wzrok) */
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}


/* ===============================================================================================================================================================================================
   OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA       OFERTA WESELNA               
   =============================================================================================================================================================================================== */

/* Zmienne lokalne dla wesela */
:root {
    --wed-gold: #d4af37;
    --wed-beige: #f5f5dc;
    --wed-white: #ffffff;
    --wed-light-grey: #f9f9f9;
    --wed-text: #333333;
}

/* Typografia Weselna - ZMIANA NA GRUBĄ */
.wed-title, .wed-subtitle, .wed-section-title, .wed-card h3 {
    font-family: 'Montserrat', sans-serif; /* Wracamy do głównego fontu */
    font-weight: 900; /* Bardzo gruby */
    text-transform: uppercase; /* Duże litery dla efektu "siły" */
    letter-spacing: 2px;
}

/* Opcjonalnie: Zwiększamy też lekko nagłówki w kartach */
.wed-feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* 1. HERO SECTION */
.wed-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.wed-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('img/hero-wesele.jpg') no-repeat center center/cover; /* Wgraj zdjęcie! */
    z-index: 0;
}

.wed-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Lekkie przyciemnienie, żeby biały tekst był czytelny */
    z-index: 1;
}

.wed-hero-content {
    position: relative; z-index: 2; padding: 20px; margin-top: 60px;
}

.wed-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.wed-subtitle {
    font-size: 1.5rem;
    color: var(--wed-beige);
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.wed-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Przyciski Weselne */
.wed-buttons {
    display: flex; gap: 20px; justify-content: center;
    flex-wrap: wrap;
}

.btn-wed-primary {
    background: var(--wed-gold);
    color: white;
    padding: 15px 35px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 2px;
}
.btn-wed-primary:hover { background: #b59020; transform: translateY(-3px); }

.btn-wed-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 13px 35px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 2px;
}
.btn-wed-secondary:hover { background: white; color: black; }

/* 2. SEKCJE TREŚCI (JASNE TŁA) */
.wed-section-light { background: var(--wed-light-grey); color: var(--wed-text); padding: 80px 0; }
.wed-section-white { background: var(--wed-white); color: var(--wed-text); padding: 80px 0; }
.wed-section-gold { background: var(--wed-gold); color: white; padding: 60px 0; }

.wed-section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}
.wed-gold { color: var(--wed-gold); }
.text-black { color: #222; }
.white-text { color: white; }

.wed-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.wed-intro-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0px var(--wed-gold); /* Efekt ramki */
}
.wed-note {
    background: white;
    padding: 15px;
    border-left: 4px solid var(--wed-gold);
    margin-top: 20px;
    font-size: 0.9rem;
}

/* 3. ATRAKCJE GRID */
.wed-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.wed-feature { padding: 20px; }
.wed-icon {
    font-size: 2.5rem;
    color: var(--wed-gold);
    margin-bottom: 20px;
}
.wed-feature h4 { margin-bottom: 15px; font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.wed-feature p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* 4. SEKCJA ZABAWY (GOLD) */
.wed-text-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 5. CENNIK (KARTY) */
.wed-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wed-card {
    background: white;
    padding: 40px 30px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.wed-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* Wyróżniony Pakiet GOLD */
.wed-card.wed-featured {
    border: 2px solid var(--wed-gold);
    transform: scale(1.05);
    z-index: 2;
}
.wed-card.wed-featured:hover { transform: scale(1.05) translateY(-10px); }

.wed-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--wed-gold); color: white;
    padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}

.wed-card h3 { font-size: 2rem; margin-bottom: 5px; color: #222; }
.wed-price-desc { display: block; color: #999; margin-bottom: 30px; font-size: 0.9rem; letter-spacing: 1px; }

.wed-card ul { list-style: none; padding: 0; margin-bottom: 30px; text-align: left; }
.wed-card li { padding: 12px 0; border-bottom: 1px solid #f0f0f0; color: #555; display: flex; gap: 10px; }
.wed-card li i { color: var(--wed-gold); margin-top: 4px; }
.wed-card li.wed-excluded { color: #ccc; text-decoration: line-through; }
.wed-card li.wed-excluded i { color: #ccc; }

.btn-wed-outline {
    display: inline-block; padding: 10px 30px;
    border: 1px solid #ccc; color: #555;
    text-decoration: none; transition: 0.3s;
}
.btn-wed-outline:hover { border-color: var(--wed-gold); color: var(--wed-gold); }

/* 6. FAQ WESELNE */
.wed-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.wed-faq-item { border-bottom: 1px solid #eee; margin-bottom: 15px; }
.wed-faq-q {
    padding: 15px 0; cursor: pointer; font-weight: 600; color: #333;
    display: flex; justify-content: space-between;
}
.wed-faq-q:hover { color: var(--wed-gold); }
.wed-faq-a { display: none; color: #666; padding-bottom: 20px; line-height: 1.6; }
.wed-faq-item.active .wed-faq-a { display: block; }
.wed-faq-item.active i { transform: rotate(45deg); color: var(--wed-gold); }

/* RWD */
@media (max-width: 900px) {
    .wed-title { font-size: 2.5rem; }
    .wed-intro-grid { grid-template-columns: 1fr; }
    .wed-intro-img { order: -1; margin-bottom: 30px; }
    .wed-faq-grid { grid-template-columns: 1fr; }
    .wed-card.wed-featured { transform: scale(1); }
}


/* ===============================================================================================================================================================================================
   STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE      STRONA INNE       
   =============================================================================================================================================================================================== */

/* ==========================================================================
   SEKCJA EVENTY / INNE (PREFIX: other-)
   ========================================================================== */

/* Główny kontener strony Inne - zapobiega uciekaniu stopki */
.other-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Wymusza wysokość całej strony */
    background: #050505;
}

/* Główny kontener treści */
.other-main-container {
    flex: 1; /* Spycha stopkę na sam dół */
    max-width: 1200px;
    margin: 140px auto 80px; /* Odstęp od navbara i od stopki */
    padding: 0 20px;
    width: 100%;
}

/* Nagłówek sekcji Inne */
.other-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.other-main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.other-main-subtitle {
    font-size: 1rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.other-title-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 20px auto;
    border-radius: 2px;
}

/* Grid: 3 kolumny po 2 rzędy */
.other-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

/* Karta wydarzenia */
.other-event-card {
    background: #0f0f0f;
    padding: 40px 30px;
    border: 1px solid #222;
    border-radius: 25px; /* ZAOKRĄGLONE ROGI KART */
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.other-event-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
}

/* Ikony w kartach */
.other-event-card i {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Tytuły i opisy w kartach */
.other-event-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.other-event-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Przycisk w karcie */
.other-action-btn {
    margin-top: auto;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px; /* ZAOKRĄGLONE ROGI PRZYCISKU */
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.other-action-btn:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

/* Fix dla globalnej stopki na tej konkretnej stronie */
.other-global-footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Responsywność - dopasowanie do mniejszych ekranów */
@media (max-width: 1100px) {
    .other-offers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media (max-width: 768px) {
    .other-main-container {
        margin-top: 120px;
    }
    
    .other-offers-grid {
        grid-template-columns: 1fr; /* 1 kolumna na telefonie */
    }
    
    .other-event-card {
        padding: 30px 20px;
    }
}


/* ===============================================================================================================================================================================================
   STRONA FORMULARZ KLIENTA      STRONA FORMULARZ KLIENTA      STRONA FORMULARZ KLIENTA      STRONA FORMULARZ KLIENTA      STRONA FORMULARZ KLIENTA      STRONA FORMULARZ KLIENTA       
   =============================================================================================================================================================================================== */
   
/* =========================================
   GŁÓWNY UKŁAD (WRAPPERY I NAGŁÓWKI)
   ========================================= */

   .client-page-wrapper {
    min-height: 100vh;
    padding-top: 120px; /* Miejsce na navbar */
    padding-bottom: 80px;
}

.client-header {
    text-align: center;
    margin-bottom: 50px;
}

.client-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.client-sub-text {
    color: #888;
    font-size: 1.1rem;
}

/* =========================================
   FORMULARZ I SEKCJE
   ========================================= */

.client-form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.client-form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
}

.client-section-title {
    font-size: 1.4rem;
    color: var(--secondary); /* Neonowy błękit */
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   INPUTY I ETYKIETY
   ========================================= */

.client-label {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
    margin-left: 5px;
    font-weight: 600;
}

.client-input {
    width: 100%;
    padding: 12px 15px;
    background: #121212 !important;
    border: 1px solid #333 !important;
    border-radius: 10px !important;
    color: white !important;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.client-input:focus {
    border-color: var(--secondary) !important;
    background: #000 !important;
    outline: none;
}

/* =========================================
   GRIDY I UKŁADY PÓL
   ========================================= */

.client-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.client-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.client-row-split {
    display: flex;
    gap: 20px;
    align-items: center;
}

.client-row-split .client-input {
    margin-bottom: 0;
}

/* =========================================
   PRZYCISKI WYBORU (RADIO & CHECKBOX)
   ========================================= */

/* Radio buttons */
.client-radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    white-space: nowrap;
}

.client-radio-group label {
    cursor: pointer;
    color: white;
    font-weight: 500;
}

/* Checkboxy (Grid) */
.client-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.client-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #ddd;
    user-select: none;
}

.client-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.client-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #1a1a1a;
    border: 1px solid #555;
    border-radius: 5px;
    transition: 0.2s;
}

.client-checkbox:hover input ~ .client-checkmark {
    background-color: #333;
}

.client-checkbox input:checked ~ .client-checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.client-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.client-checkbox input:checked ~ .client-checkmark:after {
    display: block;
}

.client-checkbox .client-checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* =========================================
   PASEK POSTĘPU (PROGRESS BAR)
   ========================================= */

.client-progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #555;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.step-indicator.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.step-line {
    width: 30px;
    height: 2px;
    background: #333;
    flex-grow: 0;
}

/* =========================================
   OBSŁUGA KROKÓW (STEPS)
   ========================================= */

.client-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.client-step.active-step {
    display: block;
}

.client-step-title {
    color: white;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* =========================================
   NAWIGACJA (PRZYCISKI DALEJ/WSTECZ)
   ========================================= */

.client-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    width: 100%; /* Ważne */
}

.btn-prev {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.client-btn-next {
    background: var(--secondary);
    border: none;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 800;
    margin-left: auto; /* To domyślnie spycha przycisk w prawo */
    transition: transform 0.2s;
}

.btn-next:hover {
    transform: scale(1.05);
}

/* --- FIX: CENTROWANIE PRZYCISKU ROZPOCZNIJ --- */
/* Dodaj tę klasę (nav-social-circle-center-row) do diva client-nav-buttons w pierwszym kroku */

.nav-social-circle-center-row {
    justify-content: center !important;
}

.nav-social-circle-center-row .client-btn-next {
    margin-left: 0 !important; /* Resetuje spychanie w prawo */
    margin-right: 0 !important;
}

/* =========================================
   SPECJALNE KOMPONENTY (TELEFON, PŁATNOŚĆ)
   ========================================= */

/* Input telefonu */
.phone-input-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    width: 100%;
    background: #121212;
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.phone-prefix {
    background: #222;
    color: #888;
    padding: 12px 15px;
    font-weight: 600;
    border-right: 1px solid #333;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 48px; /* Zabezpieczenie wysokości */
}

.phone-input-group .client-input {
    flex-grow: 1;
    border: none !important;
    background: transparent !important;
    margin-bottom: 0 !important;
    padding: 12px 15px;
    color: white !important;
    outline: none;
}

.phone-input-group:focus-within {
    border-color: var(--secondary);
}

/* Płatność */
.client-payment-box {
    background: #111;
    border: 2px solid var(--primary);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
}

.payment-amount {
    font-size: 3rem;
    color: var(--secondary);
    margin: 10px 0 30px 0;
    font-weight: 900;
}

.payment-details {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    max-width: 700px;
    text-align: left;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
}
.payment-row:last-child { border-bottom: none; }
.payment-row strong { color: white; }

.payment-note {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

/* Podsumowanie */
.client-summary-box {
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    color: #ccc;
}
.summary-list { list-style: none; padding: 0; }
.summary-list li {
    padding: 10px;
    border-bottom: 1px solid #333;
}
.summary-list strong { color: var(--secondary); }

/* Przycisk Wyślij */
.client-submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    margin-top: 20px;
}
.client-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
}

/* =========================================
   WALIDACJA (BŁĘDY)
   ========================================= */

/* Czerwona ramka przy błędzie */
.nav-social-circle-input.error,
.client-input.error {
    border: 2px solid #ff3333 !important;
    background-color: rgba(255, 51, 51, 0.05) !important;
    animation: shake 0.3s ease-in-out;
}

/* Błąd dla grupy telefonu */
.phone-input-group.error {
    border: 2px solid #ff3333 !important;
    animation: shake 0.3s ease-in-out;
}

/* Komunikat o błędzie */
.nav-social-circle-error-msg {
    color: #ff3333;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    display: none;
    text-align: left;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

/* Pokazuje komunikat gdy input ma klasę error */
.nav-social-circle-input.error + .nav-social-circle-error-msg,
.client-input.error + .nav-social-circle-error-msg {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSYWNOŚĆ (MEDIA QUERIES)
   ========================================= */

@media (max-width: 900px) {
    .client-grid-2, .client-grid-3, .client-row-split {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 10px;
    }
    .client-radio-group { width: 100%; justify-content: space-between; }
    .client-checkbox-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .step-line { width: 10px; }
    
    /* Na telefonie przyciski jeden pod drugim, chyba że mają klasę centrującą */
    .client-nav-buttons { 
        flex-direction: column-reverse; 
        gap: 15px; 
    }
    
    /* Wyjątek: Jeśli jest klasa centrująca (przycisk start), trzymaj w rzędzie */
    .client-nav-buttons.nav-social-circle-center-row {
        flex-direction: row !important;
    }

    .btn-next, .btn-prev { width: 100%; margin: 0; }
    .payment-row { flex-direction: column; gap: 5px; }
}

/* --- FIX NA NIEDZIAŁAJĄCY PRZYCISK --- */

.client-nav-buttons {
    /* To co było: */
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    width: 100%;
    
    /* TO JEST NAPRAWA: */
    position: relative !important; 
    z-index: 9999 !important; /* Wyciągamy kontener na sam wierzch */
    pointer-events: auto !important; /* Wymuszamy obsługę myszki */
}

/* Dla pewności wymuś też na samym przycisku */
.btn-next {
    position: relative;
    z-index: 10000;
    cursor: pointer;
}

/* ===============================================================================================================================================================================================
   STRONA 404      STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404     STRONA 404 
   =============================================================================================================================================================================================== */





   .error-page {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #1a0b2e 0%, var(--bg-dark) 80%);
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* --- WTYCZKA I KABEL --- */
.plug-container {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: swing 3s infinite ease-in-out;
    transform-origin: top center;
    z-index: 1;
}

.cord {
    width: 4px;
    height: 150px;
    background: #333;
    margin: 0 auto;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.1);
}

.plug-icon {
    font-size: 3rem;
    color: #333;
    transform: rotate(180deg); /* Odwracamy wtyczkę */
    display: block;
    margin-top: -5px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.8));
}

@keyframes swing {
    0% { transform: translateX(-50%) rotate(5deg); }
    50% { transform: translateX(-50%) rotate(-5deg); }
    100% { transform: translateX(-50%) rotate(5deg); }
}

/* --- TREŚĆ --- */
.error-content {
    z-index: 2;
    padding: 20px;
    margin-top: 60px; /* Odsunięcie od wiszącej wtyczki */
}

/* Efekt Glitch na napisie 404 */
.glitch {
    font-size: 8rem;
    font-weight: 900;
    position: relative;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--secondary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(20px, 9999px, 80px, 0); }
    20% { clip: rect(60px, 9999px, 10px, 0); }
    40% { clip: rect(10px, 9999px, 90px, 0); }
    60% { clip: rect(80px, 9999px, 50px, 0); }
    80% { clip: rect(30px, 9999px, 20px, 0); }
    100% { clip: rect(70px, 9999px, 60px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(90px, 9999px, 20px, 0); }
    20% { clip: rect(10px, 9999px, 80px, 0); }
    40% { clip: rect(50px, 9999px, 30px, 0); }
    60% { clip: rect(20px, 9999px, 90px, 0); }
    80% { clip: rect(70px, 9999px, 10px, 0); }
    100% { clip: rect(30px, 9999px, 60px, 0); }
}

.error-content h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.error-content p {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-error {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}
.btn-error:hover {
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.6);
}

/* Responsywność dla 404 */
@media (max-width: 600px) {
    .glitch { font-size: 5rem; }
    .error-content h2 { font-size: 1.2rem; }
    .cord { height: 100px; } /* Krótszy kabel na telefonie */
}


