@keyframes menuDown{



from{

transform:translateY(-100px);

opacity:0;

}



to{

transform:translateY(0);

opacity:1;

}



}



*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Poppins,sans-serif;

}



body{

background:#0b0b0b;

color:#fff;

overflow-x:hidden;

}



header{

position:fixed;

top:0;

left:0;

width:100%;

padding:22px 8%;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(0,0,0,.55);

backdrop-filter:blur(12px);

z-index:1000;

border-bottom:1px solid rgba(255,255,255,.08);

animation:menuDown 1.2s cubic-bezier(.25,.8,.25,1);

}



nav a{

color:white;

text-decoration:none;

margin-left:35px;

transition:.3s;

font-weight:500;

}



nav a:hover{

color:#D4AF37;

}



.hero{
height:100vh;
display:flex;
align-items:center;
padding:0 8%;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
url("../images/hero.jpg");
background-size:cover;
background-position:center;
}



.hero-text{

max-width:700px;

animation:fadeUp 1.2s ease;

}



.hero h1{

font-size:72px;

line-height:1.1;

margin-bottom:25px;

}

.hero-line{
    display:block;
}

.hero-gold{
    color:#D4AF37;
}


.hero p{

font-size:20px;

color:#d0d0d0;

line-height:1.8;

margin-bottom:45px;

}



.buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}



.btn{

padding:17px 40px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.3s;

}



.gold{

background:#D4AF37;

color:#111;

}



.gold:hover{

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(212,175,55,.35);

}



.dark{

border:2px solid #D4AF37;

color:white;

}



.dark:hover{

background:#D4AF37;

color:black;

}



.stats{



padding:90px 8%;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

background:#111;



}



.box{



text-align:center;

padding:45px;

border-radius:20px;

background:#181818;

transition:.4s;



}



.box:hover{



transform:translateY(-10px);



}



.box h2{



font-size:48px;

color:#D4AF37;

margin-bottom:10px;



}



.box p{



color:#ccc;



}



@keyframes fadeUp{



from{

opacity:0;

transform:translateY(40px);

}



to{

opacity:1;

transform:translateY(0);

}



}



@media(max-width:900px){



.hero h1{

font-size:45px;

}



.stats{



grid-template-columns:1fr 1fr;



}



nav{

display:none;

}



}



@media(max-width:600px){



.stats{



grid-template-columns:1fr;



}



.hero p{



font-size:17px;



}



}



/* ETAP 6 */





.area-section{



padding:100px 8%;

background:#111;



}





.area-box{



display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;



}







.area-box div{



background:#171717;

padding:40px;

border-radius:25px;

border:1px solid rgba(212,175,55,.2);

transition:.4s;



}





.area-box div:hover{



transform:translateY(-10px);

border-color:#D4AF37;



}





.area-box h3{



color:#D4AF37;

font-size:25px;

margin-bottom:15px;



}





.area-box p{



color:#ccc;

line-height:1.7;



}







/* MAPA */





.map-section{



padding:80px 8%;

background:#0b0b0b;

text-align:center;



}





.map-section iframe{



width:100%;

height:450px;

border:0;

border-radius:25px;



}







/* TELEFON */





.phone-float{



position:fixed;

right:25px;

bottom:25px;



width:65px;

height:65px;



background:#D4AF37;

color:#111;



border-radius:50%;



display:flex;

align-items:center;

justify-content:center;



font-size:30px;



text-decoration:none;



z-index:999;



box-shadow:0 10px 30px rgba(212,175,55,.4);



animation:pulse 2s infinite;



}







@keyframes pulse{



0%{

transform:scale(1);

}



50%{

transform:scale(1.1);

}



100%{

transform:scale(1);

}



}







/* PASEK */



.offer-bar{



position:fixed;

bottom:0;

left:0;



width:100%;



background:#D4AF37;



color:#111;



padding:15px;



display:flex;

justify-content:center;

gap:30px;

align-items:center;



z-index:998;



font-weight:600;



}





.offer-bar a{



background:#111;

color:white;



padding:10px 25px;



border-radius:30px;



text-decoration:none;



}







@media(max-width:900px){



.area-box{



grid-template-columns:1fr;



}





.offer-bar{



font-size:14px;



}



}



/* ETAP 7 */





/* PRZED I PO */





.before-after{



padding:100px 8%;

background:#111;



}





.before-container{



display:grid;

grid-template-columns:1fr 1fr;

gap:40px;



}





.before-box{



background:#171717;

border-radius:25px;

overflow:hidden;

border:1px solid rgba(212,175,55,.2);



}





.before-box img{
    width:100%;
    height:480px;
    object-fit:cover;
    object-position:center top;
}





.before-box h3{



padding:25px;

font-size:28px;

color:#D4AF37;

text-align:center;



}




