*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#fff;
    background:#081217;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#061014;
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:100;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:bold;
}

.logo span{
    color:#f7c600;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}


.hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.page-hero .overlay{
    display:none;
}


.hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.hero-text{
    padding:50px 20px 70px;
    text-align:center;
    background:#081217;
}

.hero-text h1{
    max-width:1100px;
    margin:0 auto 25px;
    font-size:58px;
    line-height:1.2;
}

.hero-text p{
    max-width:900px;
    margin:0 auto 35px;
    font-size:22px;
    color:#ddd;
}

.hero-text .hero-buttons{
    justify-content:center;
}

@media(max-width:768px){

    .hero{
        min-height:300px;
    }

    .hero-text h1{
        font-size:36px;
    }

    .hero-text p{
        font-size:18px;
    }

}

.hero h1{
    font-size:58px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


.process-section,
.showcase-section,
.premium-section{
    padding:100px 0;
}

.process-grid,
.showcase-grid,
.premium-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.process-image img,
.showcase-image img,
.premium-image img{
    width:100%;
    border-radius:18px;
    border:1px solid #1c323c;
    display:block;
}

.process-content span,
.showcase-content span,
.premium-content span{
    color:#f7c600;
    font-weight:bold;
    text-transform:uppercase;
}

.process-content h2,
.showcase-content h2,
.premium-content h2{
    font-size:42px;
    margin:15px 0 25px;
}

.process-content p,
.showcase-content p{
    color:#ddd;
    font-size:20px;
    margin-bottom:25px;
}

.process-content ul{
    list-style:none;
    margin-bottom:35px;
}

.process-content li{
    background:#0f1d24;
    border-left:4px solid #f7c600;
    padding:16px;
    margin-bottom:12px;
    border-radius:8px;
}

.showcase-section{
    background:#0f1d24;
}

@media(max-width:900px){
    .process-grid,
    .showcase-grid,
    .premium-grid{
        grid-template-columns:1fr;
    }

    .process-content h2,
    .showcase-content h2,
    .premium-content h2{
        font-size:32px;
    }
}

.btn-primary{
    background:#f7c600;
    color:black;
    padding:15px 30px;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
}

.btn-secondary{
    border:2px solid #f7c600;
    color:#f7c600;
    padding:15px 30px;
    text-decoration:none;
    border-radius:6px;
}

.services,
.why-us,
.cta{
    padding:100px 0;
}

.services h2,
.why-us h2,
.cta h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#0f1d24;
    padding:30px;
    text-decoration:none;
    color:white;
    border:1px solid #1c323c;
    border-radius:10px;
    transition:.3s;
}

.service-card:hover{
    border-color:#f7c600;
    transform:translateY(-5px);
}

.service-card h3{
    margin-bottom:15px;
    color:#f7c600;
}

.advantages{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.advantages div{
    background:#0f1d24;
    padding:20px;
    border-radius:8px;
}

.cta{
    text-align:center;
    background:#0f1d24;
}

.cta p{
    margin:20px 0 40px;
}

footer{
    padding:30px;
    text-align:center;
    background:#061014;
}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:18px;
    }

}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    text-decoration:none;
    font-size:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}


.header-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.quote-btn{
    background:#f7c600;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    padding:12px 22px;
    border-radius:6px;
    transition:.3s;
    white-space:nowrap;
}

.quote-btn:hover{
    background:#ffd633;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .header-container{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
    }

}

.page-hero{
    min-height:600px;
    position:relative;
    text-align:center;
}

.hero-content{
    position:absolute;
    top:40px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:1200px;
    z-index:2;
}

.page-hero-home{
    background:url('../images/hero/serwis-1.jpg') center center no-repeat;
    background-size:cover;
    background-color:#061014;
}

.page-hero-about{
    background:url('../images/hero/o-nas.jpg') center center no-repeat;
    background-size:contain;
    background-color:#061014;
}

