/* ===========================
   GOOGLE FONTS & RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --black:#050505;
    --gold:#D4AF37;
    --gold-light:#F4D77A;
    --white:#ffffff;
    --gray:#BFBFBF;

}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);
    color:var(--white);
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;

}

h1,h2,h3,h4,h5{

    font-family:'Cinzel',serif;

}

a{

    text-decoration:none;
    color:inherit;

}

img{

    max-width:100%;
    display:block;

}

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}
/* ===========================
   HEADER
=========================== */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    padding: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar{
    height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    width: 190px;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img{
    width: 190px;
    height: 60px;
    object-fit: contain;
    object-position: left center;
}
.nav-links{
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color: var(--gold);
}

.call-btn{
    background: var(--gold);
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover{
    background: var(--gold-light);
}
/* ===========================
   HERO SECTION
=========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(5,5,5,.75),rgba(5,5,5,.75)),
    url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    display:flex;
    align-items:center;
    min-height:100vh;
    padding-top:100px;
}
.hero-text{
    max-width:650px;
}

.tagline{
    display:inline-block;
    color:var(--gold);
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    line-height:1.08;
    color:#fff;
    margin-bottom:25px;
    letter-spacing:1px;
    max-width:700px;
}

.hero h1 span{
    color:var(--gold);
}
.hero p{
    font-size:18px;
    color:#ddd;
    line-height:1.8;
    margin-bottom:40px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:10px;
}

.btn-gold,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:58px;
    padding:0 28px;
    border-radius:7px;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
}

.btn-gold{
    background:linear-gradient(135deg,#F4D77A,#D4AF37);
    color:#000;
    border:1px solid #F4D77A;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(212,175,55,.3);
}

.btn-outline{
    background:transparent;
    border:2px solid var(--gold);
    color:var(--gold);
}

.btn-outline:hover{
    background:var(--gold);
    color:#000;
    transform:translateY(-3px);
}
/* ===========================
   HERO PREMIUM DETAILS
=========================== */

.hero{
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.15),
        transparent 60%
    );
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-text{
    position:relative;
    z-index:3;
}

/* GOLD LINE */

.tagline::before{
    content:"";
    display:inline-block;
    width:45px;
    height:2px;
    background:var(--gold);
    margin-right:15px;
    vertical-align:middle;
}

/* GOLD GRADIENT HEADING */

.hero h1{
    background:linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 45%,
        #D4AF37 75%,
        #F4D77A 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* BUTTON IMPROVEMENT */

.btn-gold{
    background:linear-gradient(
        135deg,
        #F4D77A,
        #D4AF37
    );

    box-shadow:0 8px 30px rgba(212,175,55,.25);
}

.btn-outline{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(5px);
}

/* PREMIUM GLOW */

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-250px;
    bottom:-250px;
    background:rgba(212,175,55,.12);
    filter:blur(120px);
    border-radius:50%;
}
.hero h1 span{
    color:var(--gold);
}
/* ===========================
   HERO FEATURES
=========================== */

.hero-features{
    position:absolute;
    left:5%;
    right:5%;
    bottom:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    z-index:5;
}

.feature{
    min-height:75px;
}

@media (max-width:768px){

    .hero{
        padding-bottom:320px;
    }

    .hero-features{
        position:absolute;
        left:5%;
        right:5%;
        bottom:25px;
        grid-template-columns:1fr;
    }
}
.feature strong{
    color:var(--gold);
    font-size:22px;
    min-width:32px;
}

.feature b{
    display:block;
    color:#fff;
    font-size:13px;
    letter-spacing:1px;
}

.feature small{
    display:block;
    color:#aaa;
    font-size:11px;
    margin-top:4px;
}
.hero{
    position:relative;
}
/* ===========================
   CORE SYSTEMS
=========================== */

.core-systems{
    padding:120px 0;
    background:#080808;
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-heading span{
    color:var(--gold);
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.section-heading h2{
    font-size:52px;
    margin:15px 0;
    color:#fff;
}

.section-heading p{
    color:var(--gray);
    line-height:1.8;
    font-size:16px;
}

.systems-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.system-card{
    position:relative;
    padding:35px 28px;
    min-height:280px;
    background:linear-gradient(145deg,#151515,#080808);
    border:1px solid rgba(212,175,55,.18);
    transition:.4s;
}

.system-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 15px 40px rgba(212,175,55,.12);
}

.system-number{
    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:35px;
}

.system-card h3{
    font-size:23px;
    margin-bottom:15px;
    color:#fff;
}

.system-card p{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
    margin-bottom:25px;
}

.system-card a{
    color:var(--gold);
    font-size:13px;
    font-weight:600;
}
/* ===========================
   TURNKEY INFRASTRUCTURE
=========================== */

.turnkey-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.12);
}

.turnkey-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.section-label{
    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
}

.turnkey-content h2{
    font-size:54px;
    line-height:1.15;
    margin:18px 0 25px;
    color:#fff;
}

.turnkey-content h2 span{
    color:var(--gold);
    display:block;
}

.turnkey-content > p{
    color:#aaa;
    font-size:16px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:35px;
}

.turnkey-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:35px;
}

.turnkey-points div{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px;
    border:1px solid rgba(212,175,55,.15);
    background:#0b0b0b;
}

.turnkey-points strong{
    color:var(--gold);
    font-size:13px;
}

.turnkey-points span{
    color:#ddd;
    font-size:13px;
}

/* VISUAL */

.turnkey-visual{
    display:flex;
    justify-content:center;
}

.visual-frame{
    width:100%;
    max-width:550px;
    height:500px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.35);
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.75)),
        url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.visual-glow{
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(212,175,55,.18);
    filter:blur(100px);
    border-radius:50%;
}

.visual-text{
    position:relative;
    z-index:2;
    text-align:center;
}

.visual-text span{
    display:block;
    color:var(--gold);
    font-size:13px;
    letter-spacing:5px;
    margin-bottom:15px;
}

.visual-text strong{
    display:block;
    font-family:'Cinzel',serif;
    font-size:55px;
    color:#fff;
}

.visual-text small{
    color:#ccc;
    letter-spacing:4px;
    font-size:12px;
}
/* ===========================
   INDUSTRIES
=========================== */

.industries-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.1);
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.industry-card{
    min-height:220px;
    padding:30px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.15);
    position:relative;
    transition:.4s ease;
}

.industry-card:hover{
    transform:translateY(-7px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(212,175,55,.1);
}

.industry-card > span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
}

.industry-card h3{
    color:#fff;
    font-size:24px;
    margin:30px 0 15px;
}

.industry-card p{
    color:#999;
    font-size:14px;
    line-height:1.7;
}
/* ===========================
   PROJECTS
=========================== */

.projects-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.1);
}

.projects-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:260px 260px;
    gap:20px;
}

.project-card{
    position:relative;
    overflow:hidden;
    min-height:260px;
    border:1px solid rgba(212,175,55,.18);

    background:
        linear-gradient(
            rgba(0,0,0,.2),
            rgba(0,0,0,.8)
        ),
        url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center;

    transition:.4s ease;
}

.project-large{
    grid-row:span 2;
}

.project-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.project-overlay span{
    color:var(--gold);
    font-size:11px;
    letter-spacing:2px;
}

.project-overlay h3{
    color:#fff;
    font-size:25px;
    margin:10px 0 6px;
}

.project-overlay p{
    color:#bbb;
    font-size:13px;
}
/* ===========================
   CLIENTS
=========================== */

.clients-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.1);
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.client-card{
    min-height:150px;
    padding:28px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.15);
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:.4s ease;
}

.client-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
    box-shadow:0 12px 35px rgba(212,175,55,.1);
}

.client-card > span{
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.client-card h3{
    color:#fff;
    font-size:19px;
    margin-bottom:8px;
}

.client-card small{
    color:#888;
    font-size:12px;
}
/* ===========================
   ABOUT
=========================== */

.about-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.1);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-visual{
    display:flex;
    justify-content:center;
}

.about-box{
    width:100%;
    max-width:520px;
    height:480px;
    border:1px solid rgba(212,175,55,.35);
    background:
        radial-gradient(circle at center,rgba(212,175,55,.18),transparent 55%),
        linear-gradient(145deg,#161616,#050505);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:relative;
}

.about-box::before,
.about-box::after{
    content:"";
    position:absolute;
    width:80%;
    height:1px;
    background:rgba(212,175,55,.25);
}

.about-box::before{
    top:25%;
}

.about-box::after{
    bottom:25%;
}

.about-box span{
    font-family:'Cinzel',serif;
    font-size:100px;
    color:var(--gold);
    line-height:1;
}

.about-box strong{
    margin-top:25px;
    color:#fff;
    letter-spacing:5px;
    font-size:16px;
}

.about-box small{
    color:#999;
    letter-spacing:3px;
    margin-top:8px;
}

.about-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    margin:18px 0 25px;
}

.about-content h2 span{
    display:block;
    color:var(--gold);
}

.about-content > p{
    color:#aaa;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:35px;
}

.about-stats div{
    padding:20px 15px;
    border:1px solid rgba(212,175,55,.18);
    background:#0b0b0b;
}

.about-stats strong{
    display:block;
    color:var(--gold);
    font-family:'Cinzel',serif;
    font-size:27px;
}

.about-stats span{
    color:#888;
    font-size:11px;
    margin-top:5px;
    display:block;
}
/* ===========================
   CONTACT
=========================== */

.contact-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.1);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-content h2{
    color:#fff;
    font-size:54px;
    line-height:1.15;
    margin:18px 0 25px;
}

.contact-content h2 span{
    display:block;
    color:var(--gold);
}

.contact-content > p{
    color:#aaa;
    font-size:16px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:35px;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-details div{
    padding:18px 20px;
    border-left:2px solid var(--gold);
    background:#0d0d0d;
}

.contact-details strong{
    display:block;
    color:var(--gold);
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:5px;
}

.contact-details span{
    color:#ddd;
    font-size:14px;
}

.quote-form{
    padding:40px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.2);
}

.quote-form h3{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:15px 17px;
    background:#080808;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-family:'Poppins',sans-serif;
    outline:none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:var(--gold);
}

.quote-form select{
    color:#aaa;
}

.quote-form textarea{
    resize:vertical;
}

