/* =========================
   RESET
========================= */
html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0b0b0b;
    color:white;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
}


/* =========================
   VARIABLES
========================= */

:root{
    --red:#e10600;
    --black:#000;
    --dark:#111;
    --gray:#1b1b1b;
    --white:#fff;
}


/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#000;
    padding:10px 15px;
    border-bottom:1px solid #222;
    text-align:center;
    font-size:14px;
}

.top-bar span{
    display:block;
    margin:5px 0;
    color:#fff;
}


/* =========================
   HEADER
========================= */

header{

    width:100%;

    background:#000;

    padding:12px 15px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

}


.logo{

    width:350px;

    height:90px;

    object-fit:contain;

}


/* MENU BUTTON */

.menu-toggle{

    font-size:30px;

    color:white;

    cursor:pointer;

    background:#111;

    border:2px solid #e10600;

    width:45px;

    height:45px;

    border-radius:10px;

    display:flex;

    justify-content:center;

    align-items:center;

}





/* =========================
   HERO SECTION
========================= */

/* HERO SECTION */

.hero{

    min-height:85vh;

    padding:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.65)
    ),
    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

}


.hero h1{

    font-size:42px;

    color:white;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:1px;

}


.hero h1 span{

    color:var(--red);

}


.hero p{

    font-size:18px;

    line-height:1.7;

    color:#eee;

    max-width:600px;

    margin-bottom:30px;

}


.btn{

    background:var(--red);

    color:white;

    padding:15px 40px;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

    font-size:17px;

    transition:.3s;

}


.btn:hover{

    background:white;

    color:black;

    transform:scale(1.05);

}


/* =========================
   SECTION TITLE
========================= */

section{

    padding:60px 15px;

}


.section-title{

    text-align:center;

    font-size:32px;

    color:var(--red);

    margin-bottom:35px;

}


/* =========================
   SERVICES
========================= */


/* SERVICES SECTION */

.services{

    background:#111;

    padding:60px 20px;

}



.services-container{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}



.service-box{

    background:

    linear-gradient(

    145deg,

    #1c1c1c,

    #111

    );

    padding:30px 20px;

    text-align:center;

    border-radius:18px;

    border:1px solid #333;

    transition:.4s;

    overflow:hidden;

}



.service-box:hover{

    border-color:var(--red);

    transform:translateY(-8px);

    box-shadow:0 10px 25px rgba(255,0,0,.15);

}



.service-box h3{

    color:var(--red);

    margin-bottom:15px;

    font-size:24px;

}



.service-box p{

    color:#ddd;

    line-height:1.8;

    font-size:16px;

}

/* =========================
   GALLERY
========================= */

.gallery{

    background:#0b0b0b;

}


.gallery-container{

    display:grid;

    grid-template-columns:1fr;

    gap:15px;

}


.gallery-item{

    overflow:hidden;

    border-radius:15px;

    border:2px solid #222;

}


.gallery-item img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.4s;

}


.gallery-item img:hover{

    transform:scale(1.08);

}


/* LED SECTION */

.led-section{

    background:#111;

    padding:60px 20px;

}



.led-container{

    display:grid;

    grid-template-columns:1fr;

    gap:25px;

}



.led-box{

    background:

    linear-gradient(

    145deg,

    #1c1c1c,

    #111

    );

    border-radius:18px;

    overflow:hidden;

    border:1px solid #333;

    transition:.4s;

}



.led-box:hover{

    border-color:var(--red);

    transform:translateY(-8px);

}



.led-box img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

}



.led-box h3{

    color:var(--red);

    padding:18px 15px 10px;

    font-size:24px;

}



.led-box p{

    padding:0 15px 25px;

    color:#ddd;

    line-height:1.8;

}






/* =========================
   BRANDS SLIDER
========================= */


.brands{

    background:#000;

    overflow:hidden;

}


.brands-slider{

    width:100%;

    overflow:hidden;

}


.brands-track{

    display:flex;

    width:max-content;

    animation:brandsMove 20s linear infinite;

}


.brand-item{

    width:220px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:transparent;
    border:none;
    box-shadow:none;

    margin:0 20px;

}

.brand-item img{

    width:170px;
    height:auto;

    object-fit:contain;

    filter:drop-shadow(0 0 8px rgba(255,255,255,.15));

    transition:.35s;

}


@keyframes brandsMove{

    from{

        transform:translateX(0);

    }


    to{

        transform:translateX(-50%);

    }

}




/* =========================
   CONTACT
========================= */


.contact{

    background:#111;

    text-align:center;

}


.contact-box{

    background:#181818;

    padding:25px;

    border-radius:15px;

    border:1px solid #333;

}


.contact-box p{

    margin:15px 0;

    font-size:18px;

}



.contact-box a{

    color:white;

    text-decoration:none;

}


.contact-box a:hover{

    color:var(--red);

}




