/*======================
  GLOBAL STYLES
======================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --red:#B11217;
    --red-dark:#8f0e13;
    --blue:#0B3D91;
    --black:#111111;
    --white:#ffffff;
    --gray:#f6f7fa;
    --text:#4b5563;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

html{
    scroll-behavior:smooth;
}

body{

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

    background:var(--white);
    color:var(--black);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.site-container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding:0 24px;
}

/*======================
  HEADER
======================*/
header{
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    background: #0f1928;
    height: 82px;
}

.header-container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img{
    height: 150px;   /* Increase this (110px, 120px, 130px...) */
    width: auto;
    display: block;

margin-left:-18px;
    filter: brightness(0) invert(1);

}

.header-right{
    display:flex;
    align-items:center;
    gap:14px;
}

.order-btn{

    background:white;

    color:#082B63;

    border-radius:10px;

    padding:12px 25px;

    font-weight:700;
}

.order-btn:hover{
    background:var(--red-dark);
    transform:translateY(-2px);
    color:#fff
}

.menu-btn{

    background:none;

    border:none;

    color:white;

    font-size:24px;

    width:auto;
    height:auto;

    border-radius:0;

}

.menu-btn:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow);
}

/*======================
  MOBILE MENU
======================*/
.mobile-menu{
    position:fixed;
    top:0;
    right:-340px;
    width:320px;
    height:100vh;
    background:var(--white);
    z-index:1100;
    padding:24px;
    box-shadow:-10px 0 30px rgba(0,0,0,.15);
    transition:right .35s ease;
}

.mobile-menu.active{
    right:0;
}

.close-btn{
    width:44px;
    height:44px;
    border:none;
    border-radius:10px;
    background:var(--black);
    color:var(--white);
    cursor:pointer;
    margin-left:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mobile-menu ul{
    list-style:none;
    margin-top:32px;
}

.mobile-menu li{
    margin-bottom:10px;
}

.mobile-menu a{
    display:block;
    padding:14px 16px;
    border-radius:10px;
    color:var(--black);
    font-weight:600;
    transition:.25s ease;
}

.mobile-menu a:hover{
    background:var(--gray);
    color:var(--blue);
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1050;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

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

.hero-slider{
    position:relative;
    height:85vh;
    overflow:hidden;
}

.slide{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    overflow: hidden;
}

.slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.8) 0%,
        rgba(0,0,0,.55) 50%,
        rgba(0,0,0,.35) 100%
    );
    z-index: 1;
}



.slide.active{
    opacity:1;
    z-index:1;
}

.slide .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:1200px;
    width:100%;
    padding:0 40px;
    color:#fff;
}

.hero-content span{
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:40px;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
}

.slider-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:5;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#fff;
    width:34px;
    border-radius:20px;
}

.hero-btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 34px;
    background:#B11217;
    color:#fff;
    font-weight:600;
    border-radius:10px;
    transition:.3s;
}

.hero-btn:hover{
    background:#8f0e13;
    transform:translateY(-3px);
}



/*======================
  TRUST SECTION
======================*/
.trust{

    background:linear-gradient(90deg,#0b4f72,#082B63);

    color:white;

    padding:80px 60px;

    border-radius:25px;

    margin:90px 0;

}

.trust h2{

    font-size:40px !important;

    line-height:1.1;

    margin-bottom:20px;

}

.trust p{

    max-width:750px;

    color:#d7e6f5;

    margin-bottom:50px;

}

.trust-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

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

    font-size:22px;

}

.trust-item:last-child{

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

}

.trust-item div{

    display:flex;

    align-items:center;

    gap:18px;

}

.trust-item i:first-child{

    color:#8fe3ff;

    width:30px;

}

.trust-item .fa-plus{

    font-size:22px;

}
/*======================
  SECTION TITLE
======================*/
.section-title{
    text-align:left;
    margin-bottom:38px;
}