.quote-form button{
    border:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#030303;
    border-top:1px solid rgba(212,175,55,.2);
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-brand img{
    width:180px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#888;
    font-size:13px;
    line-height:1.8;
    max-width:300px;
}

.footer h4{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:22px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#999;
    font-size:13px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
    padding-left:5px;
}

.footer-contact p{
    color:#999;
    font-size:13px;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-bottom{
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    color:#666;
    font-size:12px;
    text-align:center;
}
/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 1100px){

    .nav-links{
        gap:20px;
    }

    .hero h1{
        font-size:58px;
    }

    .systems-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .clients-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


@media (max-width: 768px){

    .header{
        padding:15px 0;
    }

    .navbar{
        flex-wrap:wrap;
        gap:15px;
    }

    .logo img{
        width:150px;
    }

    .nav-links{
        display:none;
    }

    .call-btn{
        padding:10px 18px;
        font-size:13px;
    }

    .hero{
        min-height:900px;
    }

    .hero-content{
        min-height:700px;
        padding-top:120px;
        align-items:flex-start;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        width:max-content;
    }

    .hero-features{
        grid-template-columns:1fr 1fr;
        bottom:25px;
    }

    .feature{
        padding:12px;
    }

    .feature b{
        font-size:10px;
    }

    .feature small{
        font-size:9px;
    }

    .turnkey-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .turnkey-content h2,
    .about-content h2,
    .contact-content h2{
        font-size:40px;
    }

    .visual-frame{
        height:350px;
    }

    .industries-grid{
        grid-template-columns:1fr 1fr;
    }

    .projects-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .project-large{
        grid-row:auto;
    }

    .about-box{
        height:350px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media (max-width: 500px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:34px;
    }

    .tagline{
        font-size:13px;
    }

    .hero-features{
        grid-template-columns:1fr;
        bottom:15px;
    }

    .hero{
        min-height:1050px;
    }

    .systems-grid,
    .industries-grid,
    .clients-grid,
    .turnkey-points,
    .about-stats,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:38px;
    }

    .quote-form{
        padding:25px;
    }

}
.hero{
    position:relative;
    padding-bottom:170px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-features{
    position:absolute;
    left:5%;
    right:5%;
    bottom:25px;
    z-index:5;
}
@media (max-width:768px){
    .hero{
        padding-bottom:280px;
    }

    .hero-features{
        left:4%;
        right:4%;
    }
}
/* ===========================
   HERO FEATURES FINAL
=========================== */

.hero{
    position:relative;
    padding-bottom:170px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-features{
    width:90%;
    max-width:1400px;
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    z-index:5;
}

.feature{
    min-height:78px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 20px;
    border-left:1px solid rgba(212,175,55,.6);
    background:rgba(5,5,5,.88);
    backdrop-filter:blur(8px);
}

/* MOBILE */

@media (max-width:768px){

    .hero{
        min-height:1050px;
        padding-bottom:300px;
    }

    .hero-features{
        width:90%;
        grid-template-columns:1fr 1fr;
        gap:10px;
        bottom:20px;
    }

    .feature{
        min-height:70px;
        padding:12px;
    }

}

@media (max-width:500px){

    .hero{
        min-height:1150px;
        padding-bottom:350px;
    }

    .hero-features{
        width:92%;
        grid-template-columns:1fr;
        bottom:15px;
    }

}
/* ===========================
   HERO FINAL FIX
=========================== */

.hero{
    position:relative;
    min-height:100vh;
    padding-bottom:160px;
}

.hero-content{
    position:relative;
    z-index:2;
}

/* FEATURES */

.hero-features{
    width:90%;
    max-width:1400px;
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    z-index:10;
}

.feature{
    min-height:78px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 20px;
    background:rgba(5,5,5,.92);
    border-left:1px solid rgba(212,175,55,.6);
}

/* EXPERIENCE BADGE */

.experience-badge{
    position:absolute;
    right:6%;
    top:50%;
    transform:translateY(-50%);
    z-index:6;
    display:flex;
    flex-direction:column;
    color:#fff;
    line-height:1.5;
}

.experience-badge strong{
    color:var(--gold);
    font-size:18px;
}

.experience-badge span{
    font-size:13px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        min-height:1050px;
        padding-bottom:300px;
    }

    .hero-features{
        width:90%;
        grid-template-columns:1fr 1fr;
        bottom:20px;
    }

    .experience-badge{
        display:none;
    }
}

@media(max-width:500px){

    .hero{
        min-height:1150px;
        padding-bottom:350px;
    }

    .hero-features{
        grid-template-columns:1fr;
    }
}
/* ===========================
   TURNKEY STORAGE INFRASTRUCTURE
=========================== */

.turnkey-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.15);
}

.turnkey-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

.turnkey-text{
    max-width:700px;
}

.section-label{
    display:inline-block;
    color:var(--gold);
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.turnkey-text h2{
    font-size:58px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.turnkey-text h2 span{
    display:block;
    color:var(--gold);
}

.turnkey-text p{
    color:#aaa;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.turnkey-stats{
    display:flex;
    flex-direction:column;
    gap:18px;
    min-width:300px;
}

.stat-box{
    padding:25px 30px;
    border-left:2px solid var(--gold);
    background:rgba(255,255,255,.025);
}

.stat-box strong{
    display:block;
    color:var(--gold);
    font-family:'Cinzel',serif;
    font-size:34px;
}

.stat-box span{
    color:#aaa;
    font-size:11px;
    letter-spacing:2px;
}
/* ===========================
   INDUSTRIES
=========================== */

.industries-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.12);
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-heading > span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;
}

.section-heading h2{
    color:#fff;
    font-size:48px;
    margin:15px 0 18px;
}

.section-heading p{
    color:#999;
    font-size:15px;
    line-height:1.8;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.industry-card{
    min-height:190px;
    padding:30px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.15);
    transition:.4s ease;
}

.industry-card:hover{
    transform:translateY(-7px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(212,175,55,.1);
}

.industry-card > span{
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
}

.industry-card h3{
    color:#fff;
    font-size:22px;
    margin:25px 0 12px;
}

.industry-card p{
    color:#888;
    font-size:13px;
    line-height:1.7;
}

@media(max-width:768px){

    .industries-grid{
        grid-template-columns:1fr 1fr;
    }

    .section-heading h2{
        font-size:38px;
    }

}

@media(max-width:500px){

    .industries-grid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   FEATURED PROJECTS
=========================== */

.projects-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.12);
}

.projects-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:260px 260px;
    gap:18px;
}

.project-card{
    position:relative;
    overflow:hidden;
    min-height:260px;
    background:
        linear-gradient(145deg,#191919,#060606);
    border:1px solid rgba(212,175,55,.15);
}

.project-large{
    grid-row:1 / 3;
}

.project-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.15)
        );
}

.project-card::after{
    content:"";
    position:absolute;
    inset:15px;
    border:1px solid rgba(212,175,55,.2);
    transition:.4s;
}

.project-card:hover{
    border-color:var(--gold);
}

.project-card:hover::after{
    inset:10px;
    border-color:rgba(212,175,55,.7);
}

.project-overlay{
    position:absolute;
    left:30px;
    right:30px;
    bottom:28px;
    z-index:2;
}

.project-overlay span{
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
}

.project-overlay h3{
    color:#fff;
    font-size:24px;
    margin:8px 0;
}

.project-overlay p{
    color:#999;
    font-size:12px;
}

@media(max-width:768px){

    .projects-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:240px 240px 240px;
    }

    .project-large{
        grid-row:auto;
        grid-column:1 / 3;
    }

}

@media(max-width:500px){

    .projects-grid{
        grid-template-columns:1fr;
        grid-template-rows:repeat(4,250px);
    }

    .project-large{
        grid-column:auto;
    }

}
/* ===========================
   FINAL POLISH
=========================== */

section{
    scroll-margin-top:100px;
}

.btn-gold,
.btn-outline,
.call-btn{
    cursor:pointer;
}

.btn-gold:hover{
    box-shadow:0 10px 30px rgba(212,175,55,.25);
}

.system-card,
.industry-card,
.client-card,
.project-card,
.stat-box{
    transition:transform .35s ease,
               border-color .35s ease,
               box-shadow .35s ease;
}

.system-card:hover,
.industry-card:hover,
.client-card:hover{
    transform:translateY(-6px);
}

::selection{
    background:var(--gold);
    color:#000;
}
/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    padding: 13px 20px;
    background: #25D366;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    background: #20b957;
}

@media (max-width: 500px) {
    .whatsapp-btn {
        right: 15px;
        bottom: 15px;
        padding: 11px 16px;
        font-size: 10px;
    }
}
.project-card{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,.35);

    transition:.3s ease;
}

.whatsapp-btn span{
    font-size:0;
}

.whatsapp-btn::before{
    content:"◉";
    font-size:26px;
    color:#fff;
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.05);
}
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    font-size:30px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.05);
}
@media (max-width: 768px){

    .nav-links{
        display:none;
    }

    .navbar{
        padding:15px 20px;
    }

    .hero-content{
        padding:80px 20px 150px;
    }

    .hero-text h1{
        font-size:38px;
        line-height:1.1;
    }

    .hero-text p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-features{
        width:90%;
        grid-template-columns:1fr 1fr;
        gap:10px;
        bottom:15px;
    }

    .feature{
        min-height:70px;
        padding:12px;
    }

    .feature b{
        font-size:10px;
    }

    .feature small{
        font-size:9px;
    }

    .experience-badge{
        display:none;
    }

    .systems-grid,
    .industries-grid,
    .projects-grid,
    .clients-grid{
        grid-template-columns:1fr;
    }

    .turnkey-content,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .project-card{
        min-height:280px;
    }

    .whatsapp-btn{
        right:18px;
        bottom:18px;
        width:52px;
        height:52px;
        font-size:27px;
    }

}
.menu-toggle{
    display:none;
    background:none;
    border:1px solid var(--gold);
    color:var(--gold);
    font-size:24px;
    padding:5px 10px;
    cursor:pointer;
}

@media(max-width:768px){
    .menu-toggle{
        display:block;
    }
}
@media (max-width: 900px){

    .menu-toggle{
        display:block;
        background:none;
        border:none;
        color:var(--gold);
        font-size:28px;
        cursor:pointer;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:84px;
        left:0;
        width:100%;
        background:#050505;
        padding:20px;
        flex-direction:column;
        gap:18px;
        border-top:1px solid rgba(212,175,55,.3);
        z-index:999;
    }

    .nav-links.mobile-active{
        display:flex;
    }

    .call-btn{
        display:none;
    }
}
/* ===========================
FOOTER PREMIUM POLISH
=========================== */

.footer{
    position:relative;
    background:#030303;
}

.footer-brand img{
    transition:.4s ease;
}

.footer-brand img:hover{
    filter:drop-shadow(0 0 12px rgba(212,175,55,.35));
}

.footer-links a{
    position:relative;
}

.footer-contact p{
    transition:.3s ease;
}

.footer-contact p:hover{
    color:var(--gold);
}

.footer-bottom{
    letter-spacing:.5px;
}