/* =========================
   FOOTER
========================= */


footer{

    background:#000;

    text-align:center;

    padding:25px 15px;

    border-top:2px solid var(--red);

}


footer p{

    color:#aaa;

    font-size:14px;

}




/* =========================
   TABLET
========================= */


@media(min-width:600px){


.services-container{

    grid-template-columns:repeat(2,1fr);

}


.led-container{

    grid-template-columns:repeat(2,1fr);

}


.gallery-container{

    grid-template-columns:repeat(2,1fr);

}



}




/* =========================
   DESKTOP
========================= */


@media(min-width:900px){


header{

    padding:20px 60px;

}



.menu-toggle{

    display:none;

}



nav{

    position:static;

    display:flex;

    background:none;

    padding:0;

    width:auto;

}


nav a{

    display:inline-block;

    padding:0 15px;

}



.hero h1{
background-repeat:no-repeat;
    font-size:60px;

}



.services-container{

    grid-template-columns:repeat(3,1fr);

}


.gallery-container{

    grid-template-columns:repeat(3,1fr);

}


.led-container{

    grid-template-columns:repeat(3,1fr);

}



}
/* BRAND NAME */

.brand-name h1{

    color:#e10600;

    font-size:28px;

    letter-spacing:2px;

    line-height:1;

}


.brand-name span{

    color:white;

    font-size:12px;

    letter-spacing:3px;

}
/* LANGUAGE BUTTON */

.lang-btn{

    width:45px;

    height:45px;

    border-radius:10px;

    background:#111;

    border:2px solid #e10600;

    color:white;

    font-size:22px;

    cursor:pointer;

}
.brand-name{

    flex:1;

}
/* LED CARDS */

.led-box{

    background:#181818;

    border:2px solid #e10600;

    border-radius:15px;

    padding:20px;

    text-align:center;

    transition:.3s;

}


.led-box:hover{

    transform:translateY(-8px);

}


.led-box h3{

    color:#e10600;

    font-size:24px;

    margin-bottom:15px;

}


.led-box p{

    color:#ddd;

    line-height:1.7;

}
/* GALLERY */

.gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}


.gallery img{

    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:15px;

    border:2px solid #e10600;

    transition:.3s;

}


.gallery img:hover{

    transform:scale(1.05);

}
/* LIGHTBOX */

.lightbox{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.9);

    justify-content:center;

    align-items:center;

    z-index:9999;

}


.lightbox img{

    max-width:90%;

    max-height:80%;

    border-radius:15px;

}


.close-lightbox{

    position:absolute;

    top:25px;

    right:25px;

    color:white;

    font-size:35px;

    cursor:pointer;

}
/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{

    position:fixed;

    bottom:20px;

    right:20px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.5);

    transition:.3s;

}


.whatsapp-float:hover{

    transform:scale(1.1);

}
/* WHATSAPP PULSE ANIMATION */

.whatsapp-float{

    animation:pulse 1.8s infinite;

}


@keyframes pulse{

    0%{

        transform:scale(1);

    }


    50%{

        transform:scale(1.12);

    }


    100%{

        transform:scale(1);

    }

}
/* MOBILE IMPROVEMENTS */

@media(max-width:600px){

    header{

        padding:15px 20px;

    }


    header h1{

        font-size:26px;

    }


    .hero{

        height:85vh;

        padding:20px;

    }


    .hero h1{

        font-size:38px;

    }


    .hero p{

        font-size:16px;

    }


    .services-container,
    .gallery-container,
    .led-container{

        grid-template-columns:1fr;

        gap:20px;

    }


    .whatsapp-float{

        width:55px;

        height:55px;

        font-size:28px;

    }

}
/* BOOKING BUTTON */

.booking-btn{

    background:red;

    color:white !important;

    padding:10px 18px;

    border-radius:8px;

    font-weight:bold;

}


.booking-btn:hover{

    background:#ff3333;

}
/* BOOKING BUTTON FIX */

.booking-btn{

    display:inline-block;

    background:red;

    color:white !important;

    padding:10px 18px;

    border-radius:8px;

    font-weight:bold;

    text-decoration:none;

}
.header-book{

    background:red;

    color:white;

    text-decoration:none;

    padding:8px 12px;

    border-radius:6px;

    font-size:14px;

    font-weight:bold;

    white-space:nowrap;

}
/* MOBILE HEADER FIX */

@media(max-width:600px){

    header{

        display:flex;

        align-items:center;

        gap:10px;

        padding:12px 15px;

    }


    .brand-name{

        flex:1;

    }


    .brand-name h1{

        font-size:24px;

        margin:0;

    }


    .brand-name span{

        font-size:12px;

    }


    .menu-toggle{

        font-size:24px;

        padding:5px;

    }


    .header-book{

        font-size:12px;

        padding:7px 10px;

    }


    .lang-btn{

        font-size:12px;

        padding:7px 10px;

    }

}
.top-bar{
    font-size:20px;
}

