/*STAGE ELEMENTS PREMIUM LANDING PAGE*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#050505;

    color:#ffffff;

    overflow-x:hidden;

}

/*BACKGROUND*/

body::before{

    content:"";

    position:fixed;

    width:700px;

    height:700px;

    background:radial-gradient(circle,#d71920 0%,transparent 70%);

    filter:blur(180px);

    opacity:.18;

    top:-200px;

    right:-150px;

    z-index:-1;

}

/*NAVBAR*/

.navbar{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    backdrop-filter:blur(20px);

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

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

    z-index:1000;

}

.logo{

    font-size:34px;

    font-weight:800;

    letter-spacing:-1px;

}

.logo .red{

    color:#D71920;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:40px;

}

.navbar ul li a{

    text-decoration:none;

    color:#fff;

    font-weight:500;

    display:inline-block;

    padding:10px 16px;

    border-radius:999px;

    transition:.35s;

}

.navbar ul li a:hover{

    color:#D71920;

}

.navbar ul li a.active-nav{

    background:#D71920;

    color:#fff;

    box-shadow:0 10px 24px rgba(215,25,32,.32);

}

.navbar ul li a.active-nav:hover{

    color:#fff;

}

.navbar ul li a:hover{

    color:#D71920;

}

/*BUTTONS*/

.btn{

    display:inline-block;

    padding:15px 34px;

    background:#D71920;

    color:white;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

    box-shadow:0 0 30px rgba(215,25,32,.35);

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 0 40px rgba(215,25,32,.6);

}

.btn-outline{

    display:inline-block;

    padding:15px 34px;

    border:2px solid #D71920;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    margin-left:15px;

    transition:.4s;

}

.btn-outline:hover{

    background:#D71920;

}

/*HERO*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

    padding:0 10%;

    overflow:hidden;

}

.hero-slides{

    position:absolute;

    inset:0;

    z-index:0;

}

.hero-slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:0;

    animation:heroCrossfade 15s infinite;

    transform:scale(1.04);

}

.hero-slide-1{

    background-image:url("../assets/images/h1.png");

    animation-delay:0s;

}

.hero-slide-2{

    background-image:url("../assets/images/h2.png");

    animation-delay:5s;

}

.hero-slide-3{

    background-image:url("../assets/images/h3.png");

    animation-delay:10s;

}

.overlay{

    position:absolute;

    inset:0;

    z-index:1;

    background:

    radial-gradient(circle at center,

    rgba(215,25,32,.18),

    transparent 70%);

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:900px;

    padding:42px 46px;

    border-radius:28px;

    background:rgba(5,5,5,.42);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 18px 60px rgba(0,0,0,.28);

}

.subtitle{

    color:#D71920;

    font-size:15px;

    letter-spacing:6px;

    margin-bottom:20px;

}

.hero h1{

    font-size:76px;

    line-height:1.05;

    margin-bottom:25px;

    font-weight:900;

}

.hero h1 span{

    color:#D71920;

}

.description{

    font-size:20px;

    color:#d4d4d4;

    margin-bottom:45px;

    line-height:1.8;

}

.buttons{

    margin-bottom:70px;

}

/*STATS*/

.stats{

    display:flex;

    justify-content:center;

    gap:70px;

    flex-wrap:wrap;

}

.stats h2{

    font-size:50px;

    color:#D71920;

}

.stats span{

    color:#bbb;

    font-size:15px;

    letter-spacing:1px;

}

/*ANIMATION*/

.hero-content{

    animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes heroCrossfade{

    0%{

        opacity:0;

        transform:scale(1.08);

    }

    8%{

        opacity:1;

    }

    33%{

        opacity:1;

    }

    41%{

        opacity:0;

        transform:scale(1.02);

    }

    100%{

        opacity:0;

        transform:scale(1.02);

    }

}

/*RESPONSIVE*/

@media(max-width:991px){

.hero h1{

font-size:52px;

}

.navbar{

padding:20px;

}

.navbar ul{

display:none;

}

.stats{

gap:35px;

}

}

@media(max-width:768px){

.hero{

padding:140px 30px;

}

.hero h1{

font-size:42px;

}

.description{

font-size:17px;

}

.hero-content{

padding:28px 22px;

border-radius:22px;

}

.btn{

display:block;

margin-bottom:15px;

}

.btn-outline{

display:block;

margin-left:0;

}

.stats{

flex-direction:column;

}

}

/*SCROLL REVEAL*/

.hidden{

    opacity:0;

    transform:translateY(70px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/*BACK TO TOP*/

.top-btn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#D71920;

    color:white;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    pointer-events:none;

    transition:.4s;

    box-shadow:0 0 20px rgba(215,25,32,.5);

    z-index:9999;

}

.top-btn.active{

    opacity:1;

    pointer-events:auto;

}

.top-btn:hover{

    transform:translateY(-6px);

}
/*ABOUT SECTION*/

.about{

    padding:120px 10%;

    background:#0b0b0b;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:25px;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:25px;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content span{

    color:#D71920;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:48px;

    margin:20px 0;

    line-height:1.2;

}

.about-content h2 span{

    color:#D71920;

}

.about-content p{

    color:#c7c7c7;

    line-height:1.9;

    margin-bottom:40px;

}

.about-grid{

    display:grid;

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

    gap:20px;

}

.about-box{

    background:#111;

    padding:30px;

    border-radius:20px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

}

.about-box:hover{

    transform:translateY(-10px);

    border-color:#D71920;

    box-shadow:0 0 30px rgba(215,25,32,.2);

}

.about-box h3{

    font-size:36px;

    color:#D71920;

}

.about-box p{

    margin-top:10px;

    margin-bottom:0;

}

/* Responsive */

@media(max-width:900px){

.about-container{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.about-grid{

grid-template-columns:1fr;

}

.about-content h2{

font-size:36px;

}

}

/*COMPANY LINKS + INFO SECTIONS*/

.page-links{

    padding:0 10% 40px;

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    justify-content:center;

    background:#0b0b0b;

}

.page-links a{

    text-decoration:none;

    color:#fff;

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

    background:#111;

    padding:12px 18px;

    border-radius:999px;

    transition:.3s;

}

.page-links a:hover{

    background:#D71920;

    border-color:#D71920;

}

.info-section{

    padding:120px 10%;

    background:#050505;

}

.info-grid{

    display:grid;

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

    gap:24px;

}

.info-grid.four-up{

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

}

.clients-grid{

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

}

.client-card-featured{

    grid-column:1 / -1;

}

.info-card,
.statement-card{

    background:#111;

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

    border-radius:24px;

    padding:32px;

}

.info-card h3{

    color:#D71920;

    margin-bottom:16px;

    font-size:22px;

}

.info-card p,
.info-card li,
.statement-card p{

    color:#c7c7c7;

    line-height:1.85;

}

.info-card ul{

    padding-left:20px;

}

.info-card li + li{

    margin-top:8px;

}

.statement-card{

    max-width:920px;

    margin:0 auto;

}

.statement-card p + p{

    margin-top:18px;

}

.accent-card{

    text-align:center;

    box-shadow:0 0 30px rgba(215,25,32,.12);

}

@media(max-width:900px){

    .info-grid,
    .info-grid.four-up{

        grid-template-columns:1fr;

    }

    .clients-grid{

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

    }

    .client-card-featured{

        grid-column:auto;

    }

}

@media(max-width:700px){

    .clients-grid{

        grid-template-columns:1fr;

    }

}
/*SERVICES*/

.services{

    padding:120px 10%;

    background:#050505;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#D71920;

    letter-spacing:3px;

    font-weight:700;

}

.section-title h2{

    font-size:52px;

    margin:20px 0;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#bdbdbd;

    line-height:1.8;

}

.services-grid{

    display:grid;

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

    gap:30px;

}

.service-card{

    background:#111;

    border-radius:24px;

    padding:45px 35px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:#D71920;

    border-radius:50%;

    filter:blur(120px);

    opacity:0;

    top:-80px;

    right:-80px;

    transition:.5s;

}

.service-card:hover::before{

    opacity:.15;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#D71920;

}

.service-card i{

    font-size:55px;

    color:#D71920;

    margin-bottom:25px;

}

.service-card h3{

    font-size:28px;

    margin-bottom:20px;

}

.service-card p{

    color:#c8c8c8;

    line-height:1.8;

}

/* Responsive */

@media(max-width:1100px){

.services-grid{

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

}

}

@media(max-width:700px){

.services-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:38px;

}

}
/*PORTFOLIO*/

.portfolio{

    padding:120px 10%;

    background:#0b0b0b;

}

.portfolio-grid{

    display:grid;

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

    gap:25px;

}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    border:none;

    padding:0;

    background:transparent;

    text-align:left;

}

.portfolio-card img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.6s;

    display:block;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.2));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    opacity:0;

    transition:.4s;

}

