/* =====================================================
   SPORTA SPORT
   Premium CSS - Part 1
===================================================== */

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f0f0f;
    color:#fff;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:min(90%,1280px);
    margin:auto;
}

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(15,15,15,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

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

.logo{
    font-size:38px;
    font-weight:800;
    color:#fff;
}

.logo span{
    color:#ff6b00;
}

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

.nav-links a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

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

.nav-btn{
    background:#ff6b00;
    color:#fff;
    padding:15px 34px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    transform:translateY(-3px);
}

/* =========================
   BUTTONS
========================= */

.btn-orange{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:18px 34px;
    border-radius:999px;
    font-weight:600;
}

.btn-outline{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:18px 34px;
    border-radius:999px;
}

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

.hero{
    background:#0f0f0f;
    padding:170px 0 100px;
}

.hero .container{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:70px;
}

.tagline{
    display:inline-block;
    color:#fff;
    font-size:15px;
    letter-spacing:2px;
    margin-bottom:18px;
}

.hero h1{
    font-size:82px;
    line-height:1;
    font-weight:800;
    margin-bottom:30px;
}

.hero h1 span{
    display:block;
    color:#ff6b00;
}

.hero p{
    color:#cfcfcf;
    font-size:20px;
    line-height:1.9;
    margin-bottom:40px;
}

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

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
    border-radius:24px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
}

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

@media(max-width:991px){

.hero{
    padding:140px 0 80px;
}

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

.hero h1{
    font-size:54px;
}

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

.nav-links{
    display:none;
}

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

.about{
    padding:110px 0;
    background:#151515;
}

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

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

.section-tag{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:48px;
    margin-bottom:25px;
}

.about-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:20px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}

.stat{
    background:#1c1c1c;
    padding:25px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.06);
}

.stat h3{
    color:#ff6b00;
    font-size:38px;
    margin-bottom:8px;
}

.stat p{
    margin:0;
}

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

.products{
    padding:110px 0;
    background:#101010;
}

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

.section-title span{
    color:#ff6b00;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.section-title h2{
    font-size:52px;
    margin:18px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
    line-height:1.8;
}

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

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    text-align:center;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.product-card img{
    width:100%;
    height:450px;
    object-fit:contain;
    background:#fff;
    display:block;
}

.product-card h3{

    margin:25px 20px 12px;

    font-size:24px;

}

.product-card p{

    padding:0 20px 30px;

    color:#666;

    line-height:1.7;

}

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

@media(max-width:991px){

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

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

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:38px;
}

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

}
/* =====================================================
   MANUFACTURING
===================================================== */

.manufacturing{
    padding:110px 0;
    background:#151515;
}

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

.process-card{
    background:#1d1d1d;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.06);
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:#ff6b00;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.process-card h3{
    color:#ff6b00;
    font-size:48px;
    margin-bottom:15px;
}

.process-card h4{
    font-size:24px;
    margin-bottom:15px;
    color:#fff;
}

.process-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* =====================================================
   QUALITY
===================================================== */

.quality{
    padding:110px 0;
    background:#101010;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:60px;
}

.quality-box{
    background:#1c1c1c;
    padding:35px;
    border-radius:18px;
    border-left:5px solid #ff6b00;
    transition:.3s;
}

.quality-box:hover{
    transform:translateY(-8px);
}

.quality-box h3{
    font-size:24px;
    margin-bottom:15px;
}

.quality-box p{
    color:#cfcfcf;
    line-height:1.8;
}

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

.contact{
    padding:110px 0;
    background:#151515;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    margin-top:60px;
}

.contact-info h3{
    font-size:38px;
    margin-bottom:25px;
}

.contact-info p{
    color:#cfcfcf;
    margin-bottom:18px;
    line-height:1.8;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#1d1d1d;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:18px;
    font-size:16px;
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form button{
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,107,0,0.35);
}.contact-form button:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,0,0.45);
    background: linear-gradient(135deg, #ff7a1a, #ff9500);
}

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

footer{
    background:#0b0b0b;
    padding:35px 0;
    border-top:1px solid rgba(255,255,255,.08);
}