.page-hero-pricing{
    background:url('../images/hero/cennik.jpg') center center no-repeat;
    background-size:contain;
    background-color:#061014;
}

.page-hero-contact{
    background:url('../images/hero/kontakt-1.jpg') center center no-repeat;
    background-size:contain;
    background-color:#061014;
    min-height:700px;
}

.page-hero-services{
    background:url('../images/hero/uslugi..jpg') center center no-repeat;
    background-size:contain;
    background-color:#061014;
}

.page-hero .overlay{
    display:none;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;
    display:block;
    border:3px solid #f7c600;
}

@media(max-width:768px){

    .logo img{
        width:60px;
        height:60px;
    }

}


.about-section{
    padding:90px 0;
}

.about-section.dark{
    background:#0f1d24;
}

.about-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:42px;
}

.about-section p{
    max-width:900px;
    margin:0 auto 20px;
    text-align:center;
    font-size:20px;
    line-height:1.8;
}

.services-list{
    max-width:900px;
    margin:auto;
    list-style:none;
}

.services-list li{
    background:#0f1d24;
    margin-bottom:15px;
    padding:20px;
    border-left:4px solid #f7c600;
    border-radius:8px;
}


.pricing-section{
    padding:100px 0;
}

.pricing-section h2,
.price-note h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.section-intro{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    color:#ddd;
    font-size:20px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.price-box{
    background:#0f1d24;
    border:1px solid #1c323c;
    border-radius:12px;
    padding:30px;
}

.price-box h3{
    color:#f7c600;
    font-size:26px;
    margin-bottom:25px;
}

.price-box ul{
    list-style:none;
}

.price-box li{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.price-box li:last-child{
    border-bottom:none;
}

.price-box span{
    color:#eee;
}

.price-box strong{
    color:#f7c600;
    white-space:nowrap;
}

.price-note{
    padding:90px 0;
    text-align:center;
    background:#0f1d24;
}

.price-note p{
    max-width:850px;
    margin:0 auto 40px;
    font-size:20px;
    color:#ddd;
}


.page-hero-realizations{
    background:url('../images/hero/realizacje.png') center center no-repeat;
    background-size:contain;
    background-color:#061014;
}

.realizations-section{
    padding:100px 0;
}

.realizations-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:70px;
}

.realization-card{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:40px;
    align-items:center;
    margin-bottom:90px;
    background:#0f1d24;
    border:1px solid #1c323c;
    border-radius:16px;
    padding:30px;
}

.realization-card.reverse{
    grid-template-columns:.8fr 1.4fr;
}

.realization-card.reverse .before-after{
    order:2;
}

.realization-card.reverse .realization-content{
    order:1;
}

.before-after{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.before-after div{
    position:relative;
}

.before-after span{
    position:absolute;
    top:12px;
    left:12px;
    background:#f7c600;
    color:#000;
    font-weight:bold;
    padding:6px 12px;
    border-radius:4px;
    z-index:2;
}

.before-after img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.realization-content h3{
    color:#f7c600;
    font-size:30px;
    margin-bottom:20px;
}

.realization-content p{
    color:#ddd;
    font-size:18px;
    margin-bottom:20px;
}

.realization-content ul{
    list-style:none;
}

.realization-content li{
    margin-bottom:10px;
    color:#fff;
}

@media(max-width:900px){

    .realization-card,
    .realization-card.reverse{
        grid-template-columns:1fr;
    }

    .realization-card.reverse .before-after,
    .realization-card.reverse .realization-content{
        order:initial;
    }

    .before-after{
        grid-template-columns:1fr;
    }

    .before-after img{
        height:auto;
    }

}


.contact-section,
.business-section,
.contact-area{
    padding:100px 0;
}

.contact-section h2,
.business-section h2,
.contact-area h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.contact-card{
    background:#0f1d24;
    border:1px solid #1c323c;
    border-radius:14px;
    padding:35px;
    text-align:center;
}

.contact-card h3{
    color:#f7c600;
    font-size:26px;
    margin-bottom:15px;
}

.contact-card p{
    color:#ddd;
    margin-bottom:20px;
}

.contact-card a{
    color:#f7c600;
    font-size:22px;
    font-weight:bold;
    text-decoration:none;
}

.business-section{
    background:#0f1d24;
}

.business-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.contact-area{
    text-align:center;
}

.contact-area p{
    max-width:900px;
    margin:auto;
    font-size:20px;
    color:#ddd;
}


.page-hero-contact .hero-content{
    top:-10px;
}

.page-hero-contact h1{
    font-size:20px;
    margin-bottom:15px;
}

.page-hero-contact p{
    font-size:15px;
    max-width:1200px;
    margin:auto;
}


.footer{
    background:#061014;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1.3fr 1fr;
    gap:45px;
    align-items:start;
}

.footer-brand img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #f7c600;
    margin-bottom:20px;
}

.footer h3{
    color:#f7c600;
    margin-bottom:20px;
    font-size:24px;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#ddd;
    text-decoration:none;
}

.footer a:hover{
    color:#f7c600;
}

.footer p{
    color:#ccc;
    margin-bottom:12px;
}

.footer-whatsapp{
    display:inline-block;
    margin-top:12px;
    background:#25D366;
    color:white !important;
    padding:12px 18px;
    border-radius:6px;
    font-weight:bold;
}

.footer-bottom{
    margin-top:50px;
    padding:25px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.1);
    color:#ccc;
}