.portfolio-overlay h3{

    font-size:28px;

    margin-bottom:8px;

}

.portfolio-overlay p{

    color:#ddd;

}

.portfolio-card:focus-visible{

    outline:3px solid #D71920;

    outline-offset:4px;

}

.portfolio-card:hover img{

    transform:scale(1.12);

}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;

}

/*PORTFOLIO MODAL*/

.portfolio-modal{

    position:fixed;

    inset:0;

    display:none;

    align-items:center;

    justify-content:center;

    padding:30px;

    z-index:2000;

}

.portfolio-modal.is-open{

    display:flex;

}

.portfolio-modal-backdrop{

    position:absolute;

    inset:0;

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

    backdrop-filter:blur(8px);

}

.portfolio-modal-panel{

    position:relative;

    z-index:1;

    width:min(1100px,100%);

    height:min(84vh,760px);

    display:grid;

    grid-template-columns:minmax(0,1.25fr) minmax(320px,.85fr);

    background:#101010;

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

    border-radius:28px;

    overflow:hidden;

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

}

.portfolio-modal-left{

    display:flex;

    flex-direction:column;

    min-width:0;

    height:100%;

}

.portfolio-modal-media{

    background:#000;

    position:relative;

    flex:1;

    min-height:0;

}

.portfolio-modal-media img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

}