/* ===========================
WHATSAPP PREMIUM
=========================== */

.whatsapp-btn{
    border:1px solid rgba(255,255,255,.25);
    box-shadow:
        0 8px 25px rgba(0,0,0,.4),
        0 0 0 rgba(37,211,102,0);
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:
        0 12px 30px rgba(0,0,0,.45),
        0 0 20px rgba(37,211,102,.35);
}
/* ===========================
FINAL GOLD PREMIUM SHINE
=========================== */

/* GOLD TEXT GLOW */

.section-label,
.section-heading > span,
.tagline,
.system-number,
.industry-card > span,
.client-card > span,
.project-overlay span{
    text-shadow:0 0 10px rgba(212,175,55,.25);
}

/* GOLD HEADINGS */

.section-heading h2,
.turnkey-text h2 span,
.about-content h2 span,
.contact-content h2 span{
    text-shadow:0 0 18px rgba(212,175,55,.12);
}

/* PREMIUM GOLD BUTTON */

.btn-gold{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        120deg,
        #D4AF37 0%,
        #F4D77A 35%,
        #FFF3A6 50%,
        #D4AF37 70%,
        #B8860B 100%
    );
    background-size:200% auto;
    box-shadow:
        0 8px 30px rgba(212,175,55,.28),
        inset 0 1px 0 rgba(255,255,255,.45);
    animation:goldShine 4s linear infinite;
}

.btn-gold:hover{
    box-shadow:
        0 12px 35px rgba(212,175,55,.45),
        0 0 18px rgba(212,175,55,.25);
}

@keyframes goldShine{
    0%{
        background-position:200% center;
    }

    100%{
        background-position:-200% center;
    }
}

/* GOLD BORDERS */

.system-card:hover,
.industry-card:hover,
.client-card:hover,
.project-card:hover,
.about-box:hover,
.quote-form:hover{
    box-shadow:
        0 15px 40px rgba(212,175,55,.14),
        0 0 18px rgba(212,175,55,.06);
}

/* GOLD LINE GLOW */

.tagline::before{
    box-shadow:0 0 10px rgba(212,175,55,.7);
}

/* LOGO GLOW */

.logo img{
    transition:.4s ease;
}

.logo img:hover{
    filter:
        drop-shadow(0 0 8px rgba(212,175,55,.35));
}

/* ===========================
   GOLD FEATURE NUMBERS
=========================== */

.feature strong {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}


/* ===========================
   GOLD STAT NUMBERS
=========================== */

.stat-box strong,
.about-stats strong {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}


/* ===========================
   PREMIUM TEXT SELECTION
=========================== */

::selection {
    background: #D4AF37;
    color: #050505;
}


/* ===========================
   SYSTEM IMAGES
=========================== */

.system-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}


/* Individual image positioning */
.system-card:nth-child(1) .system-image img,
.system-card:nth-child(3) .system-image img {
    object-position: center center;
}


/* ===========================
   FINAL MOBILE RESPONSIVE
=========================== */

@media (max-width: 768px) {

    /* Header */
    .header {
        height: 70px;
    }

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .logo img {
        width: 140px;
        height: auto;
    }

    /* Mobile menu button */
    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 12px;
        font-size: 28px;
        color: var(--gold);
        cursor: pointer;
    }

    /* Hide call button */
    .call-btn {
        display: none;
    }

    /* Navigation */
    .navbar nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100%;
        background: #050505;
        border-top: 1px solid rgba(212, 175, 55, 0.25);
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }


    /* ===========================
       HERO
    =========================== */

    .hero {
        min-height: 1000px;
        padding-bottom: 300px;
    }

    .hero-content {
        min-height: auto;
        padding: 120px 20px 0;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        min-width: 0;
    }


    /* Hero Features */
    .hero-features {
        width: 92%;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        bottom: 20px;
    }

    .feature {
        min-height: 70px;
        padding: 12px;
    }

    .feature b {
        font-size: 10px;
    }

    .feature small {
        font-size: 9px;
    }

    .experience-badge {
        display: none;
    }


    /* ===========================
       GRIDS
    =========================== */

    .systems-grid,
    .industries-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .turnkey-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .project-large {
        grid-column: auto;
        grid-row: auto;
    }


    /* ===========================
       HEADINGS
    =========================== */

    .turnkey-text h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 40px;
    }


    /* ===========================
       VISUAL SECTIONS
    =========================== */

    .visual-frame {
        height: 350px;
    }

    .about-box {
        height: 350px;
    }


    /* ===========================
       FOOTER
    =========================== */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}


/* ===========================
   SMALL MOBILE
=========================== */

@media (max-width: 500px) {

    .container {
        width: 92%;
    }

    .hero {
        min-height: 1100px;
        padding-bottom: 360px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        width: 90%;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .turnkey-text h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 34px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }

    /* Smaller system images */
    .system-image {
        height: 200px;
    }
}
/* ===========================
   CONTACT SECTION FINAL
=========================== */

.contact-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.12);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-content h2{
    color:#fff;
    font-size:54px;
    line-height:1.15;
    margin:18px 0 25px;
}

.contact-content h2 span{
    display:block;
    color:var(--gold);
}

.contact-content > p{
    color:#aaa;
    font-size:16px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:35px;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-details div{
    padding:18px 20px;
    border-left:2px solid var(--gold);
    background:#0d0d0d;
}

.contact-details strong{
    display:block;
    color:var(--gold);
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:5px;
}

.contact-details span{
    color:#ddd;
    font-size:14px;
}

.quote-form{
    padding:40px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.22);
}

.quote-form h3{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:15px 17px;
    background:#080808;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-family:'Poppins',sans-serif;
    outline:none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 1px rgba(212,175,55,.15);
}

.quote-form textarea{
    resize:vertical;
}

.quote-form button{
    width:100%;
    border:none;
    cursor:pointer;
}

@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .contact-content h2{
        font-size:40px;
    }

    .quote-form{
        padding:25px;
    }

}
/* ================================
   PREMIUM CLIENTS SECTION
================================ */

.clients-section {
  position: relative;
  padding: 110px 6%;
  background: #050505;
  overflow: hidden;
}

/* Subtle background glow */

.clients-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  left: -200px;
  background: rgba(212, 175, 55, 0.06);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.clients-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -250px;
  right: -200px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}


/* ================================
   SECTION HEADER
================================ */

.clients-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 65px;
}

.clients-header span {
  display: inline-block;
  color: #d4af37;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.clients-header h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: 1px;
}

.clients-header p {
  margin: 0;
  color: #999999;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}


/* ================================
   CLIENT GRID
================================ */

.clients-grid {
  position: relative;
  z-index: 2;

  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


/* ================================
   OUR CLIENTS
================================ */

.clients-section {
  padding: 100px 5%;
  background: #050505;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 55px;
}

.clients-header span {
  color: #d4af37;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
}

.clients-header h2 {
  margin: 12px 0 10px;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 38px;
}

.clients-header p {
  margin: 0;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}


/* ================================
   SLIDER
================================ */

.clients-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: clientsMove 45s linear infinite;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* ================================
   OUR CLIENTS
================================ */

.clients-section {
  padding: 100px 5%;
  background: #050505;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 55px;
}

.clients-header span {
  color: #d4af37;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
}

.clients-header h2 {
  margin: 12px 0 10px;
  color: #ffffff;
  font-family: "Cinzel", serif;
  font-size: 38px;
}

.clients-header p {
  margin: 0;
  color: #a9a9a9;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}


/* ================================
   SLIDER
================================ */

.clients-slider {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: clientsMove 50s linear infinite;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}


/* ================================
   CLIENT CARD
================================ */

.client-card {
  flex: 0 0 190px;
  min-height: 225px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 25px 15px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.055),
    rgba(255,255,255,0.012)
  );

  border: 1px solid rgba(212,175,55,0.20);
  border-radius: 18px;

  position: relative;
  overflow: hidden;

  transition: 0.4s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent
  );
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.75);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.5),
    0 0 30px rgba(212,175,55,0.12);
}


/* ================================
   LOGO CIRCLE
================================ */

.client-mark {
  width: 105px;
  height: 105px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(212,175,55,0.65);

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.08),
    rgba(0,0,0,0.65)
  );

  box-shadow:
    inset 0 0 20px rgba(212,175,55,0.08);

  overflow: hidden;

  margin-bottom: 18px;

  transition: 0.7s ease;
}

.client-mark img {
  width: 76%;
  height: 76%;

  object-fit: contain;
  object-position: center;

  display: block;

  transition: 0.7s ease;
}


/* ================================
   FLIP
================================ */

.client-card:hover .client-mark {
  transform: rotateY(180deg);

  box-shadow:
    0 0 30px rgba(212,175,55,0.20);
}

.client-card:hover .client-mark img {
  transform: rotateY(180deg);
}


/* ================================
   NAME
================================ */

.client-card h3 {
  margin: 0;

  color: #eeeeee;

  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;

  line-height: 1.5;
  text-align: center;

  max-width: 165px;
}
/* ================================
   MOVEMENT
================================ */

@keyframes clientsMove {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

  .client-card {
    flex-basis: 175px;
    min-height: 210px;
  }

  .client-mark {
    width: 95px;
    height: 95px;
  }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {

  .clients-section {
    padding: 80px 4%;
  }

  .clients-header h2 {
    font-size: 28px;
  }

  .clients-track {
    gap: 16px;
    animation-duration: 40s;
  }

  .client-card {
    flex-basis: 150px;
    min-height: 190px;
  }

  .client-mark {
    width: 82px;
    height: 82px;
  }

  .client-card h3 {
    font-size: 11px;
  }

}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {

  .client-card {
    flex-basis: 140px;
  }

  .client-mark {
    width: 76px;
    height: 76px;
  }

}
/* ================================
   PREMIUM CLIENT LOGO CIRCLE
================================ */

.client-mark {
  width: 110px;
  height: 110px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d4af37;

  overflow: hidden;
  padding: 14px;
  box-sizing: border-box;

  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(212, 175, 55, 0.12);

  margin-bottom: 18px;

  transition:
    transform 0.5s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* ================================
   LOGO SIZE
================================ */

.client-mark img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  display: block;

  max-width: 100%;
  max-height: 100%;

  image-rendering: auto;

  transition: transform 0.5s ease;
}


/* ================================
   HOVER FLIP
================================ */

.client-card:hover .client-mark {
  transform: rotateY(180deg) scale(1.06);

  border-color: #f4d77a;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(212, 175, 55, 0.25);
}

.client-card:hover .client-mark img {
  transform: rotateY(180deg);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {

  .client-mark {
    width: 85px;
    height: 85px;
    padding: 11px;
  }

}

@media (max-width: 420px) {

  .client-mark {
    width: 78px;
    height: 78px;
    padding: 10px;
  }

}
@media (max-width: 700px) {
  .client-mark {
    width: 85px;
    height: 85px;
    padding: 11px;
  }
}

@media (max-width: 420px) {
  .client-mark {
    width: 78px;
    height: 78px;
    padding: 10px;
  }
}
/* =========================================
   OUR WORK / FEATURED PROJECTS
========================================= */

.our-work {
    width: 100%;
    padding: 120px 6%;
    background: #050505;
    color: #fff;
}

.section-header {
    max-width: 850px;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    margin-bottom: 15px;
    color: #e8b82e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-header h2 {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 700;
}

.section-header p {
    margin: 0;
    max-width: 700px;
    color: #a9a9a9;
    font-size: 17px;
    line-height: 1.7;
}


/* PROJECT CARD */

.project-card {
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 430px;
    margin-bottom: 35px;
    background: #0d0d0d;
    border: 1px solid rgba(232, 184, 46, 0.16);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 184, 46, 0.5);
}


/* PROJECT IMAGE */

.project-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}


