*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#0f0f0f;
    color:white;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

header{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(10px);
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    font-size:32px;
    font-weight:bold;
    color:#ff3c00;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    font-weight:600;
}

nav a:hover{
    color:#ff3c00;
}

.hero{
    position:relative;
    height:100vh;
    background:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#ff3c00;
    color:white;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.secondary{
    background:#222;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:-80px;
    position:relative;
    z-index:3;
}

.feature-box{
    background:#181818;
    padding:35px;
    border-radius:16px;
    box-shadow:0 0 30px rgba(0,0,0,0.3);
}

.feature-box h2{
    margin-bottom:15px;
    color:#ff3c00;
}

.about-preview,
.services-preview,
.page-content,
.kontakt-section,
.services-page{
    padding:100px 0;
}

.about-grid,
.kontakt-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-grid img,
.service-card img{
    width:100%;
    border-radius:18px;
}

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

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#181818;
    border-radius:18px;
    overflow:hidden;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-5px);
}

.service-card h3,
.service-card h2{
    padding:20px 20px 10px;
}

.service-card p{
    padding:0 20px 20px;
}

.large{
    padding:30px;
}

.page-banner{
    padding:170px 20px 90px;
    text-align:center;
    background:#181818;
}

.page-banner h1{
    font-size:60px;
}

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

.kontakt-form input,
.kontakt-form textarea{
    background:#181818;
    border:none;
    padding:18px;
    color:white;
    border-radius:10px;
}

.kontakt-form textarea{
    min-height:180px;
    resize:none;
}

footer{
    background:#111;
    padding-top:70px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding-bottom:50px;
}

.footer-content h3{
    margin-bottom:20px;
    color:#ff3c00;
}

.footer-content a{
    color:white;
    text-decoration:none;
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,0.08);
}

@media(max-width:1000px){

    .features,
    .services-grid,
    .footer-content,
    .about-grid,
    .kontakt-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:42px;
    }

    nav ul{
        gap:15px;
    }
}

@media(max-width:700px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:18px;
    }

    .page-banner h1{
        font-size:40px;
    }
}

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