.portfolio-modal-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

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

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:2;

}

.portfolio-modal-prev{

    left:16px;

}

.portfolio-modal-next{

    right:16px;

}

.portfolio-modal-nav:hover{

    background:#D71920;

}

.portfolio-modal-content{

    padding:42px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    padding-top:88px;

    gap:16px;

    border-left:1px solid rgba(255,255,255,.06);

    overflow-y:auto;

}

.portfolio-modal-content span{

    color:#D71920;

    font-weight:800;

    letter-spacing:2px;

    font-size:13px;

}

.portfolio-modal-content h3{

    font-size:34px;

    line-height:1.1;

}

.portfolio-modal-content p{

    color:#d6d6d6;

    line-height:1.8;

}

.portfolio-modal-close{

    position:absolute;

    top:16px;

    right:18px;

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

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

    color:#fff;

    font-size:30px;

    line-height:1;

    cursor:pointer;

    z-index:2;

}

.portfolio-modal-close:hover{

    background:#D71920;

}

body.modal-open{

    overflow:hidden;

}

/* Responsive */

@media(max-width:1100px){

.portfolio-grid{

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

}

}

@media(max-width:700px){

.portfolio-grid{

grid-template-columns:1fr;

}

.portfolio-modal-panel{

    grid-template-columns:1fr;

    height:auto;
    max-height:92vh;

}

.portfolio-modal-content{

    border-left:none;

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

}

.portfolio-modal-media img{

    min-height:280px;

}

.portfolio-modal-content{

    padding:28px;

    padding-top:32px;

}

.portfolio-modal-content h3{

    font-size:28px;

}

}
/*TESTIMONIALS*/

.testimonials{
    padding:120px 10%;
    background:#050505;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#111;
    padding:35px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

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

.testimonial-card img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #e11d2e;
    margin-bottom:20px;
}

.testimonial-card h3{
    margin:10px 0;
}

.testimonial-card small{
    color:#e11d2e;
    display:block;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#bbb;
    line-height:1.7;
}

/*CONTACT*/

.contact{

    padding:120px 10%;

    background:#090909;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    margin-top:60px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{

    display:flex;

    align-items:center;

    gap:20px;

    background:#111;

    padding:25px;

    border-radius:20px;

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

}

.info-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#D71920;

    color:#fff;

    font-size:24px;

}

.info-box h3{

    margin-bottom:5px;

}

.info-box p{

    color:#bdbdbd;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    background:#111;

    border:none;

    border-radius:15px;

    padding:18px;

    color:#fff;

    font-size:16px;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    width:220px;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}

.social-links a:hover{

    background:#D71920;

}

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

.contact-form button{

width:100%;

}

}
/*====================================
FOOTER
====================================*/

.footer{

    background:#050505;

    padding:80px 10% 30px;

}

.footer-container{

    display:grid;

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

    gap:40px;

}

.footer-column h2{

    font-size:34px;

}

.footer-column h2 span{

    color:#D71920;

}

.footer-column h3{

    margin-bottom:20px;

}

.footer-column p{

    color:#bfbfbf;

    line-height:1.8;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#bfbfbf;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#D71920;

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

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

    text-align:center;

    color:#888;

}

/*=========================
BACK TO TOP
=========================*/

#topBtn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#D71920;

    color:#fff;

    cursor:pointer;

    display:none;

    font-size:18px;

    box-shadow:0 10px 30px rgba(215,25,32,.3);

    transition:.3s;

}

#topBtn:hover{

    transform:translateY(-5px);

}

@media(max-width:900px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.footer-container{

grid-template-columns:1fr;

}

}