.top-bar span{
    color:white;
    font-weight:bold;
}

.top-bar a{
    color:white;
    font-size:26px;
    font-weight:bold;
    text-decoration:none;
}

.top-bar a:hover{
    color:red;
}
@media(max-width:768px){

    .services,
    .led-section,
    .brands,
    #gallery,
    .contact{
        overflow:visible;
    }

}
@media(max-width:768px){

    .top-bar{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:10px;
        padding:12px 10px;
    }


    .top-bar span{
        font-size:14px;
        width:100%;
        line-height:1.6;
    }


    .top-bar a{
        font-size:18px;
        font-weight:bold;
    }


}
/* MOBILE HEADER */


@media(max-width:768px){

    header{
        padding:12px 15px;
        display:flex;
        flex-wrap:wrap;
        align-items:center;
    }


    .brand-name{
        flex:1;
    }


    .menu-toggle{
        display:block;
        order:2;
    }


    .header-book{
        order:3;
    }


    .lang-btn{
        order:4;
    }


    nav{
        order:5;
        display:none;
        width:100%;
        flex-direction:column;
        background:#000;
        padding:15px 0;
    }


    nav.active{
        display:flex !important;
    }


    nav a{
        display:block;
        padding:15px;
        width:100%;
        text-align:center;
        font-size:18px;
    }

}
@media(max-width:768px){

    nav.active{
        display:flex !important;
        max-height:500px;
        overflow:visible;
    }


    nav a{
        display:block !important;
        visibility:visible !important;
        opacity:1 !important;
    }

}
nav a,
nav a:visited,
nav a:link{

    color:#fff !important;
    text-decoration:none;

}
@media(max-width:768px){

    .hero{

        min-height:90vh;
        padding:20px 15px;
        background-position:center;

    }


    .hero h1{

        font-size:32px;
        line-height:1.3;
        margin-bottom:15px;

    }


    .hero h1 span{

        display:block;
        font-size:30px;

    }


    .hero p{

        font-size:16px;
        line-height:1.8;
        padding:0 10px;
        margin-bottom:25px;

    }


    .btn{

        padding:14px 35px;
        font-size:16px;

    }

}
@media(max-width:768px){

    .led-section{

        padding:45px 15px;

    }


    .led-box{

        border-radius:15px;

    }


    .led-box img{

        height:220px;

    }


    .led-box h3{

        font-size:22px;
        text-align:center;

    }


    .led-box p{

        text-align:center;
        font-size:15px;

    }

}
@media(max-width:768px){

    .brands{

        padding:40px 0;

    }


    .brands-track{

        animation-duration:18s;

    }


    .brand-item{

    width:170px;
    height:70px;
    margin:0 15px;

}

.brand-item img{

    width:135px;

}
.brand-item img:hover{

    transform:scale(1.12);

    filter:drop-shadow(0 0 15px rgba(225,6,0,.8));

}
@media(max-width:768px){

    .gallery{

        padding:45px 15px;

    }


    .gallery-container{

        gap:20px;

    }


    .gallery-item{

        border-radius:18px;
        border:2px solid #333;

    }


    .gallery-item img{

        height:220px;

    }


    .gallery-item img:hover{

        transform:scale(1.04);

    }
}
}
/* LIGHTBOX */

.lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

    padding:20px;

}


.lightbox.active{

    display:flex;

}


.lightbox img{

    max-width:95%;
    max-height:90vh;

    border-radius:15px;

    border:3px solid #e10600;

    box-shadow:0 0 30px rgba(225,6,0,.4);

}


.close-lightbox{

    position:absolute;

    top:20px;
    right:25px;

    font-size:40px;

    color:white;

    cursor:pointer;

    transition:.3s;

}


.close-lightbox:hover{

    color:#e10600;

}
.lightbox-prev,
.lightbox-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    font-size:45px;
    color:white;
    cursor:pointer;

    padding:15px;

    user-select:none;

    transition:.3s;

}

.lightbox-prev{

    left:25px;

}

.lightbox-next{

    right:25px;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    color:#e10600;

}
/* MAP */

.map-section{

    background:#0b0b0b;
    padding:70px 20px;

}

.map-container{

    max-width:1200px;

    margin:auto;

    border:2px solid #e10600;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 0 20px rgba(225,6,0,.35);

    text-align:center;

}

.map-container iframe{

    display:block;
    width:100%;

}

@media(max-width:768px){

    .map-section{

        padding:50px 15px;

    }

    .map-container iframe{

        height:300px;

    }

}
.map-btn{

    display:inline-block;
    margin:20px auto;
    padding:15px 30px;

    background:#e10600;
    color:white;

    text-decoration:none;
    font-weight:bold;

    border-radius:40px;

    transition:.3s;
}

.map-btn:hover{

    background:white;
    color:black;

}