/* PROJECT CONTENT */

.project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.project-number {
    margin-bottom: 18px;
    color: #e8b82e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-content h3 {
    margin: 0 0 20px;
    max-width: 450px;
    font-size: clamp(28px, 3vw, 45px);
    line-height: 1.1;
    font-weight: 700;
}

.project-content p {
    margin: 0;
    max-width: 450px;
    color: #999;
    font-size: 16px;
    line-height: 1.7;
}


/* GOLD LINE */

.project-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e8b82e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.project-card:hover::after {
    transform: scaleX(1);
}


/* TABLET */

@media (max-width: 900px) {

    .our-work {
        padding: 80px 5%;
    }

    .project-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .project-card img {
        height: 320px;
        min-height: 320px;
    }

    .project-content {
        padding: 40px 30px;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .our-work {
        padding: 65px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 15px;
    }

    .project-card img {
        height: 250px;
        min-height: 250px;
    }

    .project-content {
        padding: 30px 24px;
    }

    .project-content h3 {
        font-size: 28px;
    }
}
/* =========================================
   PREMIUM WHATSAPP BUTTON
========================================= */

.whatsapp-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 20px 12px 13px;

    color: #fff;
    text-decoration: none;

    background: linear-gradient(
        135deg,
        #18c85a,
        #25d366,
        #20b957
    );

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;

    box-shadow:
        0 0 8px rgba(37, 211, 102, 0.7),
        0 0 20px rgba(37, 211, 102, 0.45),
        0 8px 25px rgba(0, 0, 0, 0.45);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* SHINE EFFECT */

.whatsapp-button::before {
    content: "";

    position: absolute;

    top: -60%;
    left: -80%;

    width: 55%;
    height: 220%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );

    transform: rotate(25deg);

    animation: whatsappShine 3s ease-in-out infinite;

    pointer-events: none;
}


@keyframes whatsappShine {

    0% {
        left: -80%;
    }

    45% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}


/* ICON CIRCLE */

.whatsapp-icon {
    position: relative;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: #20c863;

    border-radius: 50%;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.5);

    flex-shrink: 0;
}


/* ACTUAL LOGO */

.whatsapp-icon svg {
    width: 27px;
    height: 27px;

    display: block;
}


/* HOVER */

.whatsapp-button:hover {
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 0 12px rgba(37, 211, 102, 0.9),
        0 0 30px rgba(37, 211, 102, 0.55),
        0 12px 30px rgba(0, 0, 0, 0.5);
}


/* MOBILE */

@media (max-width: 600px) {

    .whatsapp-button {
        right: 18px;
        bottom: 18px;

        width: 62px;
        height: 62px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }

    .whatsapp-icon {
        width: 45px;
        height: 45px;
    }

    .whatsapp-icon svg {
        width: 31px;
        height: 31px;
    }

    .whatsapp-text {
        display: none;
    }
}
/* =========================================
   PREMIUM CALL NOW BUTTON
========================================= */

.call-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    background: linear-gradient(
        135deg,
        #f4c542 0%,
        #e8b82e 45%,
        #c99618 100%
    );

    color: #050505;

    border: 1px solid rgba(255, 215, 80, 0.9);

    border-radius: 50px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.5px;

    text-decoration: none;

    box-shadow:
        0 0 8px rgba(232, 184, 46, 0.8),
        0 0 20px rgba(232, 184, 46, 0.35),
        0 8px 22px rgba(0, 0, 0, 0.45);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}


/* SHINE */

.call-button::before {
    content: "";

    position: absolute;

    top: -70%;
    left: -80%;

    width: 45%;
    height: 240%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        transparent
    );

    transform: rotate(25deg);

    animation: callButtonShine 3.5s ease-in-out infinite;

    pointer-events: none;
}


@keyframes callButtonShine {

    0% {
        left: -80%;
    }

    45% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}


/* HOVER */

.call-button:hover {
    transform: translateY(-3px) scale(1.03);

    filter: brightness(1.08);

    box-shadow:
        0 0 12px rgba(232, 184, 46, 1),
        0 0 30px rgba(232, 184, 46, 0.55),
        0 12px 28px rgba(0, 0, 0, 0.5);
}


/* ACTIVE */

.call-button:active {
    transform: translateY(-1px) scale(0.98);
}
.experience-badge {
    width: 120px;
    height: 120px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #D4AF37;
    box-shadow: 0 0 25px rgba(212,175,55,0.25);
}

.experience-badge strong {
    font-size: 30px;
    font-family: 'Cinzel', serif;
}

.experience-badge span {
    font-size: 9px;
    letter-spacing: 1px;
}
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}
/* =====================================================
   MOBILE RESPONSIVE — LUCKY RACKS
===================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- TABLET ---------- */