@media(max-width:900px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:600px){
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
}


.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#061014;
    border-top:2px solid #f7c600;
    z-index:99999;
    padding:20px;
}

.cookie-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.cookie-content p{
    margin:0;
    color:#fff;
}

.cookie-content a{
    color:#f7c600;
}

.cookie-content button{
    background:#f7c600;
    border:none;
    padding:12px 20px;
    cursor:pointer;
    font-weight:bold;
    border-radius:6px;
}

@media(max-width:768px){
    .cookie-content{
        flex-direction:column;
        text-align:center;
    }
}

.menu-toggle{
    display:none;
    background:#f7c600;
    color:#000;
    border:none;
    font-size:28px;
    font-weight:bold;
    width:50px;
    height:50px;
    border-radius:8px;
    cursor:pointer;
}

.mobile-quote{
    display:none;
}

@media(max-width:900px){

    header{
        padding:14px 0;
    }

    .header-container{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        flex-wrap:nowrap;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:54px;
        height:54px;
        border-radius:12px;
        background:#f7c600;
        color:#000;
        border:none;
        font-size:30px;
        font-weight:900;
        cursor:pointer;
        z-index:10001;
    }

    nav{
        position:fixed;
        inset:0;
        width:100%;
        height:100vh;
        background:rgba(6,16,20,.98);
        display:none;
        z-index:10000;
        padding:120px 28px 40px;
    }

    nav.active{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    nav ul{
        width:100%;
        max-width:420px;
        display:flex;
        flex-direction:column;
        gap:14px;
        list-style:none;
        margin:0;
        padding:0;
    }

    nav li{
        width:100%;
    }

    nav a{
        display:block;
        width:100%;
        padding:18px 20px;
        background:#0f1d24;
        border:1px solid #1c323c;
        border-radius:14px;
        color:#fff;
        text-decoration:none;
        text-align:center;
        font-size:22px;
        font-weight:700;
    }

    nav a:hover{
        border-color:#f7c600;
        color:#f7c600;
    }

    .mobile-quote{
        display:block;
        background:#f7c600 !important;
        color:#000 !important;
        border-color:#f7c600 !important;
        font-size:22px;
        margin-top:10px;
    }

    .quote-btn{
        display:none;
    }

    .logo,
    .logo a{
        z-index:10001;
        position:relative;
    }
}

.page-text{
    padding:40px 20px 60px;
    text-align:center;
}

.page-text h1{
    font-size:56px;
    margin-bottom:25px;
}

.page-text p{
    max-width:900px;
    margin:0 auto;
    font-size:22px;
    line-height:1.8;
}


.page-text{
    padding:35px 20px 55px;
    text-align:center;
    background:#061014;
}

.page-text h1{
    font-size:52px;
    margin-bottom:18px;
}

.page-text p{
    max-width:900px;
    margin:0 auto;
    font-size:22px;
    line-height:1.7;
    color:#eee;
}

.page-hero{
    min-height:420px;
}

@media(max-width:768px){

    .page-hero{
        min-height:300px;
    }

    .page-text{
        padding:30px 18px 45px;
    }

    .page-text h1{
        font-size:38px;
    }

    .page-text p{
        font-size:20px;
    }

}


.contact-section{
    padding:80px 0;
}

.contact-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.contact-layout{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:30px;
    align-items:stretch;
}

.contact-main{
    display:grid;
    gap:20px;
}

.contact-big-card{
    display:flex;
    align-items:center;
    gap:25px;
    background:#0f1d24;
    border:1px solid #1c323c;
    border-radius:14px;
    padding:28px;
    text-decoration:none;
    color:white;
    transition:.3s;
}

.contact-big-card:hover{
    border-color:#f7c600;
    transform:translateY(-3px);
}

.contact-big-card span{
    font-size:42px;
}

.contact-big-card h3{
    color:#f7c600;
    font-size:24px;
    margin-bottom:5px;
}

.contact-big-card strong{
    display:block;
    font-size:28px;
    color:#fff;
    margin-bottom:5px;
}

.contact-big-card p{
    color:#ccc;
}

.company-box{
    background:#0f1d24;
    border:1px solid #1c323c;
    border-radius:14px;
    padding:35px;
}

.company-box h3{
    color:#f7c600;
    font-size:28px;
    margin-bottom:25px;
}

.company-box p{
    margin-bottom:14px;
    color:#ddd;
}

.company-box hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.12);
    margin:22px 0;
}