.section-title span{
    color:var(--red);
    font-weight:700;
    letter-spacing:.08em;
    font-size:.9rem;
}

.section-title h2{
    margin-top:10px;
    font-size:2.35rem;
    font-weight:800;
}

/*======================
  PRODUCTS
======================*/
.products{
    padding:24px 0 84px;
}

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

.product-card{
    background:var(--white);
    border:1px solid #e5e7eb;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:210px;
    object-fit:cover;
}

.product-card h3{
    font-size:1.3rem;
    padding:22px 22px 10px;
}

.product-card p{
    padding:0 22px;
    color:var(--text);
    min-height:88px;
}

.product-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:20px 22px 24px;
    color:var(--blue);
    font-weight:700;
}

.product-card a::after{
    content:'→';
    transition:transform .2s ease;
}

.product-card a:hover::after{
    transform:translateX(4px);
}

/*======================
  CTA
======================*/
.cta{
    background:linear-gradient(135deg,var(--red),#7f1014);
    color:var(--white);
    border-radius:28px;
    padding:54px 28px;
    text-align:center;
    margin:0 0 84px;
    box-shadow:0 24px 50px rgba(177,18,23,.28);
}

.cta h2{
    font-size:2.4rem;
    margin-bottom:12px;
}

.cta p{
    max-width:760px;
    margin:0 auto 24px;
    opacity:.95;
}

.cta .primary-btn{
   background:white;

    color:#000000;

    border-radius:10px;

    padding:12px 25px;

    font-weight:700;
}

.cta .primary-btn:hover{
    background:#f3f4f6;
}

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

footer{
    background:var(--black);
    color:var(--white);
    padding:70px 8%;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
    border-bottom:1px solid rgba(255,255,255,.12);
    padding-bottom:35px;
}

.footer-about{
    flex:1;
    min-width:260px;
}

.footer-about h3{
    font-size:1.8rem;
    margin-bottom:12px;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-contact{
    flex:1;
    min-width:280px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-item i{
    width:48px;
    height:48px;
    background:#0b5ed7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    flex-shrink:0;
}

.contact-item span{
    display:block;
    color:#94a3b8;
    font-size:.85rem;
    margin-bottom:4px;
}

.contact-item a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.contact-item a:hover{
    color:#60a5fa;
}

.footer-bottom{
    text-align:center;
    margin-top:28px;
}

.footer-bottom p{
    color:#94a3b8;
    font-size:.95rem;
}

/* Mobile */

@media (max-width:768px){

    footer{
        padding:60px 24px;
    }

    .footer-container{
        gap:40px;
    }

}
/*======================
  RESPONSIVE
======================*/
@media (max-width:1100px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

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

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

@media (max-width:640px){

    .site-container{
        padding:0 16px;
    }

 

    .logo img{
        height:140px;
margin-left:-12px;
    filter: brightness(0) invert(1);
    }
 .order-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        padding:10px 14px;
        font-size:13px;
        border-radius:10px;
    }

    .menu-btn{
        width:42px;
        height:42px;
    }

    .header-right{
        gap:8px;
    }


    .hero{
        padding:44px 0 36px;
        gap:28px;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .section-title h2{
        font-size:1.9rem;
    }

    .product-grid,
    .trust{
        grid-template-columns:1fr;
    }

    .cta{
        padding:40px 20px;
        margin-bottom:64px;
    }

    .cta h2{
        font-size:1.9rem;
    }

    .contact{
        flex-direction:column;
        gap:14px;
    }
}

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

.mobile-menu{
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    transition: .35s ease;
    z-index: 1001;
    padding: 40px 30px;
}

.mobile-menu.active{
    right: 0;
}

.mobile-menu ul{
    list-style: none;
    padding: 70px 0 0;
    margin: 0;
}

.mobile-menu li{
    margin-bottom: 22px;
}

.mobile-menu a{
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    transition: .25s;
}

.mobile-menu a:hover{
    color: #B11217;
}

.close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: #B11217;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 1000;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}