@media (max-width: 991px) {

    .container {
        width: 92%;
        max-width: 100%;
    }

    /* HEADER */

    .navbar {
        min-height: 75px;
        padding: 10px 0;
        position: relative;
    }

    .logo img {
        max-width: 150px;
        height: auto;
    }

    .menu-toggle {
        display: block;
        background: transparent;
        border: 1px solid #D4AF37;
        color: #D4AF37;
        font-size: 25px;
        width: 45px;
        height: 42px;
        cursor: pointer;
        border-radius: 5px;
    }

    .navbar nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #050505;
        border-top: 1px solid rgba(212,175,55,.3);
        display: none;
        z-index: 9999;
    }

    .navbar nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column !important;
        width: 100%;
        margin: 0;
        padding: 10px 0;
        gap: 0 !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }

    .call-btn {
        display: none;
    }

    /* HERO */

    .hero {
        min-height: auto;
        padding: 100px 0 70px;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-text h1 {
        font-size: clamp(38px, 7vw, 60px);
        line-height: 1.1;
    }

    .hero-text p {
        max-width: 700px;
        margin: 20px auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* PRODUCTS */

    .systems-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* TURNKEY */

    .turnkey-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* PROJECTS */

    .our-work {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .project-card {
        width: 100%;
    }

    /* CLIENTS */

    .clients-track {
        gap: 15px;
    }

    /* CONTACT */

    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    /* GENERAL */

    .container {
        width: 90%;
    }

    section {
        width: 100%;
        overflow: hidden;
    }

    /* HEADER */

    .header {
        width: 100%;
    }

    .navbar {
        width: 90%;
        min-height: 68px;
    }

    .logo img {
        max-width: 125px;
    }

    .menu-toggle {
        width: 42px;
        height: 40px;
        font-size: 22px;
    }

    /* HERO */

    .hero {
        padding: 80px 0 55px;
    }

    .hero-text {
        width: 100%;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero-text h1 {
        font-size: clamp(32px, 10vw, 46px);
        line-height: 1.08;
        margin: 15px 0;
    }

    .hero-text p {
        font-size: 14px;
        line-height: 1.7;
        width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* SECTION HEADINGS */

    .section-header,
    .section-heading,
    .section-title {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.2;
    }

    /* PRODUCTS */

    .systems-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .system-card {
        width: 100%;
    }

    .system-image {
        width: 100%;
        height: auto;
    }

    .system-image img {
        width: 100%;
        display: block;
    }

    /* TURNKEY */

    .turnkey-section {
        padding-left: 0;
        padding-right: 0;
    }

    .turnkey-content {
        grid-template-columns: 1fr !important;
        width: 90%;
    }

    .turnkey-text h2 {
        font-size: 32px;
    }

    .turnkey-points {
        width: 100%;
    }

    .turnkey-points > div {
        width: 100%;
    }

    .turnkey-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
    }

    /* INDUSTRIES */

    .industries-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .industry-card {
        width: 100%;
    }

    .industry-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* PROJECTS */

    .our-work {
        width: 90%;
        margin: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .project-card {
        width: 100%;
        margin-bottom: 22px;
    }

    .project-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    .project-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* CLIENTS */

    .clients-section {
        width: 100%;
        overflow: hidden;
    }

    .client-card {
        min-width: 250px;
    }

    /* CONTACT */

    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr !important;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    form {
        width: 100%;
    }

    input,
    select,
    textarea {
        width: 100%;
        max-width: 100%;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        width: 90%;
        margin: auto;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        width: 100%;
    }

    .footer-logo {
        max-width: 150px;
        margin: auto;
    }

    /* WHATSAPP */

    .whatsapp-button {
        position: fixed !important;
        right: 16px !important;
        bottom: 18px !important;
        z-index: 999999 !important;
        width: 54px !important;
        height: 54px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-text {
        display: none !important;
    }

    .whatsapp-icon {
        margin: 0 !important;
    }
}


/* ---------- VERY SMALL PHONES ---------- */

@media (max-width: 380px) {

    .container {
        width: 92%;
    }

    .logo img {
        max-width: 110px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .turnkey-stats {
        grid-template-columns: 1fr !important;
    }

    .client-card {
        min-width: 230px;
    }
}
/* =========================================================
   FINAL MOBILE FIX — LUCKY RACKS
   Put this at the VERY END of your CSS
========================================================= */

@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 92%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    section {
        width: 100%;
        overflow: hidden;
    }


    /* ---------- HEADER ---------- */

    .header {
        height: 70px;
        padding: 0;
    }

    .navbar {
        width: 92%;
        height: 70px;
        min-height: 70px;
        margin: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo {
        width: 140px;
        height: 55px;
    }

    .logo img {
        width: 140px;
        height: 55px;
        object-fit: contain;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 40px;

        margin-left: auto;

        background: transparent;
        border: 1px solid var(--gold);
        border-radius: 5px;

        color: var(--gold);
        font-size: 23px;
        cursor: pointer;
    }

    .call-btn {
        display: none !important;
    }

    .navbar nav {
        position: absolute;
        top: 70px;
        left: 0;

        width: 100%;

        background: #050505;

        border-top: 1px solid rgba(212,175,55,.25);

        z-index: 9999;
    }

    .nav-links {
        display: none;

        width: 100%;

        margin: 0;
        padding: 8px 0;

        flex-direction: column !important;
        gap: 0 !important;

        background: #050505;
    }

    .nav-links.mobile-active {
        display: flex !important;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px 20px;

        text-align: center;

        border-bottom: 1px solid rgba(255,255,255,.06);

        font-size: 14px;
    }


    /* ---------- HERO ---------- */

    .hero {
        width: 100%;
        min-height: auto !important;

        padding: 120px 0 300px !important;

        background-position: center;
    }

    .hero-content {
        width: 92%;
        min-height: auto !important;

        margin: auto;
        padding: 0 !important;

        display: flex;
        align-items: flex-start;

        text-align: center;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;

        margin: 0 auto;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .tagline::before {
        width: 25px;
        margin-right: 8px;
    }

    .hero h1,
    .hero-text h1 {
        width: 100%;

        font-size: clamp(32px, 9vw, 44px);

        line-height: 1.1;

        margin-bottom: 20px;
    }

    .hero p,
    .hero-text p {
        width: 100%;
        max-width: 600px;

        margin: 0 auto 28px;

        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        margin-top: 10px;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        min-width: 0;
        height: 54px;

        padding: 0 20px;

        font-size: 14px;
    }

    .experience-badge {
        display: none !important;
    }


    /* ---------- HERO FEATURES ---------- */

    .hero-features {
        position: absolute;

        width: 92%;

        left: 50%;
        right: auto;

        bottom: 20px;

        transform: translateX(-50%);

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        z-index: 10;
    }

    .feature {
        min-height: 68px;

        padding: 10px;

        gap: 8px;

        display: flex;
        align-items: center;

        background: rgba(5,5,5,.94);
    }

    .feature strong {
        font-size: 18px;
        min-width: 24px;
    }

    .feature b {
        font-size: 9px;
        letter-spacing: .5px;
    }

    .feature small {
        font-size: 8px;
        margin-top: 2px;
    }


    /* ---------- SECTIONS ---------- */

    .core-systems,
    .turnkey-section,
    .industries-section,
    .projects-section,
    .clients-section,
    .about-section,
    .contact-section,
    .our-work {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

    .section-heading,
    .section-header {
        width: 100%;
        max-width: 100%;

        margin-bottom: 40px;

        text-align: center;
    }

    .section-heading h2,
    .section-header h2 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.15;
    }

    .section-heading p,
    .section-header p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* ---------- SYSTEMS ---------- */

    .systems-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 18px;
    }

    .system-card {
        width: 100%;
        min-height: auto;

        padding: 0 0 25px;
    }

    .system-image {
        width: 100%;
        height: 210px;

        margin-bottom: 20px;
    }

    .system-card > *:not(.system-image) {
        margin-left: 22px;
        margin-right: 22px;
    }

    .system-number {
        margin-bottom: 15px;
    }

    .system-card h3 {
        font-size: 21px;
    }


    /* ---------- TURNKEY ---------- */

    .turnkey-grid {
        display: flex !important;
        flex-direction: column;

        gap: 40px;
    }

    .turnkey-content {
        display: flex !important;
        flex-direction: column;

        width: 100%;

        gap: 35px;
    }

    .turnkey-text {
        width: 100%;
        max-width: 100%;
    }

    .turnkey-text h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .turnkey-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .turnkey-points {
        display: grid;

        grid-template-columns: 1fr !important;

        gap: 10px;
    }

    .turnkey-stats {
        width: 100%;
        min-width: 0;

        display: grid !important;

        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .stat-box {
        padding: 18px;
    }

    .stat-box strong {
        font-size: 27px;
    }

    .visual-frame {
        width: 100%;
        height: 330px;
    }


    /* ---------- INDUSTRIES ---------- */

    .industries-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 16px;
    }

    .industry-card {
        width: 100%;
        min-height: 180px;

        padding: 25px;
    }

    .industry-card h3 {
        font-size: 21px;
        margin: 20px 0 10px;
    }


    /* ---------- PROJECTS ---------- */

    .projects-grid {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;

        gap: 15px;
    }

    .projects-grid .project-card {
        width: 100%;

        min-height: 280px;

        grid-column: auto !important;
        grid-row: auto !important;
    }

    .project-card img {
        width: 100%;
        height: 250px;

        min-height: 250px;

        object-fit: cover;
    }

    .project-content {
        padding: 25px 20px;
    }

    .project-content h3 {
        font-size: 25px;
    }

    .project-content p {
        font-size: 13px;
    }


    /* ---------- OUR WORK ---------- */

    .our-work {
        width: 100%;
        margin: 0;
    }

    .our-work .project-card {
        display: grid;

        grid-template-columns: 1fr !important;

        min-height: auto;
    }

    /* ---------- CLIENTS ---------- */

    .clients-section {
        width: 100%;

        padding-left: 4% !important;
        padding-right: 4% !important;
    }

    .clients-grid {
        display: flex !important;

        grid-template-columns: none !important;
    }

    .clients-slider {
        width: 100%;
        overflow: hidden;
    }

    .clients-track {
        gap: 15px;
    }

    .client-card {
        flex: 0 0 150px;

        min-width: 150px;
        min-height: 190px;

        padding: 18px 10px;
    }

    .client-mark {
        width: 82px;
        height: 82px;

        padding: 10px;

        margin-bottom: 13px;
    }

    .client-card h3 {
        font-size: 11px;
    }


    /* ---------- ABOUT ---------- */

    .about-grid {
        display: flex !important;

        flex-direction: column;

        gap: 40px;
    }

    .about-box {
        width: 100%;
        height: 330px;
    }

    .about-box span {
        font-size: 75px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-stats {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }


    /* ---------- CONTACT ---------- */

    .contact-grid {
        display: flex !important;

        flex-direction: column;

        width: 100%;

        gap: 40px;
    }

    .contact-content {
        width: 100%;
    }

    .contact-content h2 {
        font-size: 34px;
    }

    .contact-content > p {
        font-size: 14px;
    }

    .quote-form {
        width: 100%;

        padding: 25px 18px;
    }

    .quote-form h3 {
        font-size: 25px;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        font-size: 14px;
    }


    /* ---------- FOOTER ---------- */

    .footer-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 30px;

        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        align-items: center;
    }


    /* ---------- WHATSAPP ---------- */

    .whatsapp-button {
        right: 16px !important;
        bottom: 16px !important;

        width: 56px !important;
        height: 56px !important;

        padding: 0 !important;

        border-radius: 50% !important;

        display: flex !important;

        align-items: center;
        justify-content: center;
    }

    .whatsapp-text {
        display: none !important;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;

        margin: 0 !important;
    }

}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 420px) {

    .container {
        width: 90%;
    }

    .navbar {
        width: 90%;
    }

    .logo img {
        width: 120px;
    }

    .hero {
        padding-top: 105px !important;
        padding-bottom: 350px !important;
    }

    .hero h1,
    .hero-text h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-features {
        width: 90%;

        grid-template-columns: 1fr;
    }

    .feature {
        min-height: 60px;
    }

    .turnkey-text h2,
    .about-content h2,
    .contact-content h2 {
        font-size: 31px;
    }

    .turnkey-stats,
    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .client-card {
        flex-basis: 140px;
        min-width: 140px;
    }

    .client-mark {
        width: 76px;
        height: 76px;
    }

}
/* =========================================================
   ADDITIONAL PRODUCTS
   Material Handling & Retail Solutions
========================================================= */

.additional-products {
    position: relative;
    padding: 110px 0;
    background: #080808;
    overflow: hidden;
}
/* =========================
   ADDITIONAL PRODUCTS
========================= */

.additional-products .section-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.additional-products .section-heading > span {
    display: block;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a227;
    text-transform: uppercase;
}

.additional-products .section-heading h2 {
    margin: 0 0 18px;
    font-family: "Cinzel", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
}

.additional-products .section-heading h2 span {
    color: #c9a227;
}

.additional-products .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #a8a8a8;
}


/* =========================
   PRODUCTS GRID
========================= */

.additional-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   PRODUCT CARD
========================= */

.additional-product-card {
    position: relative;
    background: #111;
    border: 1px solid rgba(201, 162, 39, 0.18);
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.additional-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.65);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}


/* =========================
   PRODUCT IMAGE
========================= */

.additional-product-image {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #171717, #0b0b0b);
    overflow: hidden;
}

.additional-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.additional-product-card:hover .additional-product-image img {
    transform: scale(1.04);
}

.additional-product-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #c9a227,
        transparent
    );
    opacity: 0.7;
}


/* =========================
   PLACEHOLDER
========================= */

.product-placeholder {
    position: relative;
    text-align: center;
    font-family: "Cinzel", serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.18);
}


/* =========================
   PRODUCT NUMBER
========================= */

.product-number {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.5);
    background: rgba(0, 0, 0, 0.65);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #c9a227;
    z-index: 2;
}


/* =========================
   PRODUCT CONTENT
========================= */

.additional-product-content {
    padding: 28px 28px 32px;
}

.product-category {
    display: block;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c9a227;
    text-transform: uppercase;
}

.additional-product-content h3 {
    margin: 0 0 12px;
    font-family: "Cinzel", serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.additional-product-content p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.75;
    color: #999;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .additional-products {
        padding: 85px 0;
    }

    .additional-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .additional-product-image {
        height: 240px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .additional-products {
        padding: 70px 18px;
    }

    .additional-products .section-heading {
        margin-bottom: 40px;
    }

    .additional-products .section-heading > span {
        font-size: 10px;
        letter-spacing: 2px;
        line-height: 1.6;
    }

    .additional-products .section-heading h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .additional-products .section-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .additional-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .additional-product-card {
        width: 100%;
    }

    .additional-product-image {
        height: 230px;
    }

    .additional-product-content {
        padding: 23px 22px 27px;
    }

    .additional-product-content h3 {
        font-size: 21px;
    }

    .additional-product-content p {
        font-size: 13px;
    }

    .product-number {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        font-size: 11px;
    }
}


/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 40px;
    background: transparent;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 999999;
}

.menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #D4AF37 !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 900px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: auto !important;
    }

    .navbar nav {
        display: none !important;
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        width: 100% !important;
        background: #050505 !important;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999998 !important;
    }

    .navbar nav.mobile-open {
        display: block !important;
    }

    .navbar .nav-links {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .navbar .nav-links li {
        display: block !important;
        width: 100% !important;
    }

    .navbar .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 16px 20px !important;
        text-align: center !important;
        color: #fff !important;
        background: #050505 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .navbar .nav-links a:hover {
        color: #D4AF37 !important;
        background: #111 !important;
    }

    .call-btn {
        display: none !important;
    }
}
/* ===========================
   GOOGLE FONTS & RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --black:#050505;
    --gold:#D4AF37;
    --gold-light:#F4D77A;
    --white:#ffffff;
    --gray:#BFBFBF;

}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--black);
    color:var(--white);
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;

}

h1,h2,h3,h4,h5{

    font-family:'Cinzel',serif;

}

a{

    text-decoration:none;
    color:inherit;

}

img{

    max-width:100%;
    display:block;

}

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}
/* ===========================
   HEADER
=========================== */

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    padding: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar{
    height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    width: 190px;
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img{
    width: 190px;
    height: 60px;
    object-fit: contain;
    object-position: left center;
}
.nav-links{
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color: var(--gold);
}

.call-btn{
    background: var(--gold);
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover{
    background: var(--gold-light);
}
/* ===========================
   HERO SECTION
=========================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(5,5,5,.75),rgba(5,5,5,.75)),
    url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-content{
    display:flex;
    align-items:center;
    min-height:100vh;
    padding-top:100px;
}
.hero-text{
    max-width:650px;
}

.tagline{
    display:inline-block;
    color:var(--gold);
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    line-height:1.08;
    color:#fff;
    margin-bottom:25px;
    letter-spacing:1px;
    max-width:700px;
}

.hero h1 span{
    color:var(--gold);
}
.hero p{
    font-size:18px;
    color:#ddd;
    line-height:1.8;
    margin-bottom:40px;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:10px;
}

.btn-gold,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    height:58px;
    padding:0 28px;
    border-radius:7px;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
}

.btn-gold{
    background:linear-gradient(135deg,#F4D77A,#D4AF37);
    color:#000;
    border:1px solid #F4D77A;
}

.btn-gold:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(212,175,55,.3);
}

.btn-outline{
    background:transparent;
    border:2px solid var(--gold);
    color:var(--gold);
}

.btn-outline:hover{
    background:var(--gold);
    color:#000;
    transform:translateY(-3px);
}
/* ===========================
   HERO PREMIUM DETAILS
=========================== */

.hero{
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.15),
        transparent 60%
    );
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-text{
    position:relative;
    z-index:3;
}

/* GOLD LINE */

.tagline::before{
    content:"";
    display:inline-block;
    width:45px;
    height:2px;
    background:var(--gold);
    margin-right:15px;
    vertical-align:middle;
}

/* GOLD GRADIENT HEADING */

.hero h1{
    background:linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 45%,
        #D4AF37 75%,
        #F4D77A 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* BUTTON IMPROVEMENT */

.btn-gold{
    background:linear-gradient(
        135deg,
        #F4D77A,
        #D4AF37
    );

    box-shadow:0 8px 30px rgba(212,175,55,.25);
}

.btn-outline{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(5px);
}

/* PREMIUM GLOW */

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-250px;
    bottom:-250px;
    background:rgba(212,175,55,.12);
    filter:blur(120px);
    border-radius:50%;
}
.hero h1 span{
    color:var(--gold);
}
/* ===========================
   HERO FEATURES
=========================== */

.hero-features{
    position:absolute;
    left:5%;
    right:5%;
    bottom:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    z-index:5;
}

.feature{
    min-height:75px;
}

@media (max-width:768px){

    .hero{
        padding-bottom:320px;
    }

    .hero-features{
        position:absolute;
        left:5%;
        right:5%;
        bottom:25px;
        grid-template-columns:1fr;
    }
}
.feature strong{
    color:var(--gold);
    font-size:22px;
    min-width:32px;
}

.feature b{
    display:block;
    color:#fff;
    font-size:13px;
    letter-spacing:1px;
}

.feature small{
    display:block;
    color:#aaa;
    font-size:11px;
    margin-top:4px;
}
.hero{
    position:relative;
}
/* ===========================
   CORE SYSTEMS
=========================== */

.core-systems{
    padding:120px 0;
    background:#080808;
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-heading span{
    color:var(--gold);
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.section-heading h2{
    font-size:52px;
    margin:15px 0;
    color:#fff;
}

.section-heading p{
    color:var(--gray);
    line-height:1.8;
    font-size:16px;
}

.systems-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.system-card{
    position:relative;
    padding:35px 28px;
    min-height:280px;
    background:linear-gradient(145deg,#151515,#080808);
    border:1px solid rgba(212,175,55,.18);
    transition:.4s;
}

.system-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 15px 40px rgba(212,175,55,.12);
}

.system-number{
    color:var(--gold);
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:35px;
}

.system-card h3{
    font-size:23px;
    margin-bottom:15px;
    color:#fff;
}

.system-card p{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
    margin-bottom:25px;
}

.system-card a{
    color:var(--gold);
    font-size:13px;
    font-weight:600;
}
/* ===========================
   TURNKEY INFRASTRUCTURE
=========================== */

.turnkey-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.12);
}

.turnkey-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.section-label{
    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;
    font-weight:600;
}

.turnkey-content h2{
    font-size:54px;
    line-height:1.15;
    margin:18px 0 25px;
    color:#fff;
}

.turnkey-content h2 span{
    color:var(--gold);
    display:block;
}

.turnkey-content > p{
    color:#aaa;
    font-size:16px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:35px;
}

.turnkey-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:35px;
}

.turnkey-points div{
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px;
    border:1px solid rgba(212,175,55,.15);
    background:#0b0b0b;
}

.turnkey-points strong{
    color:var(--gold);
    font-size:13px;
}

.turnkey-points span{
    color:#ddd;
    font-size:13px;
}

/* VISUAL */

.turnkey-visual{
    display:flex;
    justify-content:center;
}

.visual-frame{
    width:100%;
    max-width:550px;
    height:500px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.35);
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.75)),
        url('../images/hero-bg.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.visual-glow{
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(212,175,55,.18);
    filter:blur(100px);
    border-radius:50%;
}

.visual-text{
    position:relative;
    z-index:2;
    text-align:center;
}

.visual-text span{
    display:block;
    color:var(--gold);
    font-size:13px;
    letter-spacing:5px;
    margin-bottom:15px;
}

.visual-text strong{
    display:block;
    font-family:'Cinzel',serif;
    font-size:55px;
    color:#fff;
}

.visual-text small{
    color:#ccc;
    letter-spacing:4px;
    font-size:12px;
}
/* ===========================
   INDUSTRIES
=========================== */

.industries-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.1);
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.industry-card{
    min-height:220px;
    padding:30px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.15);
    position:relative;
    transition:.4s ease;
}

.industry-card:hover{
    transform:translateY(-7px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(212,175,55,.1);
}

.industry-card > span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
}

.industry-card h3{
    color:#fff;
    font-size:24px;
    margin:30px 0 15px;
}

.industry-card p{
    color:#999;
    font-size:14px;
    line-height:1.7;
}
/* ===========================
   PROJECTS
=========================== */

.projects-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.1);
}

.projects-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:260px 260px;
    gap:20px;
}

.project-card{
    position:relative;
    overflow:hidden;
    min-height:260px;
    border:1px solid rgba(212,175,55,.18);

    background:
        linear-gradient(
            rgba(0,0,0,.2),
            rgba(0,0,0,.8)
        ),
        url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center;

    transition:.4s ease;
}

.project-large{
    grid-row:span 2;
}

.project-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.project-overlay span{
    color:var(--gold);
    font-size:11px;
    letter-spacing:2px;
}

.project-overlay h3{
    color:#fff;
    font-size:25px;
    margin:10px 0 6px;
}

.project-overlay p{
    color:#bbb;
    font-size:13px;
}
/* ===========================
   CLIENTS
=========================== */

.clients-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.1);
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.client-card{
    min-height:150px;
    padding:28px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.15);
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:.4s ease;
}

.client-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
    box-shadow:0 12px 35px rgba(212,175,55,.1);
}

.client-card > span{
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.client-card h3{
    color:#fff;
    font-size:19px;
    margin-bottom:8px;
}

.client-card small{
    color:#888;
    font-size:12px;
}
/* ===========================
   ABOUT
=========================== */

.about-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.1);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-visual{
    display:flex;
    justify-content:center;
}

.about-box{
    width:100%;
    max-width:520px;
    height:480px;
    border:1px solid rgba(212,175,55,.35);
    background:
        radial-gradient(circle at center,rgba(212,175,55,.18),transparent 55%),
        linear-gradient(145deg,#161616,#050505);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:relative;
}

.about-box::before,
.about-box::after{
    content:"";
    position:absolute;
    width:80%;
    height:1px;
    background:rgba(212,175,55,.25);
}

.about-box::before{
    top:25%;
}

.about-box::after{
    bottom:25%;
}

.about-box span{
    font-family:'Cinzel',serif;
    font-size:100px;
    color:var(--gold);
    line-height:1;
}

.about-box strong{
    margin-top:25px;
    color:#fff;
    letter-spacing:5px;
    font-size:16px;
}

.about-box small{
    color:#999;
    letter-spacing:3px;
    margin-top:8px;
}

.about-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    margin:18px 0 25px;
}

.about-content h2 span{
    display:block;
    color:var(--gold);
}

.about-content > p{
    color:#aaa;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:35px;
}

.about-stats div{
    padding:20px 15px;
    border:1px solid rgba(212,175,55,.18);
    background:#0b0b0b;
}

.about-stats strong{
    display:block;
    color:var(--gold);
    font-family:'Cinzel',serif;
    font-size:27px;
}

.about-stats span{
    color:#888;
    font-size:11px;
    margin-top:5px;
    display:block;
}
/* ===========================
   CONTACT
=========================== */

.contact-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.1);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact-content h2{
    color:#fff;
    font-size:54px;
    line-height:1.15;
    margin:18px 0 25px;
}

.contact-content h2 span{
    display:block;
    color:var(--gold);
}

.contact-content > p{
    color:#aaa;
    font-size:16px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:35px;
}

.contact-details{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-details div{
    padding:18px 20px;
    border-left:2px solid var(--gold);
    background:#0d0d0d;
}

.contact-details strong{
    display:block;
    color:var(--gold);
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:5px;
}

.contact-details span{
    color:#ddd;
    font-size:14px;
}

.quote-form{
    padding:40px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.2);
}

.quote-form h3{
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:15px 17px;
    background:#080808;
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-family:'Poppins',sans-serif;
    outline:none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:var(--gold);
}

.quote-form select{
    color:#aaa;
}

