/* =========================================================
   TEXTON — PRODUCTION GRADE PREMIUM EXPORT WEBSITE CSS
========================================================= */

/* ================= ROOT ================= */

:root{

    --gold:#c9a24a;
    --gold-light:#e0b95c;

    --bg-primary:#0a0a0a;
    --bg-secondary:#111;
    --bg-card:#161616;

    --text-primary:#fff;
    --text-secondary:#b8b8b8;

    --border:rgba(255,255,255,.08);
    --border-gold:rgba(201,162,74,.25);

    --shadow-lg:
    0 15px 40px rgba(0,0,0,.45);

    --transition:all .3s ease;

    --radius-sm:8px;
    --radius-md:14px;
    --radius-lg:24px;

    --container-width:1280px;

}

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg-primary);

    color:var(--text-secondary);

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}

/* ================= GLOBAL ================= */

.container{
    max-width:var(--container-width);
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none !important;
    transition:var(--transition);
}

ul{
    list-style:none;
}

section{
    position:relative;
    padding:100px 0;
}

h1,h2,h3,h4,h5,h6{

    color:var(--text-primary);

    font-weight:700;

    line-height:1.2;

}

p{

    color:var(--text-secondary);

    line-height:1.8;

    margin-bottom:0;

}

.text-gold{
    color:var(--gold);
}

.section-dark{
    background:var(--bg-primary);
}

/* ================= NAVBAR ================= */

#mainNavbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    padding:18px 0;

    transition:var(--transition);

    background:transparent;

}

#mainNavbar.scrolled{

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 20px rgba(0,0,0,.4);

}

.navbar-brand img{
    max-height:52px;
}

.nav-link{

    color:#ddd !important;

    margin-left:20px;

    font-weight:500;

    position:relative;

    font-size:15px;

}

.nav-link:hover{
    color:var(--gold) !important;
}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:var(--transition);

}

.nav-link:hover::after{
    width:100%;
}

/* ================= HERO ================= */

.hero-section{
    position:relative;
}

.hero-slide{

    min-height:100vh;

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    position:relative;

}

.hero-slide::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.78),
        rgba(0,0,0,.45)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.hero-title{

    font-size:68px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-sub{

    font-size:18px;

    color:#d8d8d8;

    margin-bottom:35px;

    max-width:620px;

}

.hero-buttons .btn{
    margin-right:10px;
}

/* ================= BUTTONS ================= */

.btn{

    border-radius:50px;

    padding:14px 30px;

    font-weight:600;

    transition:var(--transition);

    border:none;

}

.btn-gold{

    background:var(--gold);

    color:#111;

}

.btn-gold:hover{

    background:var(--gold-light);

    transform:translateY(-2px);

    color:#111;

}

.btn-outline-light:hover{
    transform:translateY(-2px);
}

/* ================= ABOUT ================= */

.about-section{
    background:#070707;
}

.about-tag{

    color:var(--gold);

    letter-spacing:2px;

    font-size:13px;

    text-transform:uppercase;

}

.about-title{

    font-size:44px;

    margin-top:18px;

    margin-bottom:25px;

}

.about-text{

    max-width:580px;

    margin-bottom:35px;

}

.about-link{

    color:var(--gold);

    font-weight:600;

}

.about-link:hover{
    color:var(--gold-light);
}

/* ================= STATS ================= */

.stat-card{

    background:rgba(255,255,255,.03);

    border:1px solid var(--border-gold);

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    transition:var(--transition);

    height:100%;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:var(--shadow-lg);

}

.stat-card h3{

    color:var(--gold);

    font-size:34px;

    margin-bottom:10px;

}

.stat-card span{

    color:#bbb;

    font-size:15px;

}

/* ================= PRODUCT ================= */

.product-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    background:#111;

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.product-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:transform .7s ease;

}

.product-card:hover img{
    transform:scale(1.08);
}

.product-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:24px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.92)
    );

    opacity:0;

    transition:var(--transition);

}

.product-card:hover .product-overlay{
    opacity:1;
}

.product-overlay h6{

    color:#fff;

    margin-bottom:18px;

    font-size:18px;

}

/* ================= CARD DARK ================= */

.card-dark{

    background:var(--bg-card);

    border:1px solid var(--border-gold);

    border-radius:18px;

    padding:35px 28px;

    height:100%;

    transition:var(--transition);

}

.card-dark:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:var(--shadow-lg);

}

.card-dark i{

    color:var(--gold);

    font-size:30px;

    margin-bottom:20px;

}

.card-dark h6{

    font-size:20px;

    margin-bottom:15px;

}

.card-dark p{

    font-size:15px;

    color:#bbb;

}

/* ================= CTA ================= */

.cta-section{

    background:
    linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#111;

    padding:110px 0;

    margin:100px auto;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    max-width:1400px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);

}

.cta-section h2{

    font-size:46px;

    font-weight:700;

    color:#111;

    margin-bottom:20px;

}

.cta-section p{

    color:#222;

    font-size:17px;

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}

.cta-buttons .btn{
    margin:5px;
}

/* ================= FOOTER ================= */

footer.footer{

    background:#0d0d0d;

    padding:80px 0 20px;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-title{

    color:#fff;

    font-size:20px;

    margin-bottom:20px;

}

.footer-text{
    color:#aaa;
}

.footer-links a{

    color:#aaa;

    display:block;

    margin-bottom:10px;

}

.footer-links a:hover{
    color:var(--gold);
}

/* ================= WHATSAPP ================= */

.whatsapp-sticky{

    position:fixed;

    bottom:25px;
    right:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(0,0,0,.35);

    transition:var(--transition);

}

.whatsapp-sticky:hover{

    transform:scale(1.1);

    color:#fff;

}

/* ================= CAROUSEL ================= */

.carousel-indicators li{

    width:12px;
    height:12px;

    border-radius:50%;

}

.carousel-control-prev,
.carousel-control-next{
    width:8%;
}

/* ================= ANIMATION ================= */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .7s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1199px){

    .hero-title{
        font-size:58px;
    }

}

@media(max-width:991px){

    section{
        padding:80px 0;
    }

    .hero-slide{

        min-height:80vh;

        text-align:center;

    }

    .hero-content{
        margin:auto;
    }

    .hero-title{
        font-size:44px;
    }

    .hero-sub{
        font-size:16px;
    }

    .about-title{
        font-size:36px;
    }

    .cta-section{

        margin:80px 20px;

        padding:80px 30px;

    }

}

@media(max-width:767px){

    .hero-slide{
        min-height:75vh;
    }

    .hero-title{
        font-size:34px;
    }

    .hero-sub{
        font-size:15px;
    }

    .about-title{
        font-size:30px;
    }

    .product-card img{
        height:240px;
    }

    .cta-section h2{
        font-size:32px;
    }

    .cta-section{
        margin:60px 15px;
    }

    .btn{
        padding:12px 24px;
    }

    .nav-link{
        margin-left:0;
    }

}

@media(max-width:575px){

    section{
        padding:70px 0;
    }

    .hero-title{
        font-size:30px;
    }

    .hero-sub{
        font-size:14px;
    }

    .stat-card{
        padding:25px 20px;
    }

    .card-dark{
        padding:28px 22px;
    }

    .whatsapp-sticky{

        width:55px;
        height:55px;

        font-size:24px;

    }

}