@media(max-width:900px){
    .contact-layout{
        grid-template-columns:1fr;
    }

    .contact-big-card{
        flex-direction:column;
        text-align:center;
    }
}



.reviews-cta{
    padding:80px 0;
    background:#0f1d24;
}

.reviews-box{
    text-align:center;
}

.reviews-text span{
    display:block;
    color:#f7c600;
    font-weight:700;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.reviews-text h2{
    font-size:42px;
    margin-bottom:20px;
}

.reviews-text p{
    max-width:700px;
    margin:0 auto 40px;
    color:#ddd;
}

.social-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.social-buttons a{
    padding:16px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.google-btn{
    background:#f7c600;
    color:#000;
}

.facebook-btn{
    background:#1877f2;
    color:#fff;
}

.fixly-btn{
    background:#00a870;
    color:#fff;
}

.social-buttons a:hover{
    transform:translateY(-3px);
}

.communities-section{
    padding:100px 0;
    background:#0f1d24;
}

.communities-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.communities-content span{
    color:#f7c600;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.communities-content h2{
    font-size:42px;
    margin:15px 0 25px;
}

.communities-content p{
    color:#ddd;
    margin-bottom:25px;
    font-size:18px;
}

.communities-list{
    list-style:none;
    margin-bottom:35px;
}

.communities-list li{
    margin-bottom:12px;
}

.communities-image img{
    width:100%;
    border-radius:16px;
    display:block;
}

@media(max-width:900px){

    .communities-grid{
        grid-template-columns:1fr;
    }

    .communities-content h2{
        font-size:34px;
    }
}

.hero.home-hero-new{
    min-height:500px;

    background:url('../images/hero/serwis-3.jpg') center center no-repeat;
    background-size:contain;
    background-color:#061014;
}

@media(max-width:768px){

    .hero.home-hero-new{
        min-height:300px;
        background-size:contain;
        background-position:center center;
        background-repeat:no-repeat;
    }

}
