/* 
   ==========================================================================
   OFERTA OSIEMNASTKOWA (VIOLET/CLUB THEME)
   ==========================================================================
*/

:root {
    --bday-violet: #8a2be2;
    --bday-blue: #00e5ff;
    --bday-dark: #050505;
    --bday-gray: #111111;
    --bday-text: #ffffff;
}

/* Reset specific for this page if needed */
.bday-body {
    background-color: var(--bday-dark);
    color: var(--bday-text);
    font-family: 'Montserrat', sans-serif;
}

/* 1. HERO OVERRIDES (Keep existing but polish) */
.offer-hero-full {
    height: 100vh;
    background: url('img/hero-osiemnastka.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-title-top {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    color: white;
}

.hero-title-bottom {
    font-size: 5rem;
    font-weight: 900;
    display: block;
    color: var(--bday-violet);
    line-height: 1;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

/* 2. LOGO DIVIDER */
.bday-logo-divider {
    background: var(--bday-violet);
    padding: 30px 0;
    text-align: center;
}

.bday-logo-divider .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.bday-logo-divider img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.bday-logo-divider i {
    color: white;
    font-size: 1.5rem;
}

/* 3. SECTIONS */
.bday-section-white {
    background: #ffffff;
    color: #000;
    padding: 100px 20px;
    /* Dodano 20px po bokach */
}

.bday-section-dark {
    background: var(--bday-dark);
    color: #fff;
    padding: 100px 20px;
    /* Dodano 20px po bokach */
}

.bday-title {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.bday-violet-text {
    color: var(--bday-violet);
}

/* 4. POZNAJ NAS */
.bday-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bday-about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bday-about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.bday-team-member {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.bday-team-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bday-violet);
}

/* 5. PRICING CARDS */
.bday-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bday-card {
    background: #111;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.4s;
    position: relative;
}

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

.bday-card.featured {
    border-color: var(--bday-violet);
    background: #1a1025;
    transform: scale(1.05);
}

.bday-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.bday-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bday-violet);
    margin-bottom: 30px;
}

.bday-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.bday-features-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.bday-features-list i {
    color: var(--bday-violet);
    margin-right: 10px;
}

.btn-bday {
    display: block;
    background: var(--bday-violet);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-bday:hover {
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

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

.bday-faq-item {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #222;
}

.bday-faq-item h4 {
    margin-bottom: 10px;
    color: var(--bday-violet);
}

.bday-faq-item p {
    color: #888;
    line-height: 1.6;
}

/* 7. CONTACT FORM */
.bday-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    color: #000;
}

.bday-contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bday-contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.bday-contact-row i {
    width: 40px;
    height: 40px;
    background: var(--bday-violet);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bday-form {
    display: grid;
    gap: 20px;
}

.bday-form input,
.bday-form select,
.bday-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.bday-btn-submit {
    background: var(--bday-violet);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .bday-about-grid,
    .bday-faq-grid,
    .bday-contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title-top {
        font-size: 2.5rem;
    }

    .hero-title-bottom {
        font-size: 3.5rem;
    }
}

/* PAGE SPECIFIC OVERRIDES */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.addons-row .addon-item i {
    font-size: 2.5rem !important;
}

.contact-container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 40px !important;
    gap: 50px !important;
}

.contact-heading {
    font-size: 2.5rem !important;
}

.contact-sub {
    font-size: 1.1rem !important;
    margin-bottom: 30px !important;
}

.contact-details-box {
    padding: 20px !important;
    margin-bottom: 30px !important;
    border-left: 4px solid var(--bday-violet) !important;
}

.contact-row {
    font-size: 1.3rem !important;
    margin: 15px 0 !important;
    gap: 15px !important;
}

.social-circle {
    width: 55px !important;
    height: 55px !important;
    font-size: 1.5rem !important;
}

.form-title {
    font-size: 1.5rem !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    color: white !important;
}

.btn-form-submit {
    padding: 16px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    background: var(--bday-violet) !important;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3) !important;
}

.contact-form {
    padding: 40px !important;
    background: #111 !important;
    border-radius: 20px !important;
    border: 1px solid #222 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.form-group {
    margin-bottom: 20px !important;
}

.form-row-dual {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.form-row-dual .form-group {
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100% !important;
    padding: 15px 20px !important;
    background: #080808 !important;
    border: 1px solid #333 !important;
    color: white !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    transition: 0.3s !important;
    margin-bottom: 0 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--bday-violet) !important;
    background: #000 !important;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.2) !important;
}

.input-label {
    display: block !important;
    font-size: 0.85rem !important;
    color: #888 !important;
    margin-bottom: 8px !important;
    margin-left: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Select Styling Fix */
.custom-select-wrapper {
    position: relative !important;
}

.select-arrow {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--bday-violet) !important;
    pointer-events: none !important;
}

.contact-form select {
    appearance: none !important;
    -webkit-appearance: none !important;
    padding-right: 50px !important;
}

/* Addons Styling */
.addons-section {
    background: #0d0d0d !important;
    padding: 20px !important;
    border-radius: 15px !important;
    border: 1px solid #222 !important;
    margin-bottom: 25px !important;
}

.addons-label {
    color: var(--bday-violet) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
}

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