.kontakt-bg{
    background:url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.kontakt-page{
    padding:120px 0;
    position:relative;
    z-index:2;
}

.kontakt-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

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

.kontakt-info{
    background:#151515;
    padding:50px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.kontakt-info:hover{
    border-color:#ff3c00;
    transform:translateY(-5px);
}

.kontakt-info h2{
    font-size:46px;
    margin-bottom:40px;
}

.kontakt-item{
    margin-bottom:35px;
}

.kontakt-item:last-child{
    margin-bottom:0;
}

.kontakt-item h3{
    color:#ff3c00;
    margin-bottom:10px;
    font-size:22px;
}

.kontakt-item p{
    color:#d0d0d0;
    line-height:1.8;
    font-size:18px;
}

.kontakt-item a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.kontakt-item a:hover{
    color:#ff3c00;
}

/* =========================
   FORMULAR
========================= */

.kontakt-form{
    background:#151515;
    padding:50px;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    gap:25px;
    border:1px solid rgba(255,255,255,0.05);
}

.kontakt-form input,
.kontakt-form textarea{
    background:#0d0d0d;
    border:none;
    padding:20px;
    border-radius:14px;
    color:white;
    font-size:17px;
    transition:0.3s;
}

.kontakt-form input:focus,
.kontakt-form textarea:focus{
    outline:none;
    border:1px solid #ff3c00;
    box-shadow:0 0 20px rgba(255,60,0,0.15);
}

.kontakt-form textarea{
    min-height:220px;
    resize:none;
}

.kontakt-form button{
    cursor:pointer;
    border:none;
    font-size:18px;
}

/* =========================
   MAPS
========================= */

.map-section{
    width:100%;
    position:relative;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
    filter:grayscale(100%) invert(92%) contrast(90%);
}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px){

    .kontakt-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .kontakt-page{
        padding:80px 0;
    }

    .kontakt-info,
    .kontakt-form{
        padding:30px;
        border-radius:22px;
    }

    .kontakt-info h2{
        font-size:34px;
    }

    .kontakt-item h3{
        font-size:20px;
    }

    .kontakt-item p{
        font-size:16px;
    }

    .kontakt-form input,
    .kontakt-form textarea{
        padding:18px;
        font-size:16px;
    }

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

}

/* =========================
   SERVICES PAGE
========================= */

.service-bg{
    background:url('https://images.unsplash.com/photo-1558980394-34764dbaf0d6?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.services-page-section{
    padding:120px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card{
    background:#151515;
    border-radius:28px;
    overflow:hidden;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.05);
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ff3c00;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:0.6s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-content{
    padding:35px;
}

.service-tag{
    display:inline-block;
    background:rgba(255,60,0,0.12);
    color:#ff3c00;
    padding:8px 14px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:bold;
}

.service-content h3{
    font-size:30px;
    margin-bottom:18px;
}

.service-content p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:17px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:750px){

    .services-page-section{
        padding:80px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .service-image img{
        height:240px;
    }

    .service-content{
        padding:28px;
    }

    .service-content h3{
        font-size:24px;
    }

    .service-content p{
        font-size:16px;
    }

}

/* =========================
   ABOUT PAGE
========================= */

.about-bg{
    background:url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.about-page-section{
    padding:120px 0;
}

.about-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* IMAGE */

.about-page-image{
    overflow:hidden;
    border-radius:30px;
}

.about-page-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.about-page-image:hover img{
    transform:scale(1.05);
}

/* CONTENT */

.about-page-content{
    position:relative;
}

.about-tag{
    display:inline-block;
    background:rgba(255,60,0,0.12);
    color:#ff3c00;
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:25px;
}

.about-page-content h2{
    font-size:58px;
    line-height:1.2;
    margin-bottom:30px;
}

.about-page-content p{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    margin-bottom:22px;
}

/* =========================
   TIMELINE
========================= */

.timeline-section{
    padding:120px 0;
    background:#111;
}

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

.timeline-card{
    background:#151515;
    padding:40px;
    border-radius:26px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.05);
}

.timeline-card:hover{
    transform:translateY(-10px);
    border-color:#ff3c00;
}

.timeline-card span{
    display:inline-block;
    color:#ff3c00;
    font-size:46px;
    font-weight:bold;
    margin-bottom:20px;
}

.timeline-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.timeline-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* =========================
   ABOUT STATS
========================= */

.about-stats{
    padding:120px 0;
}

.about-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.about-stat{
    background:#151515;
    padding:50px;
    border-radius:28px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.about-stat:hover{
    transform:translateY(-10px);
    border-color:#ff3c00;
}

.about-stat h2{
    font-size:72px;
    color:#ff3c00;
    margin-bottom:15px;
}

.about-stat p{
    font-size:22px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px){

    .about-page-grid,
    .timeline-grid,
    .about-stats-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .about-page-section,
    .timeline-section,
    .about-stats{
        padding:80px 0;
    }

    .about-page-content h2{
        font-size:40px;
    }

    .about-page-content p{
        font-size:16px;
    }

    .timeline-card,
    .about-stat{
        padding:30px;
    }

    .about-stat h2{
        font-size:54px;
    }

}

/* =========================
   REVIEWS
========================= */

.reviews-section{
    padding:120px 0;
    background:#111;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:#151515;
    padding:40px;
    border-radius:28px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:#ff3c00;
}

.review-stars{
    color:#ff3c00;
    font-size:28px;
    margin-bottom:20px;
}

.review-card p{
    color:#d0d0d0;
    line-height:1.9;
    margin-bottom:25px;
    font-size:17px;
}

.review-card h3{
    font-size:20px;
}

/* =========================
   STICKY BUTTON
========================= */

.sticky-contact-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:999;

    background:#ff3c00;
    color:white;
    text-decoration:none;

    padding:18px 28px;
    border-radius:60px;

    font-weight:bold;

    box-shadow:0 15px 35px rgba(255,60,0,0.35);

    transition:0.3s;
}

.sticky-contact-btn:hover{
    transform:translateY(-5px);
}

/* =========================
   COOKIE BANNER
========================= */

.cookie-banner{
    position:fixed;
    left:30px;
    bottom:30px;
    z-index:9999;

    background:#151515;
    border:1px solid rgba(255,255,255,0.05);

    padding:25px;
    border-radius:24px;

    max-width:420px;

    box-shadow:0 20px 50px rgba(0,0,0,0.45);
}

.cookie-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.cookie-content p{
    color:#d0d0d0;
    line-height:1.7;
}

.cookie-content button{
    background:#ff3c00;
    color:white;
    border:none;
    padding:14px 20px;
    border-radius:12px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
}

.cookie-content button:hover{
    transform:translateY(-3px);
}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .reviews-section{
        padding:80px 0;
    }

    .sticky-contact-btn{
        right:15px;
        left:15px;
        bottom:15px;
        text-align:center;
        border-radius:16px;
    }

    .cookie-banner{
        left:15px;
        right:15px;
        bottom:90px;
        max-width:none;
    }

}

/* =========================
   OPENING STATUS
========================= */

.opening-section{
    padding:120px 0 40px;
}

.opening-box{
    background:#151515;
    padding:60px;
    border-radius:30px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
}

.opening-status{
    display:inline-flex;
    align-items:center;
    gap:12px;

    background:rgba(255,255,255,0.04);

    padding:12px 22px;

    border-radius:50px;

    margin-bottom:30px;
}

.status-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:#00d26a;

    box-shadow:0 0 15px rgba(0,210,106,0.5);
}

.opening-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.opening-box p{
    color:#cfcfcf;
    font-size:20px;
    line-height:1.8;
}

/* =========================
   FAQ
========================= */

.faq-section{
    padding:120px 0;
}

.faq-wrapper{
    max-width:1000px;
    margin:auto;
}

.faq-item{
    background:#151515;
    border-radius:22px;
    margin-bottom:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:white;

    padding:28px 35px;

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

    font-size:20px;
    font-weight:bold;

    cursor:pointer;
}

.faq-question span{
    color:#ff3c00;
    font-size:30px;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.faq-answer p{
    padding:0 35px 30px;
    color:#cfcfcf;
    line-height:1.9;
}

/* =========================
   MOBILE
========================= */

@media(max-width:700px){

    .opening-section{
        padding:80px 0 20px;
    }

    .opening-box{
        padding:35px 25px;
    }

    .opening-box h2{
        font-size:34px;
    }

    .opening-box p{
        font-size:17px;
    }

    .faq-section{
        padding:80px 0;
    }

    .faq-question{
        padding:24px;
        font-size:17px;
    }

    .faq-answer p{
        padding:0 24px 24px;
        font-size:15px;
    }

}

/* =========================
   LIVE HEADER STATUS
========================= */

.live-opening-status{

    display:flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,0.05);

    padding:10px 16px;

    border-radius:50px;

    font-size:14px;

    color:#d0d0d0;
}

.live-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00d26a;

    box-shadow:0 0 10px rgba(0,210,106,0.4);

}