footer p{
    text-align:center;
    color:#9d9d9d;
    font-size:15px;
}

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

@media(max-width:991px){

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

.contact-info{
    text-align:center;
}

.process-grid,
.quality-grid{
    grid-template-columns:1fr;
}

}
/* =====================================================
   PREMIUM EFFECTS & ANIMATIONS
===================================================== */

/* Smooth Transition */

*{
    transition:
    background-color .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

/* Section Heading */

.section-title h2{
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#ff6b00;
    display:block;
    margin:18px auto 0;
    border-radius:50px;
}

/* Buttons */

.btn-orange:hover,
.nav-btn:hover{
    background:#ff7e22;
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(255,107,0,.35);
}

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

/* Cards */

.product-card,
.process-card,
.quality-box,
.stat{
    overflow:hidden;
}

.product-card img{
    transition:transform .5s ease;
}

.product-card:hover img{
    transform:scale(1.06);
}

/* Hero */

.hero-content{
    animation:fadeLeft .8s ease;
}

.hero-image{
    animation:fadeRight .8s ease;
}

/* Fade Animation */

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-40px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(40px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/* Scroll Offset */

section{
    scroll-margin-top:110px;
}

/* Better Inputs */

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#ff6b00;

    box-shadow:0 0 0 3px rgba(255,107,0,.15);

}

/* Selection */

::selection{
    background:#ff6b00;
    color:#fff;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#ff6b00;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#ff8b36;
}
/* =========================
   Sticky Header
========================= */

header.sticky{

    background:rgba(15,15,15,.95);

    backdrop-filter:blur(12px);

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

    transition:.3s;

}/* =========================
   Active Navigation
========================= */

nav a.active{

    color:#ff6b00;

}

nav a.active::after{

    width:100%;

}/* =========================
   Mobile Menu
========================= */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

    background:none;

    border:none;

    padding:0;

}

.menu-toggle span{

    width:28px;

    height:3px;

    background:#fff;

    transition:.3s;

}

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg) translateY(12px);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg) translateY(-12px);

}

@media (max-width:768px){

    .menu-toggle{

        display:flex;

    }

    header nav{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#111;

        flex-direction:column;

        align-items:center;

        padding:25px 0;

        display:none;

    }

    header nav.active{

        display:flex;

    }

}

.show{

    opacity:1;

    transform:translateY(0);

}/* =========================
   Scroll Reveal Animation
========================= */


    transition:opacity .8s ease, transform .8s ease;



.show{

    opacity:1;
    transform:translateY(0);

}/* =========================
   WhatsApp Floating Button
========================= */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    z-index:9999;

}

.whatsapp-message{

    background:#ffffff;

    padding:12px 18px;

    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    display:flex;

    flex-direction:column;

    opacity:0;

    visibility:hidden;

    transform:translateX(15px);

    transition:.3s ease;

    white-space:nowrap;

}

.whatsapp-message span{

    font-size:13px;

    color:#666;

}

.whatsapp-message strong{

    font-size:16px;

    color:#111;

}

.whatsapp-float:hover .whatsapp-message{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

.whatsapp-float img{

    width:64px;

    height:64px;

    border-radius:50%;

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

    transition:.3s ease;

}

.whatsapp-float img:hover{

    transform:scale(1.08);

}/* ===========================
   Success Toast
=========================== */

.toast{
    position: fixed;
    top: 30px;
    right: 30px;
    width: 380px;
    background: #1b1b1b;
    color: #fff;
    border-left: 5px solid #ff6b00;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transform: translateX(450px);
    opacity: 0;
    transition: all .4s ease;
    z-index: 9999;
}

.toast.show{
    transform: translateX(0);
    opacity: 1;
}

.toast-icon{
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg,#ff6b00,#ff8c00);
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    flex-shrink:0;
}

.toast-content h4{
    margin:0;
    font-size:18px;
    color:#fff;
}

.toast-content p{
    margin:6px 0 0;
    color:#cfcfcf;
    font-size:14px;
    line-height:1.5;
}

@media(max-width:768px){

    .toast{
        width:calc(100% - 30px);
        left:15px;
        right:15px;
        top:20px;
    }

}