/* Custom Checkboxes */
.custom-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 0.95rem !important;
    color: #ccc !important;
    cursor: pointer !important;
}

.checkmark {
    width: 22px !important;
    height: 22px !important;
    background: #1a1a1a !important;
    border: 1px solid #444 !important;
    border-radius: 6px !important;
    position: relative !important;
    transition: 0.3s !important;
}

.custom-checkbox input:checked~.checkmark {
    background: var(--bday-violet) !important;
    border-color: var(--bday-violet) !important;
}

.checkmark:after {
    content: "\f00c" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    color: white !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0 !important;
}

.custom-checkbox input:checked~.checkmark:after {
    opacity: 1 !important;
}

@media (max-width: 1100px) {
    .contact-container {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 20px !important;
    }

    .contact-heading {
        font-size: 2rem !important;
    }

    .form-row-dual {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* ==========================================================================
   ROADMAP SNAKE STYLES (ZIGZAG)
   ========================================================================== */

.roadmap-snake {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px 80px;
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
}

.roadmap-step {
    position: relative;
    background: #111;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #222;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.roadmap-step:hover {
    border-color: var(--bday-violet);
    transform: translateY(-10px);
    background: #16101f;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.25);
}

.step-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bday-violet);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.6);
    z-index: 10;
    border: 3px solid var(--bday-dark);
}

.step-icon {
    font-size: 3rem;
    color: var(--bday-blue);
    margin-bottom: 25px;
    transition: 0.3s;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.3));
}

.roadmap-step:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    color: #fff;
}

.step-content h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.step-content p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.7;
}

/* Arrow Base Styles */
.roadmap-step::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    color: var(--bday-violet);
    font-size: 2rem;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* DESKTOP 3-COL POSITIONS & ARROWS */
.step-1 { grid-area: 1 / 1; }
.step-2 { grid-area: 1 / 2; }
.step-3 { grid-area: 1 / 3; }
.step-4 { grid-area: 2 / 3; }
.step-5 { grid-area: 2 / 2; }
.step-6 { grid-area: 2 / 1; }

/* Arrows 3-Col */
.step-1::after { content: "\f30b"; right: -55px; top: 50%; transform: translateY(-50%); animation: pulseArrowRight 2s infinite; }
.step-2::after { content: "\f30b"; right: -55px; top: 50%; transform: translateY(-50%); animation: pulseArrowRight 2s infinite; }
.step-3::after { content: "\f309"; bottom: -75px; left: 50%; transform: translateX(-50%); animation: pulseArrowDown 2s infinite; }
.step-4::after { content: "\f30a"; left: -55px; top: 50%; transform: translateY(-50%); animation: pulseArrowLeft 2s infinite; }
.step-5::after { content: "\f30a"; left: -55px; top: 50%; transform: translateY(-50%); animation: pulseArrowLeft 2s infinite; }
.step-6::after { display: none; }

@keyframes pulseArrowRight { 0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); } 50% { opacity: 0.8; transform: translateY(-50%) translateX(10px); } }
@keyframes pulseArrowDown { 0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.8; transform: translateX(-50%) translateY(10px); } }
@keyframes pulseArrowLeft { 0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); } 50% { opacity: 0.8; transform: translateY(-50%) translateX(-10px); } }

/* TABLET/MOBILE 2-COL (991px) */
@media (max-width: 991px) {
    .roadmap-snake {
        grid-template-columns: 1fr 1fr;
        gap: 120px 60px;
    }

    .step-1 { grid-area: 1 / 1; }
    .step-2 { grid-area: 1 / 2; }
    .step-3 { grid-area: 2 / 2; }
    .step-4 { grid-area: 2 / 1; }
    .step-5 { grid-area: 3 / 1; }
    .step-6 { grid-area: 3 / 2; }

    /* Reset all arrows first */
    .roadmap-step::after { display: block; content: none; right: auto; left: auto; top: auto; bottom: auto; transform: none; animation: none; }

    /* Arrows 2-Col */
    .step-1::after { content: "\f30b"; right: -45px; top: 50%; transform: translateY(-50%); animation: pulseArrowRight 2s infinite; }
    .step-2::after { content: "\f309"; bottom: -75px; left: 50%; transform: translateX(-50%); animation: pulseArrowDown 2s infinite; }
    .step-3::after { content: "\f30a"; left: -45px; top: 50%; transform: translateY(-50%); animation: pulseArrowLeft 2s infinite; }
    .step-4::after { content: "\f309"; bottom: -75px; left: 50%; transform: translateX(-50%); animation: pulseArrowDown 2s infinite; }
    .step-5::after { content: "\f30b"; right: -45px; top: 50%; transform: translateY(-50%); animation: pulseArrowRight 2s infinite; }
    .step-6::after { display: none; }
}

/* MOBILE 1-COL (600px) */
@media (max-width: 600px) {
    .roadmap-snake {
        grid-template-columns: 1fr;
        gap: 90px;
    }

    .step-1, .step-2, .step-3, .step-4, .step-5, .step-6 { grid-area: auto; }

    .roadmap-step::after {
        content: "\f309" !important;
        bottom: -65px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        animation: pulseArrowDown 2s infinite !important;
    }

    .step-6::after { display: none; }

    .roadmap-step { padding: 35px 20px; }
    .step-content h4 { font-size: 1.2rem; }
}