/*
========================================================
Trade by Ray
Premium Corporate Theme
Author : Ray
Version : 1.0
========================================================
*/

:root{

    --primary:#0E4B3C;
    --secondary:#D4AF37;
    --accent:#1F6B52;

    --dark:#1F2937;
    --text:#4B5563;
    --light:#F8FAFC;
    --white:#FFFFFF;

    --border:#E5E7EB;

    --shadow-sm:0 4px 12px rgba(0,0,0,.05);
    --shadow-md:0 12px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

}

/* ========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:var(--light);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:92%;

    max-width:1320px;

    margin:auto;

}

section{

    position:relative;

}

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

    line-height:1.2;

}

p{

    color:var(--text);

}

::selection{

    background:var(--primary);

    color:#fff;

}

/* ========================================= */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:60px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:60px;

    border:2px solid #fff;

    color:#fff;

    font-weight:600;

}

.btn-outline:hover{

    background:#fff;

    color:var(--dark);

}

/* ========================================= */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    background:#eef8f4;

    color:var(--primary);

    font-weight:600;

    margin-bottom:18px;

}

.section-title h2{

    font-size:48px;

    margin-bottom:20px;

}

.section-title p{

    max-width:720px;

    margin:auto;

}

/* ========================================= */
/* HEADER */
/* ========================================= */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:18px 0;

    transition:var(--transition);

}

.site-header.scrolled{

    background:#fff;

    box-shadow:var(--shadow-md);

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

}

.custom-logo{

    max-height:65px;

    width:auto;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text span{

    font-size:30px;

    font-weight:700;

    color:var(--primary);

}

.logo-text small{

    font-size:14px;

    color:#888;

}

/* ========================================= */

.main-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.main-menu li{

    position:relative;

}

.main-menu a{

    color:var(--dark);

    font-weight:600;

}

.main-menu a:hover{

    color:var(--primary);

}

.main-menu li::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.main-menu li:hover::after{

    width:100%;

}

/* ========================================= */

.header-action{

    display:flex;

    align-items:center;

    gap:18px;

}

.menu-toggle{

    display:none;

    width:46px;

    height:46px;

    background:none;

    border:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    background:var(--dark);

    margin:5px auto;

    transition:.3s;

}

/* ========================================= */

.mobile-menu{

    position:fixed;

    right:-100%;

    top:90px;

    width:300px;

    height:calc(100vh - 90px);

    background:#fff;

    padding:35px;

    transition:.35s;

    box-shadow:-10px 0 30px rgba(0,0,0,.08);

    overflow:auto;

}

.mobile-menu.active{

    right:0;

}

.mobile-nav li{

    margin-bottom:20px;

}

.mobile-nav a{

    color:var(--dark);

    font-size:18px;

    font-weight:600;

}

.btn-mobile{

    display:block;

    margin-top:25px;

    text-align:center;

    padding:14px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background-image:

    linear-gradient(

    rgba(8,18,15,.78),

    rgba(8,18,15,.60)

    ),

    url("https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&w=1920&q=80");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero-wrapper{

    width:100%;

    padding-top:120px;

}

.hero-content{

    max-width:760px;

    color:#fff;

}

.hero-badge{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(212,175,55,.18);

    color:#D4AF37;

    margin-bottom:30px;

    font-weight:600;

}

.hero h1{

    font-size:64px;

    color:#fff;

    margin-bottom:30px;

}

.hero p{

    color:#f4f4f4;

    font-size:19px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:70px;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.stat-box{

    padding:30px;

    border-radius:20px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(8px);

}

.stat-box h3{

    color:var(--secondary);

    font-size:34px;

    margin-bottom:8px;

}

.stat-box span{

    color:#fff;

}

/* =========================================================
ABOUT SECTION
========================================================= */

.about-section{

    padding:120px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.about-content{

    position:relative;

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    background:#EEF8F4;

    color:var(--primary);

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.about-content h2{

    font-size:48px;

    margin-bottom:25px;

    color:var(--dark);

}

.about-content p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:20px;

}

/* =========================================================
FEATURE LIST
========================================================= */

.about-features{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.feature-card{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

    display:flex;

    gap:18px;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.feature-icon{

    width:60px;

    height:60px;

    min-width:60px;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.feature-card h4{

    margin-bottom:8px;

    font-size:19px;

}

.feature-card p{

    margin:0;

    font-size:15px;

    line-height:1.7;

}

/* =========================================================
COMPANY NUMBERS
========================================================= */

.company-stats{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.company-box{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:20px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.company-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.company-box h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:10px;

}

.company-box span{

    color:var(--text);

    font-size:15px;

    display:block;

}

/* =========================================================
COMMON CARD
========================================================= */

.card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}

/* =========================================================
UTILITY
========================================================= */

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

/* =========================================================
ANIMATION
========================================================= */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-40px);

    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(40px);

    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .about-grid{

        grid-template-columns:1fr;

    }

    .about-content h2{

        font-size:38px;

    }

    .company-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .about-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .about-section{

        padding:80px 0;

    }

    .about-content h2{

        font-size:30px;

    }

    .company-stats{

        grid-template-columns:1fr;

    }

}

/* =========================================================
PRODUCTS SECTION
========================================================= */

.products-section{

    padding:120px 0;

    background:#F8FAFC;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.product-card{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.product-image{

    position:relative;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}

.product-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:var(--secondary);

    color:#fff;

    padding:8px 16px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

}

.product-content{

    padding:30px;

}

.product-content h3{

    font-size:28px;

    margin-bottom:15px;

    color:var(--dark);

}

.product-content p{

    font-size:16px;

    margin-bottom:25px;

    line-height:1.8;

}

.product-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:20px;

    border-top:1px solid var(--border);

}

.product-size{

    font-weight:700;

    color:var(--primary);

}

.product-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-weight:600;

}

.product-button:hover{

    background:var(--secondary);

}

/* =========================================================
QUALITY
========================================================= */

.quality-section{

    margin-top:100px;

}

.quality-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.quality-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.quality-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.quality-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.quality-card h4{

    font-size:22px;

    margin-bottom:15px;

}

.quality-card p{

    font-size:15px;

    line-height:1.8;

}

/* =========================================================
PRODUCT FEATURES
========================================================= */

.product-feature-list{

    margin-top:25px;

}

.product-feature-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    color:var(--text);

    font-size:15px;

}

.product-feature-list li::before{

    content:"✓";

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

    flex-shrink:0;

}

/* =========================================================
PRODUCT CTA
========================================================= */

.products-footer{

    margin-top:70px;

    text-align:center;

}

.products-footer p{

    max-width:700px;

    margin:auto;

    margin-bottom:30px;

    font-size:17px;

}

/* =========================================================
HOVER EFFECTS
========================================================= */

.product-card,
.quality-card{

    will-change:transform;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .products-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:991px){

    .quality-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .products-section{

        padding:90px 0;

    }

    .products-grid{

        grid-template-columns:1fr;

    }

    .quality-grid{

        grid-template-columns:1fr;

    }

    .product-image img{

        height:240px;

    }

}

@media(max-width:576px){

    .product-content{

        padding:24px;

    }

    .product-content h3{

        font-size:24px;

    }

    .product-meta{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

}