@media(max-width:900px){



.before-container{
    grid-template-columns:1fr;
}




.before-box img{



height:300px;



}



}

/* ===========================
   USŁUGI PREMIUM
=========================== */

.services{
    padding:100px 8%;
    background:#0b0b0b;
}

.section-title{
    text-align:center;
    font-size:55px;
    margin-bottom:15px;
}

.section-title span{
    color:#D4AF37;
}

.section-desc{
    text-align:center;
    color:#aaa;
    font-size:18px;
    max-width:700px;
    margin:0 auto 60px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:linear-gradient(
        145deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );
    border:1px solid rgba(212,175,55,.2);
    padding:40px 30px;
    border-radius:25px;
    backdrop-filter:blur(15px);
    transition:.5s;
}

.service-card:hover{
    transform:translateY(-15px);
    border-color:#D4AF37;
    box-shadow:0 20px 50px rgba(212,175,55,.15);
}

.service-icon{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    background:rgba(212,175,55,.1);
    border:1px solid rgba(212,175,55,.4);
    border-radius:18px;

    color:#D4AF37;
    font-family:"Segoe UI Symbol",Arial,sans-serif;
    font-size:30px;
    font-weight:700;

    transition:.4s;
}

.service-card:hover .service-icon{
    background:#D4AF37;
    color:#111;
    transform:rotate(-5deg) scale(1.07);
    box-shadow:0 10px 30px rgba(212,175,55,.25);
}

.service-card h3{
    font-size:25px;
    margin-bottom:15px;
    color:#D4AF37;
}

.service-card p{
    color:#ccc;
    line-height:1.7;
}

/* ===========================
   GALERIA
=========================== */

.gallery-section{
    padding:100px 8%;
    background:#111;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    height:350px;
    overflow:hidden;
    border-radius:25px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.overlay h3{
    color:white;
    font-size:22px;
}

/* ===========================
   DLACZEGO MY
=========================== */

.why-section{
    padding:100px 8%;
    background:#0b0b0b;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    position:relative;
    min-height:280px;
    padding:38px 32px;

    background:linear-gradient(145deg,#191919,#131313);
    border:1px solid rgba(212,175,55,.18);
    border-radius:25px;

    transition:.4s;
    overflow:hidden;
}

.why-box::before{
    content:"";
    position:absolute;
    top:0;
    left:32px;

    width:55px;
    height:3px;

    background:#D4AF37;
    border-radius:0 0 10px 10px;

    transition:.4s;
}

.why-box:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 18px 45px rgba(0,0,0,.4);
}

.why-box:hover::before{
    width:100px;
}

.why-icon{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:27px;

    background:rgba(212,175,55,.1);
    border:1px solid rgba(212,175,55,.4);
    border-radius:18px;

    color:#D4AF37;
    font-family:"Segoe UI Symbol",Arial,sans-serif;
    font-size:30px;
    font-weight:800;

    box-shadow:inset 0 0 20px rgba(212,175,55,.05);
    transition:.4s;
}

.why-box:hover .why-icon{
    background:#D4AF37;
    color:#111;

    transform:rotate(-5deg) scale(1.07);
    box-shadow:0 10px 30px rgba(212,175,55,.25);
}

.why-box h4{
    margin:0 0 15px;

    color:#fff;
    font-size:23px;
}

.why-box p{
    color:#aaa;
    line-height:1.7;
}

/* ===========================
   KONTAKT
=========================== */

.contact-section{
    padding:100px 8%;
    background:#111;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.contact-info{
    background:#171717;
    padding:45px;
    border-radius:25px;
}

.contact-info h3{
    font-size:32px;
    color:#D4AF37;
    margin-bottom:30px;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:20px;
}

.contact-line{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0;
    font-size:17px;
}

.contact-symbol{
    width:42px;
    height:42px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(212,175,55,.4);
    border-radius:12px;
    background:rgba(212,175,55,.08);

    color:#D4AF37;
    font-size:13px;
    font-weight:800;
}

.contact-line a{
    color:#ddd;
    text-decoration:none;
    overflow-wrap:anywhere;
}

.contact-line a:hover{
    color:#D4AF37;
}

.contact-btn,
.whatsapp-btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    margin:10px 10px 0 0;
    font-weight:600;
    transition:.3s;
}

.contact-btn{
    background:#D4AF37;
    color:#111;
}

.whatsapp-btn{
    border:2px solid #D4AF37;
    color:white;
}

.whatsapp-btn:hover{
    background:#D4AF37;
    color:#111;
}