.quote-form textarea{
    resize:vertical;
}

.quote-form button{
    border:none;
    cursor:pointer;
    font-family:'Poppins',sans-serif;
}
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#030303;
    border-top:1px solid rgba(212,175,55,.2);
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-brand img{
    width:180px;
    margin-bottom:20px;
}

.footer-brand p{
    color:#888;
    font-size:13px;
    line-height:1.8;
    max-width:300px;
}

.footer h4{
    color:var(--gold);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:22px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    color:#999;
    font-size:13px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
    padding-left:5px;
}

.footer-contact p{
    color:#999;
    font-size:13px;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-bottom{
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    color:#666;
    font-size:12px;
    text-align:center;
}
/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 1100px){

    .nav-links{
        gap:20px;
    }

    .hero h1{
        font-size:58px;
    }

    .systems-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .clients-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


@media (max-width: 768px){

    .header{
        padding:15px 0;
    }

    .navbar{
        flex-wrap:wrap;
        gap:15px;
    }

    .logo img{
        width:150px;
    }

    .nav-links{
        display:none;
    }

    .call-btn{
        padding:10px 18px;
        font-size:13px;
    }

    .hero{
        min-height:900px;
    }

    .hero-content{
        min-height:700px;
        padding-top:120px;
        align-items:flex-start;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
        width:max-content;
    }

    .hero-features{
        grid-template-columns:1fr 1fr;
        bottom:25px;
    }

    .feature{
        padding:12px;
    }

    .feature b{
        font-size:10px;
    }

    .feature small{
        font-size:9px;
    }

    .turnkey-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .turnkey-content h2,
    .about-content h2,
    .contact-content h2{
        font-size:40px;
    }

    .visual-frame{
        height:350px;
    }

    .industries-grid{
        grid-template-columns:1fr 1fr;
    }

    .projects-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .project-large{
        grid-row:auto;
    }

    .about-box{
        height:350px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


@media (max-width: 500px){

    .container{
        width:92%;
    }

    .hero h1{
        font-size:34px;
    }

    .tagline{
        font-size:13px;
    }

    .hero-features{
        grid-template-columns:1fr;
        bottom:15px;
    }

    .hero{
        min-height:1050px;
    }

    .systems-grid,
    .industries-grid,
    .clients-grid,
    .turnkey-points,
    .about-stats,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:38px;
    }

    .quote-form{
        padding:25px;
    }

}
.hero{
    position:relative;
    padding-bottom:170px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-features{
    position:absolute;
    left:5%;
    right:5%;
    bottom:25px;
    z-index:5;
}
@media (max-width:768px){
    .hero{
        padding-bottom:280px;
    }

    .hero-features{
        left:4%;
        right:4%;
    }
}
/* ===========================
   HERO FEATURES FINAL
=========================== */

.hero{
    position:relative;
    padding-bottom:170px;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-features{
    width:90%;
    max-width:1400px;
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    z-index:5;
}

.feature{
    min-height:78px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 20px;
    border-left:1px solid rgba(212,175,55,.6);
    background:rgba(5,5,5,.88);
    backdrop-filter:blur(8px);
}

/* MOBILE */

@media (max-width:768px){

    .hero{
        min-height:1050px;
        padding-bottom:300px;
    }

    .hero-features{
        width:90%;
        grid-template-columns:1fr 1fr;
        gap:10px;
        bottom:20px;
    }

    .feature{
        min-height:70px;
        padding:12px;
    }

}

@media (max-width:500px){

    .hero{
        min-height:1150px;
        padding-bottom:350px;
    }

    .hero-features{
        width:92%;
        grid-template-columns:1fr;
        bottom:15px;
    }

}
/* ===========================
   HERO FINAL FIX
=========================== */

.hero{
    position:relative;
    min-height:100vh;
    padding-bottom:160px;
}

.hero-content{
    position:relative;
    z-index:2;
}

/* FEATURES */

.hero-features{
    width:90%;
    max-width:1400px;
    position:absolute;
    left:50%;
    bottom:25px;
    transform:translateX(-50%);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    z-index:10;
}

.feature{
    min-height:78px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:16px 20px;
    background:rgba(5,5,5,.92);
    border-left:1px solid rgba(212,175,55,.6);
}

/* EXPERIENCE BADGE */

.experience-badge{
    position:absolute;
    right:6%;
    top:50%;
    transform:translateY(-50%);
    z-index:6;
    display:flex;
    flex-direction:column;
    color:#fff;
    line-height:1.5;
}

.experience-badge strong{
    color:var(--gold);
    font-size:18px;
}

.experience-badge span{
    font-size:13px;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        min-height:1050px;
        padding-bottom:300px;
    }

    .hero-features{
        width:90%;
        grid-template-columns:1fr 1fr;
        bottom:20px;
    }

    .experience-badge{
        display:none;
    }
}

@media(max-width:500px){

    .hero{
        min-height:1150px;
        padding-bottom:350px;
    }

    .hero-features{
        grid-template-columns:1fr;
    }
}
/* ===========================
   TURNKEY STORAGE INFRASTRUCTURE
=========================== */

.turnkey-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.15);
}

.turnkey-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

.turnkey-text{
    max-width:700px;
}

.section-label{
    display:inline-block;
    color:var(--gold);
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.turnkey-text h2{
    font-size:58px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.turnkey-text h2 span{
    display:block;
    color:var(--gold);
}

.turnkey-text p{
    color:#aaa;
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
}

.turnkey-stats{
    display:flex;
    flex-direction:column;
    gap:18px;
    min-width:300px;
}

.stat-box{
    padding:25px 30px;
    border-left:2px solid var(--gold);
    background:rgba(255,255,255,.025);
}

.stat-box strong{
    display:block;
    color:var(--gold);
    font-family:'Cinzel',serif;
    font-size:34px;
}

.stat-box span{
    color:#aaa;
    font-size:11px;
    letter-spacing:2px;
}
/* ===========================
   INDUSTRIES
=========================== */

.industries-section{
    padding:120px 0;
    background:#050505;
    border-top:1px solid rgba(212,175,55,.12);
}

.section-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-heading > span{
    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;
}

.section-heading h2{
    color:#fff;
    font-size:48px;
    margin:15px 0 18px;
}

.section-heading p{
    color:#999;
    font-size:15px;
    line-height:1.8;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.industry-card{
    min-height:190px;
    padding:30px;
    background:linear-gradient(145deg,#151515,#090909);
    border:1px solid rgba(212,175,55,.15);
    transition:.4s ease;
}

.industry-card:hover{
    transform:translateY(-7px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(212,175,55,.1);
}

.industry-card > span{
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
}

.industry-card h3{
    color:#fff;
    font-size:22px;
    margin:25px 0 12px;
}

.industry-card p{
    color:#888;
    font-size:13px;
    line-height:1.7;
}

@media(max-width:768px){

    .industries-grid{
        grid-template-columns:1fr 1fr;
    }

    .section-heading h2{
        font-size:38px;
    }

}

@media(max-width:500px){

    .industries-grid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   FEATURED PROJECTS
=========================== */

.projects-section{
    padding:120px 0;
    background:#080808;
    border-top:1px solid rgba(212,175,55,.12);
}

.projects-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:260px 260px;
    gap:18px;
}

.project-card{
    position:relative;
    overflow:hidden;
    min-height:260px;
    background:
        linear-gradient(145deg,#191919,#060606);
    border:1px solid rgba(212,175,55,.15);
}

.project-large{
    grid-row:1 / 3;
}

.project-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.15)
        );
}

.project-card::after{
    content:"";
    position:absolute;
    inset:15px;
    border:1px solid rgba(212,175,55,.2);
    transition:.4s;
}

.project-card:hover{
    border-color:var(--gold);
}

.project-card:hover::after{
    inset:10px;
    border-color:rgba(212,175,55,.7);
}

.project-overlay{
    position:absolute;
    left:30px;
    right:30px;
    bottom:28px;
    z-index:2;
}

.project-overlay span{
    color:var(--gold);
    font-size:12px;
    letter-spacing:2px;
}

.project-overlay h3{
    color:#fff;
    font-size:24px;
    margin:8px 0;
}

.project-overlay p{
    color:#999;
    font-size:12px;
}

@media(max-width:768px){

    .projects-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:240px 240px 240px;
    }

    .project-large{
        grid-row:auto;
        grid-column:1 / 3;
    }

}

@media(max-width:500px){

    .projects-grid{
        grid-template-columns:1fr;
        grid-template-rows:repeat(4,250px);
    }

    .project-large{
        grid-column:auto;
    }

}
/* ===========================
   FINAL POLISH
=========================== */

section{
    scroll-margin-top:100px;
}

.btn-gold,
.btn-outline,
.call-btn{
    cursor:pointer;
}

.btn-gold:hover{
    box-shadow:0 10px 30px rgba(212,175,55,.25);
}

.system-card,
.industry-card,
.client-card,
.project-card,
.stat-box{
    transition:transform .35s ease,
               border-color .35s ease,
               box-shadow .35s ease;
}

.system-card:hover,
.industry-card:hover,
.client-card:hover{
    transform:translateY(-6px);
}

::selection{
    background:var(--gold);
    color:#000;
}
/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    padding: 13px 20px;
    background: #25D366;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    background: #20b957;
}

@media (max-width: 500px) {
    .whatsapp-btn {
        right: 15px;
        bottom: 15px;
        padding: 11px 16px;
        font-size: 10px;
    }
}
.project-card{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    width:58px;
    height:58px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,.35);

    transition:.3s ease;
}

.whatsapp-btn span{
    font-size:0;
}

.whatsapp-btn::before{
    content:"◉";
    font-size:26px;
    color:#fff;
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.05);
}
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    font-size:30px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.05);
}
@media (max-width: 768px){

    .nav-links{
        display:none;
    }

    .navbar{
        padding:15px 20px;
    }

    .hero-content{
        padding:80px 20px 150px;
    }

    .hero-text h1{
        font-size:38px;
        line-height:1.1;
    }

    .hero-text p{
        font-size:14px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-features{
        width:90%;
        grid-template-columns:1fr 1fr;
        gap:10px;
        bottom:15px;
    }

    .feature{
        min-height:70px;
        padding:12px;
    }

    .feature b{
        font-size:10px;
    }

    .feature small{
        font-size:9px;
    }

    .experience-badge{
        display:none;
    }

    .systems-grid,
    .industries-grid,
    .projects-grid,
    .clients-grid{
        grid-template-columns:1fr;
    }

    .turnkey-content,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .project-card{
        min-height:280px;
    }

    .whatsapp-btn{
        right:18px;
        bottom:18px;
        width:52px;
        height:52px;
        font-size:27px;
    }

}
.menu-toggle{
    display:none;
    background:none;
    border:1px solid var(--gold);
    color:var(--gold);
    font-size:24px;
    padding:5px 10px;
    cursor:pointer;
}

@media(max-width:768px){
    .menu-toggle{
        display:block;
    }
}
@media (max-width: 900px){

    .menu-toggle{
        display:block;
        background:none;
        border:none;
        color:var(--gold);
        font-size:28px;
        cursor:pointer;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:84px;
        left:0;
        width:100%;
        background:#050505;
        padding:20px;
        flex-direction:column;
        gap:18px;
        border-top:1px solid rgba(212,175,55,.3);
        z-index:999;
    }

    .nav-links.mobile-active{
        display:flex;
    }

    .call-btn{
        display:none;
    }
}
/* ===========================
FOOTER PREMIUM POLISH
=========================== */

.footer{
    position:relative;
    background:#030303;
}

.footer-brand img{
    transition:.4s ease;
}

.footer-brand img:hover{
    filter:drop-shadow(0 0 12px rgba(212,175,55,.35));
}

.footer-links a{
    position:relative;
}

.footer-contact p{
    transition:.3s ease;
}

.footer-contact p:hover{
    color:var(--gold);
}

.footer-bottom{
    letter-spacing:.5px;
}

/* ===========================
WHATSAPP PREMIUM
=========================== */

.whatsapp-btn{
    border:1px solid rgba(255,255,255,.25);
    box-shadow:
        0 8px 25px rgba(0,0,0,.4),
        0 0 0 rgba(37,211,102,0);
}

.whatsapp-btn:hover{
    transform:translateY(-4px) scale(1.08);
    box-shadow:
        0 12px 30px rgba(0,0,0,.45),
        0 0 20px rgba(37,211,102,.35);
}
/* ===========================
FINAL GOLD PREMIUM SHINE
=========================== */

/* GOLD TEXT GLOW */

.section-label,
.section-heading > span,
.tagline,
.system-number,
.industry-card > span,
.client-card > span,
.project-overlay span{
    text-shadow:0 0 10px rgba(212,175,55,.25);
}

/* GOLD HEADINGS */

.section-heading h2,
.turnkey-text h2 span,
.about-content h2 span,
.contact-content h2 span{
    text-shadow:0 0 18px rgba(212,175,55,.12);
}

/* PREMIUM GOLD BUTTON */

.btn-gold{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        120deg,
        #D4AF37 0%,
        #F4D77A 35%,
        #FFF3A6 50%,
        #D4AF37 70%,
        #B8860B 100%
    );
    background-size:200% auto;
    box-shadow:
        0 8px 30px rgba(212,175,55,.28),
        inset 0 1px 0 rgba(255,255,255,.45);
    animation:goldShine 4s linear infinite;
}