/* =========================
   NAVBAR LAYOUT
========================= */

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

}

nav{
    margin-left:auto;
}

/* =========================
   MOBILE
========================= */

@media(max-width:950px){

    .live-opening-status{
        display:none;
    }

}

.logo{
    text-decoration:none;
    color:#ff3c00;
}

/* =========================
   HEADER SCROLL
========================= */

header.scrolled{

    background:rgba(0,0,0,0.95);

    backdrop-filter:blur(10px);

}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    min-height:100vh;

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

    overflow:hidden;

    text-align:center;

    padding:120px 20px;

}

.hero-bg{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    ),

    url('https://images.unsplash.com/photo-1558980394-34764dbaf0d6?q=80&w=1920&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    transform:scale(1.1);

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,60,0,0.15),
        transparent 40%
    );

}

.hero-content{

    position:relative;
    z-index:2;

    max-width:1000px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,60,0,0.12);

    border:1px solid rgba(255,60,0,0.2);

    color:#ff3c00;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:bold;

    letter-spacing:1px;

    margin-bottom:30px;

}

.hero h1{

    font-size:82px;

    line-height:1.05;

    margin-bottom:30px;

}

.hero p{

    font-size:24px;

    color:#d0d0d0;

    line-height:1.8;

    max-width:760px;

    margin:auto auto 40px;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .hero h1{
        font-size:56px;
    }

    .hero p{
        font-size:20px;
    }

}

@media(max-width:600px){

    .hero{
        min-height:90vh;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons .btn{
        width:100%;
    }

}

/* =========================
   LOADER
========================= */

.loader{

    position:fixed;
    inset:0;

    background:#080808;

    z-index:999999;

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

    transition:1s ease;

}

.loader.hidden{

    opacity:0;
    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-logo{

    font-size:64px;
    font-weight:800;

    color:#ff3c00;

    margin-bottom:30px;

    letter-spacing:2px;

}

.loader-line{

    width:240px;
    height:4px;

    background:rgba(255,255,255,0.08);

    border-radius:20px;

    overflow:hidden;

}

.loader-line span{

    display:block;

    width:0%;
    height:100%;

    background:#ff3c00;

    animation:loadingLine 1.6s ease forwards;

}

@keyframes loadingLine{

    to{
        width:100%;
    }

}

/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer{

    position:relative;

    background:#090909;

    padding-top:120px;

    overflow:hidden;

    border-top:1px solid rgba(255,255,255,0.06);

}

.footer-glow{

    position:absolute;

    top:-200px;
    right:-200px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,60,0,0.12),
        transparent 70%
    );

    filter:blur(80px);

}

.footer-grid{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:80px;

}

.footer-brand h2{

    font-size:58px;

    color:#ff3c00;

    margin-bottom:25px;

}

.footer-brand p{

    color:#cfcfcf;

    line-height:2;

    max-width:500px;

    font-size:17px;

}

.footer-column h3{

    margin-bottom:25px;

    color:white;

    font-size:24px;

}

.footer-column ul{

    list-style:none;

}

.footer-column li{

    margin-bottom:16px;

    color:#bdbdbd;

}

.footer-column a{

    color:#bdbdbd;

    text-decoration:none;

    transition:0.3s;

}

.footer-column a:hover{

    color:#ff3c00;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.06);

    padding:30px;

    text-align:center;

    color:#9d9d9d;

    position:relative;
    z-index:2;

}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:700px){

    .premium-footer{

        padding-top:80px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-brand h2{

        font-size:42px;

    }

    .loader-logo{

        font-size:42px;

    }

    .loader-line{

        width:180px;

    }

}