.form-box{
    background:#171717;
    padding:45px;
    border-radius:25px;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
select,
textarea{
    background:#0d0d0d;
    border:1px solid rgba(212,175,55,.3);
    padding:18px;
    border-radius:12px;
    color:white;
    font-size:16px;
}

textarea{
    height:140px;
    resize:none;
}

form button{
    padding:18px;
    border:none;
    border-radius:40px;
    background:#D4AF37;
    color:#111;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

form button:hover{
    transform:scale(1.03);
}

/* ===========================
   STOPKA
=========================== */

.footer{
    background:#050505;
    padding:40px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(212,175,55,.2);
}

.footer h3{
    color:#D4AF37;
    font-size:25px;
}

.footer p{
    color:#aaa;
}

/* ===========================
   ANIMACJE
=========================== */

.service-card,
.why-box,
.gallery-item,
.contact-container,
.before-box{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ===========================
   LIGHTBOX
=========================== */

.popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.popup img{
    max-width:90%;
    max-height:90%;
    border-radius:20px;
}

/* ===========================
   RESPONSYWNOŚĆ
=========================== */

@media(max-width:1100px){

    .service-container,
    .gallery-container,
    .why-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:900px){

    .contact-container{
        grid-template-columns:1fr;
    }

    .footer{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

}

@media(max-width:600px){

    .service-container,
    .gallery-container,
    .why-container{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:40px;
    }

    .before-box img{
        height:360px;
        object-fit:cover;
        object-position:center top;
    }

}

.scroll-top{

position:fixed;
left:25px;
bottom:25px;

width:60px;
height:60px;

background:#D4AF37;
color:#111;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;
text-decoration:none;

box-shadow:0 10px 30px rgba(212,175,55,.4);

transition:.3s;

z-index:999;

}

.scroll-top:hover{

transform:translateY(-5px);

}

/* MENU MOBILNE */

.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:1px solid rgba(212,175,55,.4);
    border-radius:12px;
    background:#171717;
    color:#D4AF37;
    font-size:27px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
}

@media(max-width:900px){

    .menu-toggle{
        display:flex;
    }

    header nav{
        display:flex;
        position:absolute;
        top:calc(100% + 10px);
        left:5%;
        right:5%;
        padding:18px;
        flex-direction:column;
        gap:5px;
        background:rgba(10,10,10,.97);
        border:1px solid rgba(212,175,55,.25);
        border-radius:18px;
        box-shadow:0 20px 50px rgba(0,0,0,.45);
        backdrop-filter:blur(15px);

        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateY(-15px);
        transition:.3s;
    }

    header nav.active{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateY(0);
    }

    header nav a{
        margin:0;
        padding:14px 18px;
        border-radius:10px;
    }

    header nav a:hover{
        background:rgba(212,175,55,.1);
    }
}

.contact-info a{
    color:#ddd;
    text-decoration:none;
}

.contact-info a:hover{
    color:#D4AF37;
}

/* CHOWANIE DOLNEGO PASKA */

.offer-bar{
    transition:
        transform .35s ease,
        opacity .35s ease,
        visibility .35s ease;
}

.offer-bar.offer-bar-hidden{
    transform:translateY(110%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

section{
    scroll-margin-top:100px;
}

/* NOWE KOLORY PRZYCISKÓW PŁYWAJĄCYCH */

.scroll-top{
    left:25px;
    bottom:85px;

    background:#111;
    color:#D4AF37;

    border:2px solid #D4AF37;

    box-shadow:0 10px 30px rgba(0,0,0,.55);
}

.scroll-top:hover{
    background:#D4AF37;
    color:#111;
    transform:translateY(-5px);
}


.phone-float{
    right:25px;
    bottom:85px;

    background:#25D366;
    color:#fff;

    border:2px solid #fff;

    box-shadow:0 10px 30px rgba(37,211,102,.35);
}

.phone-float:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}


@media(max-width:600px){

    .scroll-top{
        display:none;
    }

.phone-float{
    width:44px;
    height:44px;
    right:8px;
    bottom:68px;
    font-size:20px;
    opacity:.92;
}

.phone-float svg{
    width:21px;
    height:21px;
}


    .offer-bar{
        padding:8px 12px;
        gap:10px;
        justify-content:space-between;
    }

    .offer-bar p{
        max-width:125px;
        font-size:12px;
        line-height:1.35;
    }

    .offer-bar a{
        padding:10px 16px;
        font-size:12px;
        white-space:nowrap;
    }

}

.phone-float svg{
    width:30px;
    height:30px;
    fill:#fff;
}
/* LOGO TEKSTOWE W NAGŁÓWKU */

.logo{
    display:flex;
    align-items:center;
}

.logo-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1;
}

.logo-name{
    color:#D4AF37;
    font-size:30px;
    font-weight:800;
    letter-spacing:2px;
}

.logo-subtitle{
    margin-top:7px;
    color:#fff;
    font-size:11px;
    font-weight:600;
    letter-spacing:2.8px;
    text-transform:uppercase;
}

@media(max-width:600px){

    .logo-name{
        font-size:22px;
    }

    .logo-subtitle{
        font-size:8px;
        letter-spacing:1.6px;
    }

}


@media(max-width:600px){

    .stats{
        padding:70px 5%;
        gap:20px;
    }

    .box{
        padding:35px 20px;
    }

    .box h2{
        font-size:36px;
        line-height:1.15;
        overflow-wrap:anywhere;
    }

    .box p{
        font-size:15px;
        line-height:1.6;
    }

}

@media(max-width:600px){

    .contact-section{
        padding:75px 5%;
    }

    .contact-info,
    .form-box{
        padding:30px 22px;
    }

    .contact-info h3{
        font-size:27px;
        line-height:1.25;
    }

    .contact-line{
        gap:10px;
        font-size:15px;
        align-items:flex-start;
    }

    .contact-symbol{
        width:38px;
        height:38px;
        font-size:11px;
    }

    .contact-line a{
        min-width:0;
        font-size:14px;
        line-height:1.5;
        overflow-wrap:anywhere;
    }

    .contact-btn,
    .whatsapp-btn{
        display:block;
        width:100%;
        margin:12px 0 0;
        padding:14px 18px;
        text-align:center;
    }

    .form-box input,
    .form-box select,
    .form-box textarea{
        width:100%;
    }

}

@media(max-width:600px){

    .services,
    .gallery-section,
    .why-section,
    .before-after,
    .area-section,
    .map-section{
        padding:70px 5%;
    }

    .section-title{
        font-size:36px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .section-desc{
        font-size:16px;
        line-height:1.6;
        margin-bottom:40px;
    }

    .service-container,
    .gallery-container,
    .why-container,
    .area-box{
        gap:22px;
    }

    .service-card,
    .why-box,
    .area-box div{
        padding:30px 24px;
    }

    .gallery-item{
        height:300px;
    }

    .before-box img{
        height:360px;
        object-position:center top;
    }

    .map-section iframe{
        height:380px;
    }

}

@media(max-width:600px){

    .hero{
        height:auto;
        min-height:100svh;
        padding:135px 8% 95px;
        align-items:center;
    }

    .hero-text{
        width:100%;
        max-width:none;
    }

.hero h1{
    font-size:clamp(28px,8.5vw,34px);
    line-height:1.18;
    letter-spacing:-1px;
    margin-bottom:22px;
}

.hero-line{
    white-space:nowrap;
}

    .hero p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:32px;
    }

    .buttons{
        width:100%;
        gap:14px;
    }

    .buttons .btn{
        width:100%;
        max-width:300px;
        padding:15px 20px;
        text-align:center;
    }

}

.hero-line{
    display:block;
}

/* GALERIA PEŁNOEKRANOWA */

body.lightbox-open{
    overflow:hidden;
}

.popup{
    padding:20px;
    overscroll-behavior:contain;
    touch-action:none;
}

.popup-image{
    max-width:90vw;
    max-height:85dvh;
    object-fit:contain;

    user-select:none;
    -webkit-user-drag:none;

    cursor:default;
}

.popup-close{
    position:absolute;
    top:18px;
    right:22px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(212,175,55,.6);
    border-radius:50%;

    background:rgba(10,10,10,.85);
    color:#D4AF37;

    font-size:34px;
    line-height:1;

    cursor:pointer;
    z-index:2;
}

.popup-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(212,175,55,.5);
    border-radius:50%;

    background:rgba(10,10,10,.8);
    color:#D4AF37;

    font-size:42px;
    line-height:1;

    cursor:pointer;
    z-index:2;
}

.popup-prev{
    left:22px;
}

.popup-next{
    right:22px;
}

.popup-close:hover,
.popup-arrow:hover{
    background:#D4AF37;
    color:#111;
}

@media(max-width:600px){

    .popup{
        padding:10px;
    }

    .popup-image{
        max-width:94vw;
        max-height:82dvh;
    }

    /* Na telefonie zdjęcia przesuwamy palcem */
    .popup-arrow{
        display:none;
    }

    .popup-close{
        top:14px;
        right:14px;
        width:44px;
        height:44px;
        font-size:30px;
    }

}

.gallery-item img,
.before-box img{
    cursor:zoom-in;
}

/* DODATKOWE USTAWIENIA PRODUKCYJNE */

html{
    scroll-behavior:smooth;
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.form-honey{
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    opacity:0 !important;
    pointer-events:none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
    outline:3px solid rgba(212,175,55,.9);
    outline-offset:3px;
}

@media(max-width:600px){
    .phone-float svg{
        width:21px;
        height:21px;
    }
}

@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        scroll-behavior:auto !important;
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}