.btn-gold:hover{
    box-shadow:
        0 12px 35px rgba(212,175,55,.45),
        0 0 18px rgba(212,175,55,.25);
}

@keyframes goldShine{
    0%{
        background-position:200% center;
    }

    100%{
        background-position:-200% center;
    }
}

/* GOLD BORDERS */

.system-card:hover,
.industry-card:hover,
.client-card:hover,
.project-card:hover,
.about-box:hover,
.quote-form:hover{
    box-shadow:
        0 15px 40px rgba(212,175,55,.14),
        0 0 18px rgba(212,175,55,.06);
}

/* GOLD LINE GLOW */

.tagline::before{
    box-shadow:0 0 10px rgba(212,175,55,.7);
}

/* LOGO GLOW */

.logo img{
    transition:.4s ease;
}

.logo img:hover{
    filter:
        drop-shadow(0 0 8px rgba(212,175,55,.35));
}
/* =========================================
   MOBILE HERO - FEATURES BELOW BUTTONS
========================================= */

@media (max-width: 900px) {

    /* Hero ko normal vertical flow mein rakho */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 0 !important;
        padding-bottom: 0 !important;
        overflow: hidden !important;
    }

    /* Hero content pehle complete hoga */
    .hero-content {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-text {
        position: relative !important;
        width: 100% !important;
        height: auto !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        text-align: center !important;
    }

    /* =========================
       BUTTONS
    ========================= */

    .hero-buttons {
        position: relative !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 auto 25px !important;
        padding: 0 !important;

        gap: 8px !important;

        transform: none !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        z-index: 20 !important;
    }

    .hero-buttons a {
        position: relative !important;

        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;

        height: 34px !important;
        min-height: 34px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        transform: none !important;

        font-size: 9px !important;

        z-index: 21 !important;
    }

    /* =========================
       FEATURES
       FORCE BELOW BUTTONS
    ========================= */

    .hero-features {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        transform: none !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        z-index: 5 !important;
    }

    .hero-features .feature {
        position: relative !important;

        width: 100% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 10px 8px !important;

        box-sizing: border-box !important;
    }

}
/* =========================================
   FINAL FOOTER + FACTORY LOCATION FIX
========================================= */

footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.footer-location {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Factory heading */
.footer-location h4 {
    color: var(--gold) !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    margin: 0 0 22px !important;
}

/* Map box */
.map-container {
    width: 100% !important;
    max-width: 300px !important;
    height: 180px !important;

    margin: 0 0 15px 0 !important;

    overflow: hidden !important;
    box-sizing: border-box !important;

    border: 1px solid rgba(212,175,55,.25) !important;
    border-radius: 4px !important;
}

.map-container iframe {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;

    border: 0 !important;
}

/* Directions button */
.map-direction-btn {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 154px !important;
    height: 40px !important;

    box-sizing: border-box !important;

    padding: 0 18px !important;
    margin: 0 !important;

    color: var(--gold) !important;

    border: 1px solid rgba(212,175,55,.5) !important;

    font-size: 12px !important;
    letter-spacing: 1px !important;

    text-decoration: none !important;
}

/* Footer bottom */
.footer-bottom {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box !important;

    margin: 0 !important;
    padding: 20px 15px !important;

    text-align: center !important;
}

.footer-bottom .container {
    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    text-align: center !important;
}


/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 900px) {

    footer {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;
    }

    .footer-location {
        width: 100% !important;
        max-width: 100% !important;

        padding: 30px 10px 20px !important;

        box-sizing: border-box !important;

        text-align: left !important;
    }

    .footer-location h4 {
        margin-bottom: 15px !important;
        font-size: 11px !important;
    }

    .map-container {
        width: 100% !important;
        max-width: 300px !important;
        height: 180px !important;

        margin: 0 0 12px 0 !important;
    }

    .map-direction-btn {
        min-width: 120px !important;
        height: 34px !important;

        padding: 0 12px !important;

        font-size: 9px !important;
    }

    .footer-bottom {
        width: 100% !important;
        max-width: 100% !important;

        padding: 15px 8px !important;

        text-align: center !important;
    }

    .footer-bottom .container {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 8px !important;
        text-align: center !important;
    }
}


/* =========================================
   DESKTOP FOOTER
========================================= */

@media (min-width: 901px) {

    .footer-location {
        width: 100% !important;
        max-width: 100% !important;

        box-sizing: border-box !important;
    }

    .map-container {
        max-width: 300px !important;
    }

    .footer-bottom {
        width: 100% !important;
        max-width: 100% !important;
    }
}
/* =========================================
   FOOTER FACTORY LOCATION - FINAL FIX
========================================= */

.footer-location {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    box-sizing: border-box !important;
}

.footer-location h4 {
    margin: 0 0 20px 0 !important;
    color: #D4AF37 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
}

/* MAP */
.map-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    margin: 0 0 18px 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(212,175,55,.25) !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border: 0 !important;
}

/* DIRECTIONS BUTTON */
.map-direction-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 155px !important;
    height: 42px !important;

    padding: 0 18px !important;
    box-sizing: border-box !important;

    color: #D4AF37 !important;
    background: transparent !important;
    border: 1px solid rgba(212,175,55,.6) !important;

    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;

    transition: .3s ease !important;
}

.map-direction-btn:hover {
    background: #D4AF37 !important;
    color: #000 !important;
}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 900px) {

    .footer-location {
        width: 100% !important;
        padding: 30px 10px !important;
        box-sizing: border-box !important;
    }

    .footer-location h4 {
        font-size: 11px !important;
        margin-bottom: 15px !important;
        text-align: left !important;
    }

    .map-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 190px !important;
        margin-bottom: 12px !important;
    }

    .map-direction-btn {
        min-width: 125px !important;
        height: 36px !important;
        font-size: 9px !important;
        padding: 0 12px !important;
    }

    .footer-bottom {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .footer-bottom .container {
        width: 100% !important;
        padding: 15px 10px !important;
        box-sizing: border-box !important;
        font-size: 9px !important;
    }
}
/* =========================================
   FINAL FOOTER + FACTORY LOCATION FIX
========================================= */

.footer-location {
    width: 100%;
    box-sizing: border-box;
}

.footer-location h4 {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin: 0 0 18px;
}

/* MAP */
.footer-location .map-container {
    width: 100%;
    max-width: 320px;
    height: 180px;
    margin: 0 0 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;
    box-sizing: border-box;
}

.footer-location .map-container iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: 0;
}

/* GET DIRECTIONS */
.footer-location .map-direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 155px;
    height: 40px;

    box-sizing: border-box;

    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);

    padding: 0 16px;
    margin: 0;

    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;

    transition: 0.3s ease;
}

.footer-location .map-direction-btn:hover {
    background: var(--gold);
    color: #000;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.footer-bottom .container {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}


/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 900px) {

    .footer-location {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 8px !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    .footer-location h4 {
        margin-bottom: 15px !important;
        font-size: 12px !important;
    }

    .footer-location .map-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px !important;
        margin: 0 0 14px !important;
    }

    .footer-location .map-container iframe {
        width: 100% !important;
        height: 180px !important;
    }

    .footer-location .map-direction-btn {
        min-width: 145px !important;
        height: 38px !important;
        font-size: 10px !important;
        padding: 0 14px !important;
    }

    .footer-bottom {
        width: 100% !important;
        margin-top: 25px !important;
        padding: 15px 8px !important;
        box-sizing: border-box !important;
    }

    .footer-bottom .container {
        width: 100% !important;
        font-size: 9px !important;
        text-align: center !important;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .footer-location {
        padding: 0 6px !important;
    }

    .footer-location .map-container {
        height: 170px !important;
    }

    .footer-location .map-container iframe {
        height: 170px !important;
    }

    .footer-location .map-direction-btn {
        height: 36px !important;
        min-width: 140px !important;
        font-size: 9px !important;
    }

    .footer-bottom {
        margin-top: 20px !important;
    }
}

