
/* ======================
   HERO SLIDER
====================== */
.logo-image{    width: 55px;}
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease-in-out;
}

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

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Overlay */

.slide::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

/* Content */

.slide-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:#fff;
    z-index:2;
    max-width:650px;
}

.slide-content h1{
    font-size:40px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.slide-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f5f5f5;
}

.slider-btn{
    display:inline-block;
    padding:16px 38px;
    background:#f5b400;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.slider-btn:hover{
    background:#fff;
}

/* Responsive */

@media(max-width:768px){

    .slide-content{
        left:5%;
        right:5%;
    }

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

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

}
/* ======================
   SLIDER ARROWS
====================== */

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    background:rgba(255,255,255,0.2);
    border:2px solid rgba(255,255,255,0.4);
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    border-radius:50%;
    z-index:10;
    transition:.3s;
    backdrop-filter:blur(5px);
}

.slider-arrow:hover{
    background:#f5b400;
    color:#000;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}
/* =========================
   HERO SECTION
========================= */

.contact-hero{
    min-height:87vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.contact-hero::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;

    background:
    linear-gradient(rgba(0,0,0,0.72),rgba(0,0,0,0.72)),
    url('https://images.unsplash.com/photo-1565891741441-64926e441838?q=80&w=2070&auto=format&fit=crop');

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

.contact-hero::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#f4b000;
    border-radius:50%;
    right:-250px;
    top:-250px;
    opacity:0.08;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding-top:80px;
}

.hero-tag{
    display:inline-block;
    padding:12px 24px;
    border-radius:40px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
    color:#f4b000;
    margin-bottom:30px;
    letter-spacing:1px;
    font-size:14px;
}

.hero-content h1{
    font-size:82px;
    line-height:0.95;
    margin-bottom:35px;
}

.hero-content p{
    font-size:19px;
    line-height:1.9;
    color:#cfcfcf;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:140px 0;
    position:relative;
}

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

/* LEFT INFO */

.contact-info{
    position:sticky;
    top:120px;
}

.contact-info h2{
    font-size:64px;
    line-height:1;
    margin-bottom:30px;
}

.contact-info p{
    color:#a7a7a7;
    line-height:1.9;
    margin-bottom:50px;
    font-size:17px;
}

.info-box{
    background:#111714;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:30px;
    padding:30px;
    margin-bottom:25px;
    transition:0.4s;
}

.info-box:hover{
    transform:translateY(-8px);
    border-color:#f4b000;
}

.info-box h3{
    font-size:26px;
    margin-bottom:12px;
    color:#f4b000;
}

.info-box p{
    margin:0;
    color:#d7d7d7;
    line-height:1.8;
}

/* FORM */

.contact-form{
    background:#111714;
    border-radius:40px;
    padding:50px;
    border:1px solid rgba(255,255,255,0.05);
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
}

.form-title{
    margin-bottom:40px;
}

.form-title h3{
    font-size:42px;
    margin-bottom:15px;
	color: #fff;
}

.form-title p{
    color:#aaa;
    line-height:1.8;
}

.input-group{
    margin-bottom:25px;
}

.input-group label{
    display:block;
    margin-bottom:12px;
    color:#ddd;
    font-size:15px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:18px 22px;
    border:none;
    outline:none;
    border-radius:18px;
    background:#1a211d;
    color:#fff;
    font-size:16px;
    border:1px solid transparent;
    transition:0.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#f4b000;
}

.input-group textarea{
    min-height:160px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:20px;
    border:none;
    border-radius:18px;
    background:#f4b000;
    color:#111;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
}

.submit-btn:hover{
    background:#fff;
}

/* =========================
   MAP SECTION
========================= */

.map-section{
    padding:0 0 140px;
}

.map-box{
    overflow:hidden;
    border-radius:40px;
    height:500px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

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

footer{
    border-top:1px solid rgba(255,255,255,0.05);
    padding:35px 0;
    text-align:center;
    color:#7d7d7d;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

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

    .contact-info{
        position:relative;
        top:0;
    }

    .hero-content h1,
    .contact-info h2{
        font-size:56px;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero-content h1,
    .contact-info h2{
        font-size:40px;
    }

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

    .contact-form{
        padding:35px 25px;
    }

    .form-title h3{
        font-size:32px;
    }
}

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

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#050806;
}

.hero::before{
    content:'';
    position:absolute;
    width:900px;
    height:900px;
    background:#f4b000;
    border-radius:50%;
    right:-250px;
    top:-250px;
    opacity:0.08;
}

.hero::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:50%;
    right:-120px;
    bottom:-300px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
}

.hero-content{
    position:relative;
    z-index:2;
    padding-top:80px;
}

.hero-tag{
    display:inline-block;
    padding:12px 24px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50px;
    color:#f4b000;
    margin-bottom:30px;
    background:rgba(255,255,255,0.03);
}

.hero-content h1{
    font-size:90px;
    line-height:0.95;
    margin-bottom:35px;
    font-weight:700;
}

.hero-content p{
    font-size:19px;
    line-height:1.9;
    color:#bdbdbd;
    max-width:700px;
    margin-bottom:45px;
}

.hero-btn{
    display:inline-block;
    padding:18px 38px;
    background:#f4b000;
    color:#111;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
}

.hero-btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

.hero-image{
    position:relative;
    z-index:2;
}

.hero-image img{
    width:100%;
    border-radius:40px;
    transform:rotate(4deg);
    box-shadow:0 30px 80px rgba(0,0,0,0.4);
}

/* ======================
   PRODUCTS
====================== */

.products{
    padding:140px 0;
    position:relative;
}

.section-top{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:80px;
    gap:40px;
}

.section-top h2{
    font-size:72px;
    line-height:1;
}
.products .section-top h2{color: #fff;}
.section-top p{
    max-width:500px;
    color:#9f9f9f;
    line-height:1.9;
}

.product-layout{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.product-box{
    background:#111714;
    border-radius:35px;
    overflow:hidden;
    transition:0.5s;
    position:relative;
    border:1px solid rgba(255,255,255,0.04);
}

.product-box:hover{
    transform:translateY(-10px);
    background:#151d19;
}

.product-image{
    height:340px;
    overflow:hidden;
}

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

.product-box:hover .product-image img{
    transform:scale(1.08);
}

.product-info{
    padding:40px;
}

.product-number{
    position:absolute;
    top:25px;
    right:25px;
    font-size:80px;
    font-weight:700;
    color:rgba(255,255,255,0.05);
}

.product-info h3{
    font-size:42px;
    margin-bottom:18px;
}
.products .product-info h3{color: #fff;}

.product-info p{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:30px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.tag{
    padding:10px 16px;
    border-radius:40px;
    background:#1c2420;
    color:#d7d7d7;
    font-size:14px;
}

/* ======================
   SUPPLY CHAIN
====================== */

.supply{
    padding:70px 0;
    background:#f4b000;
    color:#111;
    position:relative;
    overflow:hidden;
}

.supply::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    right:-250px;
    top:-250px;
}

.supply-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.supply-content{
    position:relative;
    z-index:2;
}

.supply-content h2{
    font-size:72px;
    line-height:1;
    margin-bottom:30px;
}

.supply-content p{
    line-height:1.9;
    margin-bottom:25px;
    font-size:18px;
}

.stats{
    display:flex;
    gap:50px;
    margin-top:50px;
}

.stat h3{
    font-size:60px;
}

.stat p{
    margin-top:10px;
}

.supply-image{
    position:relative;
    z-index:2;
}

.supply-image img{
    width:100%;
    border-radius:40px;
    box-shadow:0 30px 70px rgba(0,0,0,0.2);
}

/* ======================
   CTA
====================== */

.cta{
    padding:140px 0;
    text-align:center;
}

.cta h2{
    font-size:82px;
    line-height:1;
    margin-bottom:30px;
}

.cta p{
    max-width:850px;
    margin:auto;
    color:#a8a8a8;
    line-height:1.9;
    font-size:19px;
    margin-bottom:45px;
}

.cta-btn{
    display:inline-block;
    padding:20px 42px;
    border-radius:60px;
    background:#f4b000;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.cta-btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

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

footer{
    padding:35px 0;
    text-align:center;
    color:#7f7f7f;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:1100px){

    .hero-grid,
    .supply-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1,
    .section-top h2,
    .supply-content h2,
    .cta h2{
        font-size:56px;
    }

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

@media(max-width:768px){

    .nav-links{
        display:none;
    }

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

    .section-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .section-top h2,
    .supply-content h2,
    .cta h2{
        font-size:40px;
    }

    .stats{
        flex-direction:column;
        gap:25px;
    }
}

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

body{
    font-family:'Outfit',sans-serif;
    background:#f5f5f0;
    color:#111;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

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

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

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:10px 0;
}

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

.logo{
    color:#fff;
    font-size:34px;
    font-weight:800;
    letter-spacing:1px;
}

.logo span{
    color:#f4b000;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#f4b000;
}

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

.about-hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#07150f;
}

.about-hero::before{
    content:'';
    position:absolute;
    width:45%;
    height:100%;
    right:0;
    top:0;

    background:
    linear-gradient(rgba(0,0,0,0.15),rgba(0,0,0,0.15)),
    url('https://images.unsplash.com/photo-1471193945509-9ad0617afabf?q=80&w=2070&auto=format&fit=crop');

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

    clip-path:polygon(22% 0,100% 0,100% 100%,0 100%);
}

.about-hero::after{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    background:#f4b000;
    border-radius:50%;
    left:-250px;
    bottom:-280px;
    opacity:0.08;
}

.hero-content{
    position:relative;
    z-index:2;
    width:58%;
    color:#fff;
    padding-top:80px;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    padding:14px 28px;
    border-radius:50px;
    margin-bottom:30px;
    color:#f4b000;
    font-size:14px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:86px;
    line-height:1.02;
    margin-bottom:35px;
    font-weight:800;
}

.hero-content p{
    font-size:20px;
    line-height:1.9;
    color:#d5d5d5;
    margin-bottom:45px;
    max-width:760px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    display:inline-block;
    padding:18px 40px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.btn-primary{
    background:#f4b000;
    color:#111;
}

.btn-primary:hover{
    background:#fff;
    transform:translateY(-5px);
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* =========================
   COMPANY STORY
========================= */

.story-section{
    padding:140px 0;
    background:#fff;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.story-images{
    position:relative;
    height:650px;
}

.story-img-1{
    position:absolute;
    width:72%;
    height:430px;
    object-fit:cover;
    border-radius:35px;
    top:0;
    left:0;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.story-img-2{
    position:absolute;
    width:58%;
    height:340px;
    object-fit:cover;
    border-radius:35px;
    right:0;
    bottom:0;
    border:12px solid #fff;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.story-badge{
    position:absolute;
    background:#111;
    color:#fff;
    padding:35px;
    border-radius:30px;
    left:42%;
    top:50%;
    transform:translate(-50%,-50%);
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.story-badge h2{
    font-size:60px;
    color:#f4b000;
    margin-bottom:8px;
}

.story-content span{
    color:#f4b000;
    font-weight:700;
    letter-spacing:1px;
}

.story-content h2{
    font-size:60px;
    line-height:1.12;
    margin:20px 0 30px;
}

.story-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
}

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

.stats-section{
    padding:120px 0;
    background:#f7f7f2;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.stat-card{
    background:#fff;
    padding:50px 35px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    transition:0.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    font-size:68px;
    color:#f4b000;
    margin-bottom:12px;
}

.stat-card p{
    font-size:18px;
    color:#444;
}

/* =========================
   MARKETS
========================= */

.market-section{
    padding:140px 0;
    background:#111;
    color:#fff;
}

.market-top{
    display:flex;
    justify-content:space-between;
    gap:60px;
    margin-bottom:80px;
}

.market-top h2{
    font-size:62px;
    line-height:1.1;
}

.market-top p{
    max-width:560px;
    color:#cfcfcf;
    line-height:1.9;
    font-size:17px;
}

.market-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.market-card{
    background:#1b1b1b;
    padding:45px 35px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.4s;
}

.market-card:hover{
    background:#f4b000;
    color:#111;
    transform:translateY(-10px);
}

.market-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.market-card p{
    line-height:1.8;
}

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

footer{
    background:#090909;
    color:#888;
    text-align:center;
    padding:35px 0;
    font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .about-hero::before{
        width:100%;
        opacity:0.15;
        clip-path:none;
    }

    .hero-content{
        width:100%;
    }

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

    .market-top{
        flex-direction:column;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

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

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

    .story-content h2,
    .market-top h2{
        font-size:40px;
    }

    .story-images{
        height:500px;
    }

    .story-img-1{
        width:100%;
        height:300px;
    }

    .story-img-2{
        width:70%;
        height:220px;
    }

    .story-badge{
        padding:25px;
    }

    .story-badge h2{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }
}


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

body{
    font-family:'Montserrat',sans-serif;
    background:#f4f5f0;
    color:#222;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

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

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

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

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

.logo{
    font-size:32px;
    font-weight:800;
    color:#fff;
    letter-spacing:1px;
}

.logo span{
    color:#f3b300;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#f3b300;
}

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

.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#0d1b14;
}

.hero::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1696618702712-8fd2397db865?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size:cover;
    background-position:center;
    transform:scale(1.05);
}

.hero::after{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#f3b300;
    border-radius:50%;
    right:-250px;
    top:-250px;
    opacity:0.12;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
}

.hero-content h1{
    font-size:78px;
    line-height:1.05;
    margin-bottom:30px;
    font-weight:800;
}

.hero-content p{
    font-size:19px;
    line-height:1.9;
    margin-bottom:40px;
    color:#f1f1f1;
}

.btn{
    display:inline-block;
    padding:18px 42px;
    background:#f3b300;
    color:#111;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:0.4s;
    box-shadow:0 10px 25px rgba(243,179,0,0.35);
}

.btn:hover{
    transform:translateY(-5px);
    background:#fff;
}

/* ======================
   FLOATING CARDS
====================== */

.hero-cards{
    position:absolute;
    right:8%;
    top:55%;
    transform:translateY(-50%);
    z-index:2;
}

.floating-card{
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(12px);
    padding:25px;
    width:240px;
    border-radius:25px;
    color:#fff;
    margin-bottom:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
}

.floating-card h3{
    font-size:38px;
    color:#f3b300;
    margin-bottom:10px;
}

.floating-card p{
    font-size:15px;
    line-height:1.6;
}

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

.section{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#f3b300;
    font-weight:700;
    letter-spacing:1px;
    font-size:14px;
}

.section-title h2{
    font-size:52px;
    margin-top:15px;
    color:#0d1b14;
}

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

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.about-badge{
    position:absolute;
    bottom:-25px;
    right:-25px;
    background:#f3b300;
    padding:30px;
    border-radius:25px;
    color:#111;
    width:220px;
    box-shadow:0 15px 40px rgba(0,0,0,0.2);
}

.about-badge h3{

    font-size:42px;
    margin-bottom:5px;
}

.about-content h3{
    font-size:42px;
    line-height:1.3;
    margin-bottom:25px;
    color:#0d1b14;
}

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

/* ======================
   PRODUCTS
====================== */

.products{
    background:#0d1b14;
    position:relative;
    overflow:hidden;
}

.products .section-title h2{
    color:#fff;
}

.products .section-title span{
    color:#f3b300;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.product-card{
    background:#13261d;
    border-radius:30px;
    overflow:hidden;
    transition:0.5s;
    border:1px solid rgba(255,255,255,0.05);
}

.product-card:hover{
    transform:translateY(-12px);
}

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

.product-content{
    padding:30px;
}

.product-content h3{
    color:#fff;
    margin-bottom:15px;
    font-size:26px;
}

.product-content p{
    color:#c7c7c7;
    line-height:1.8;
    font-size:15px;
}

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

.stats{
    background:#f3b300;
    padding: 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    text-align:center;
}

.stat-box h2{
    font-size:72px;
    color:#111;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    font-weight:600;
}

/* ======================
   EXPORT
====================== */

.export-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.export-card{
    background:#fff;
    padding:40px 20px;
    text-align:center;
    border-radius:25px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.export-card:hover{
    background:#0d1b14;
    color:#fff;
    transform:translateY(-8px);
}

.export-card h3{
    font-size:22px;
}

/* ======================
   CONTACT
====================== */

.contact{
    position:relative;
    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1565891741441-64926e441838?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.contact-content{
    max-width:850px;
    margin:auto;
}

.contact-content h2{
    font-size:62px;
    line-height:1.2;
    margin-bottom:25px;
}

.contact-content p{
    font-size:18px;
    color:#ddd;
    line-height:1.9;
    margin-bottom:40px;
}

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

footer{
    background:#08120d;
    color:#aaa;
    text-align:center;
    padding:30px 0;
    font-size:14px;
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:992px){

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

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

    .hero-cards{
        display:none;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

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

    .section-title h2{
        font-size:38px;
    }

    .contact-content h2{
        font-size:42px;
    }
}
/* ======================
   ULTRA CREATIVE OFFER
====================== */

.luxury-offer{
    position:relative;
    padding:140px 0;
    background:#050505;
    overflow:hidden;
}

/* GLOW EFFECT */

.blur{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.blur-1{
    width:400px;
    height:400px;
    background:#f5b40040;
    top:-100px;
    left:-100px;
}

.blur-2{
    width:350px;
    height:350px;
    background:#00ff9950;
    bottom:-100px;
    right:-100px;
}

/* HEADING */

.luxury-heading{
    text-align:center;
    margin-bottom:90px;
    position:relative;
    z-index:2;
}

.luxury-heading span{
    color:#f5b400;
    letter-spacing:4px;
    font-size:14px;
    font-weight:700;
}

.luxury-heading h2{
    font-size:64px;
    line-height:1.15;
    margin:25px auto;
    max-width:950px;
    color:#fff;
    font-weight:900;
}

.luxury-heading p{
    max-width:760px;
    margin:auto;
    color:#bdbdbd;
    line-height:1.9;
    font-size:17px;
}

/* GRID */

.luxury-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:300px;
    gap:30px;
    position:relative;
    z-index:2;
}

/* CARD */

.luxury-card{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    background:#111;
    transition:.5s;
    cursor:pointer;
}

.luxury-card:hover{
    transform:translateY(-12px);
}

.luxury-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.luxury-card:hover img{
    transform:scale(1.12);
}

/* OVERLAY */

.luxury-content{
    position:absolute;
    inset:0;
    padding:35px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.92),
        rgba(0,0,0,0.15)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

/* GLASS CARD */

.glass-card .luxury-content{
    backdrop-filter:blur(4px);
}

/* NUMBER */

.number-box{
    width:70px;
    height:70px;
    border-radius:22px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    font-size:24px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    backdrop-filter:blur(8px);
}

/* TEXT */

.luxury-content h3{
    font-size:34px;
    color:#fff;
    margin-bottom:15px;
    line-height:1.2;
    font-weight:800;
}

.luxury-content p{
    color:#e4e4e4;
    line-height:1.8;
    font-size:15px;
}

/* TAGS */

.luxury-tags{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:25px;
}

.luxury-tags span{
    padding:10px 18px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:50px;
    color:#fff;
    font-size:13px;
    backdrop-filter:blur(10px);
}

/* BUTTON */

.luxury-btn{
    margin-top:25px;
    width:fit-content;
    padding:14px 28px;
    background:#f5b400;
    color:#000;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.luxury-btn:hover{
    background:#fff;
}

/* CENTER CARD */

.center-card{
    background:linear-gradient(135deg,#f5b400,#ffda6a);
    border-radius:35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    position:relative;
    overflow:hidden;
}

.center-card::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    border:2px solid rgba(255,255,255,0.3);
    border-radius:50%;
}

.circle-text{
    font-size:14px;
    letter-spacing:3px;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
    z-index:2;
}

.center-card h3{
    font-size:80px;
    color:#000;
    line-height:1;
    margin-bottom:10px;
    z-index:2;
}

.center-card p{
    color:#111;
    font-weight:600;
    z-index:2;
}

/* SPECIAL SIZE */

.card-large{
    grid-column:span 2;
    grid-row:span 2;
}

.card-wide{
    grid-column:span 2;
}

/* RESPONSIVE */

@media(max-width:1100px){

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

    .card-large,
    .card-wide{
        grid-column:span 1;
        grid-row:span 1;
    }

}

@media(max-width:768px){

    .luxury-heading h2{
        font-size:42px;
    }

    .luxury-content h3{
        font-size:28px;
    }

    .center-card h3{
        font-size:60px;
    }

}