/*=========================================================
WOIX PREMIUM WEBSITE V2
Design System
Version 2.0
=========================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

html{

    scroll-behavior:smooth;

}   
/*=========================================================
ROOT VARIABLES
=========================================================*/

:root{

/* Colors */

--black:#111111;
--dark:#222222;
--white:#ffffff;

--text:#666666;
--text-light:#888888;

--bg:#ffffff;
--bg-soft:#f7f7f7;

--border:#ebebeb;

--gold:#C9A227;

/* Radius */

--radius-sm:14px;
--radius:22px;
--radius-lg:36px;

/* Shadow */

--shadow-sm:0 8px 20px rgba(0,0,0,.05);

--shadow:
0 18px 60px rgba(0,0,0,.08);

--shadow-lg:
0 40px 100px rgba(0,0,0,.12);

/* Animation */

--transition:all .35s ease;

}

/*=========================================================
RESET
=========================================================*/

*{

margin:0;
padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Manrope',sans-serif;

font-size:16px;

background:var(--bg);

color:var(--black);

line-height:1.7;

overflow-x:hidden;

-webkit-font-smoothing:antialiased;

}

img{

display:block;

width:100%;

height:auto;

}
.hero-right img,
.industry-image img,
.markets-image img{

    user-select:none;

    -webkit-user-drag:none;

}

a{

text-decoration:none;

color:inherit;

transition:var(--transition);

}

ul{

list-style:none;

}

button{

border:none;

outline:none;

cursor:pointer;

background:none;

font:inherit;

}

/*=========================================================
LAYOUT
=========================================================*/

.container{

width:min(1320px,92%);

margin:auto;

}

section{

padding:120px 0;

position:relative;

}

/*=========================================================
TYPOGRAPHY
=========================================================*/

.section-heading{

max-width:760px;

margin:0 auto 70px;

}

.section-heading.center{

text-align:center;

}

.section-heading span{

display:inline-block;

font-size:12px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

color:var(--text-light);

margin-bottom:18px;

}

.section-heading h2{

font-size:clamp(42px,5vw,72px);

line-height:1.05;

letter-spacing:-2px;

font-weight:800;

margin-bottom:25px;

}

.section-heading p{

font-size:18px;

color:var(--text);

line-height:1.9;

max-width:760px;

}

/*=========================================================
BUTTONS
=========================================================*/

.btn-dark,
.btn-light,
.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:60px;

    padding:0 34px;

    border-radius:999px;

    font-size:15px;

    font-weight:700;

    letter-spacing:.3px;

    text-decoration:none;

    cursor:pointer;

  transition:var(--transition);

    white-space:nowrap;

}
a:focus-visible,
button:focus-visible{

    outline:2px solid var(--gold);

    outline-offset:4px;

}
/*==================================
Primary Button
==================================*/

.btn-dark{

    background:#111;

    color:#fff;

    border:2px solid #111;

    box-shadow:0 12px 28px rgba(0,0,0,.10);

}

.btn-dark:hover{

    background:#222;

    border-color:#222;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.btn-dark i{

    transition:var(--transition);

}

.btn-dark:hover i{

    transform:translateX(5px);

}

/*==================================
Outline Button
==================================*/

.btn-outline{

    background:#fff;

    color:#111;

    border:2px solid #111;

}

.btn-outline:hover{

    background:#111;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.btn-outline i{

   transition:var(--transition);

}

.btn-outline:hover i{

    transform:translateX(5px);

}

/*==================================
Light Button
==================================*/

.btn-light{

    background:#fff;

    color:#111;

    border:2px solid #fff;

    box-shadow:0 10px 30px rgba(255,255,255,.10);

}

.btn-light:hover{

    background:#f4f4f4;

    color:#111;

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(255,255,255,.15);

}

.btn-light i{

   transition:var(--transition);

}

.btn-light:hover i{

    transform:translateX(5px);

}

/*==================================
Button Focus
==================================*/

.btn-dark:focus,
.btn-outline:focus,
.btn-light:focus{

    outline:none;

    box-shadow:0 0 0 4px rgba(201,162,39,.25);

}
/*=========================================================
HEADER
=========================================================*/

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:var(--transition);

}

.header.scrolled{

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:88px;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:170px;

    height:42px;

}

.nav-menu{

    display:flex;

    gap:42px;

    align-items:center;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    font-size:15px;

    font-weight:600;

    color:#111;

    position:relative;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:#111;

   transition:var(--transition);

}

.nav-menu a:hover::after{

    width:100%;

}

.nav-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.menu-toggle{

    display:none;

    font-size:24px;

    cursor:pointer;

}
body{

    padding-top:88px;

}
/*=========================================================
HERO
=========================================================*/

.hero,
.about-hero,
.services-hero{

    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:#fff;

}

/* Background Glow */

.hero::before,
.about-hero::before,
.services-hero::before{

    content:"";

    position:absolute;

    width:900px;

    height:900px;

    top:-350px;

    right:-250px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(201,162,39,.08) 0%,
        rgba(201,162,39,.03) 40%,
        transparent 72%);

    pointer-events:none;

}
.hero .container,
.about-hero .container,
.services-hero .container{

    position:relative;

    z-index:2;

}

/* Layout */

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

/* Left */

.hero-left{

    max-width:620px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border:1px solid var(--border);

    border-radius:999px;

    background:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--text-light);

    margin-bottom:34px;

}

.hero-left h1{

    font-size:clamp(64px,7vw,92px);

    line-height:.92;

    letter-spacing:-3px;

    font-weight:800;

    color:#111;

    margin-bottom:28px;

}

.hero-left p{

    max-width:560px;

    font-size:19px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:42px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

/* Statistics */

.hero-stats{

    display:flex;

    gap:55px;

    flex-wrap:wrap;

}

.hero-stat h2{

    font-size:42px;

    font-weight:800;

    color:#111;

    margin-bottom:8px;

}

.hero-stat span{

    display:block;

    font-size:14px;

    color:var(--text-light);

    letter-spacing:.5px;

}

/* Right */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-right img{

    width:100%;

    max-width:650px;

    border-radius:30px;

    box-shadow:0 35px 90px rgba(0,0,0,.10);

    transition:all .45s ease;

}

.hero-right img:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 45px 110px rgba(0,0,0,.14);

}


/*=========================================================
FEATURE STRIP
=========================================================*/

.feature-strip{

    background:var(--bg-soft);

    padding:90px 0;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:32px;

    align-items:stretch;

}

.feature-box{

    background:var(--white);

    border:1px solid var(--border);

    border-radius:28px;

    padding:42px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:340px;

    position:relative;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

/* Premium top accent */

.feature-box::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--black);

    transform:scaleX(0);

    transform-origin:left;

    transition:var(--transition);

}

.feature-box:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

    border-color:transparent;

}

.feature-box:hover::before{

    transform:scaleX(1);

}

/* Icon */

.feature-icon{

    width:72px;
    height:72px;
    border-radius:20px;
    background:#111;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:28px;

    flex-shrink:0;

    transition:var(--transition);

}

.feature-box:hover .feature-icon{

    transform:rotate(-8deg) scale(1.08);
    

}

/* Heading */

.feature-box h4{

    font-size:26px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:18px;

    letter-spacing:-0.5px;

}

/* Paragraph */

.feature-box p{

    color:var(--text);

    font-size:16px;

    line-height:1.9;

    margin-bottom:auto;

}

/* Link */

.feature-box a{

    margin-top:34px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    font-weight:700;

    color:var(--black);

}

.feature-box a i{

    transition:var(--transition);

}

.feature-box:hover a i{

    transform:translateX(8px);

}

/* Subtle background glow */

.feature-box::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-80px;

    top:-80px;

    border-radius:50%;

    background:rgba(0,0,0,.025);

    transition:.4s;

}

.feature-box:hover::after{

    transform:scale(1.25);

}
/*=========================================================
INDUSTRIES
=========================================================*/

.industries{

    background:var(--bg);

    position:relative;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.industry-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:32px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

    display:flex;

    flex-direction:column;

}

.industry-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.industry-image{

    width:100%;

    height:340px;

    overflow:hidden;

    border-radius:0px;

}

.industry-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:var(--transition);

}

.industry-card:hover .industry-image img{

    transform:scale(1.05);

}

.industry-content{

    padding:38px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.industry-number{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:54px;

    height:54px;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-size:14px;

    font-weight:700;

    margin-bottom:22px;

}

.industry-content h3{

    font-size:30px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:18px;

}

.industry-content p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:auto;

}

.industry-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:34px;

    font-weight:700;

    font-size:15px;

}

.industry-link i{

    transition:var(--transition);

}

.industry-card:hover .industry-link i{

    transform:translateX(8px);

}
/*=========================================================
SERVICES
=========================================================*/

.services{

    background:var(--bg-soft);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}

.service-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:28px;

    padding:38px;

    min-height:320px;

    display:flex;

    flex-direction:column;

   transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:68px;

    height:68px;

    background:#111;

    color:#fff;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-bottom:30px;

}

.service-card h3{

    font-size:24px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:18px;

}

.service-card p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:auto;

}

.service-card a{

    margin-top:30px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

}

.service-card a i{

    transition:var(--transition);

}

.service-card:hover a i{

    transform:translateX(8px);

}
/*=========================================================
MARKETS
=========================================================*/

.markets{

    background:var(--white);

}

.markets-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

    border:1px solid var(--border);

    background:#fff;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.markets-content h2{

    font-size:54px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-2px;

    margin-bottom:24px;

}

.markets-content p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:45px;

}

.market-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

    margin-bottom:45px;

}

.market-stat{

    border-left:3px solid var(--black);

    padding-left:18px;

}

.market-stat h3{

    font-size:38px;

    font-weight:800;

    margin-bottom:6px;

}

.market-stat span{

    font-size:14px;

    color:var(--text-light);

}

.market-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.market-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:var(--black);

}

.market-list i{

    color:var(--gold);

    font-size:15px;

}

.markets-image{

    position:relative;

}

.markets-image img{

    width:100%;

    border-radius:32px;

    box-shadow:var(--shadow-lg);

    transition:.4s ease;

}

.markets-image:hover img{

    transform:translateY(-8px);

}
/*=========================================================
WHY WOIX
=========================================================*/

.why-woix{

    background:var(--bg-soft);

}

.why-grid{

    display:grid;

    gap:28px;

    max-width:900px;

    margin:0 auto;

}

.why-card{

    display:flex;

    gap:30px;

    align-items:flex-start;

    background:#fff;

    padding:34px;

    border-radius:24px;

    border:1px solid var(--border);

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.why-number{

    min-width:72px;

    height:72px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:800;

}

.why-content{

    flex:1;

}

.why-content h3{

    font-size:28px;

    margin-bottom:14px;

    font-weight:800;

}

.why-content p{

    color:var(--text);

    line-height:1.9;

}
/*=========================================================
PREMIUM CTA
=========================================================*/

.cta{

    background:#fff

}

.cta-box{

    background:#111;

    border-radius:40px;

    padding:110px 80px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-250px;

    top:-350px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

.cta-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.cta-box h2{

    font-size:58px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:26px;

}

.cta-box p{

    max-width:760px;

    margin:auto;

    margin-bottom:45px;

    color:rgba(255,255,255,.75);

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


/*=========================================================
FOOTER
=========================================================*/

.footer{

    background:#111;

    color:#fff;

    padding:100px 0 40px;

    margin-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:170px;

    margin-bottom:30px;

}

.footer-about p{

    color:rgba(255,255,255,.70);

    line-height:1.9;

    margin-bottom:30px;

}

.footer h4{

    font-size:18px;

    margin-bottom:24px;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:rgba(255,255,255,.70);

    text-decoration:none;

    transition:var(--transition);

}

.footer ul li a:hover{

    color:#fff;

}

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

  transition:var(--transition);

}

.footer-social a:hover{

    background:var(--gold);

    transform:translateY(-3px);
    box-shadow:var(--shadow-sm);

}


.footer-bottom{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.10);

    padding-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

}

.footer-bottom div{

    display:flex;

    gap:28px;

}

.footer-bottom a{

    color:rgba(255,255,255,.55);

    text-decoration:none;

}

.footer-bottom a:hover{

    color:#fff;

}

/*=========================================================
ABOUT PAGE
=========================================================*/


.about-story{

    background:#fff;

}

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    margin-top:70px;

}

.story-grid p{

    margin-bottom:28px;

    color:var(--text);

    line-height:1.9;

    font-size:18px;

}
/*==================================================
GLOBAL PRESENCE
==================================================*/

.global-presence{

    padding:120px 0;

}

.presence-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.presence-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:50px;

}

.presence-stats h3{

    font-size:44px;

    font-weight:800;

    margin-bottom:8px;

}

.presence-stats span{

    color:var(--text);

}

.presence-image img{

    width:100%;

    border-radius:30px;

    box-shadow:var(--shadow);

}
/*=========================================
MISSION
=========================================*/

.mission{

    padding:120px 0;

    background:#f8f9fa;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:70px;

}

.mission-card{

    background:#fff;

    border-radius:30px;

    padding:60px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.mission-icon{

    width:80px;

    height:80px;

    border-radius:30px;

    background:#111;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:30px;

}

.mission-card h3{

    margin-bottom:18px;

}
/*=========================================
TIMELINE
=========================================*/

.timeline{

    padding:120px 0;

}

.timeline-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.timeline-item{

    background:#fff;

    border-radius:24px;

    border:1px solid var(--border);

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}
.timeline-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/*=========================================================
UTILITIES
=========================================================*/

.text-center{

    text-align:center;

}

.mt-0{

    margin-top:0;

}

.mb-0{

    margin-bottom:0;

}
/*=========================================================
ACTIVE NAVIGATION
=========================================================*/

.nav-menu a.active{

    color:var(--gold);

}

.nav-menu a.active::after{

    width:100%;

    background:var(--gold);

}
/*=========================================================
MARKETS PAGE
=========================================================*/

.markets-overview{

    background:#f8f9fa;

}

.markets-grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.market-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.market-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.market-icon{

    width:78px;

    height:78px;

    margin:auto;

    margin-bottom:25px;

    border-radius:22px;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.market-card h3{

    font-size:28px;

    font-weight:800;

    margin-bottom:15px;

}

.market-card p{

    color:var(--text);

    line-height:1.8;

}
/*=========================================================
FEATURED MARKETS
=========================================================*/

.featured-markets{

    background:#ffffff;

}

.country-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.country-card{

    overflow:hidden;

    border-radius:28px;

    background:#fff;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.country-card:hover{

    transform:translateY(-12px) scale(1.02);

    box-shadow:var(--shadow-lg);

}

.country-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.country-content{

    padding:30px;

}

.country-content h3{

    font-size:26px;

    font-weight:800;

    margin-bottom:8px;

}

.country-content span{

    color:var(--gold);

    font-weight:700;

    letter-spacing:.5px;

}
/*=========================================================
WHY MARKETS
=========================================================*/

.why-markets{

    background:var(--bg);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:70px;

}

.why-card{

    background:#fff;

    border-radius:26px;

    padding:45px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.why-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-bottom:24px;

}

.why-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.why-card p{

    color:var(--text);

    line-height:1.9;

}
/*=========================================================
TRADE STATS
=========================================================*/

.trade-stats{

    background:var(--bg-soft);

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.stat-box{

    background:#fff;

    border:1px solid var(--border);

    border-radius:24px;

    padding:50px 30px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow-sm);

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.stat-box h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:12px;

}

.stat-box span{

    color:var(--text);

    font-size:15px;

}
/*=========================================================
CONTACT PAGE
=========================================================*/

.contact-section{

    background:var(--bg-soft);

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1.1fr;

    gap:80px;

    align-items:start;

}

.contact-info h2{

    font-size:54px;

    line-height:1.1;

    margin:22px 0;

}

.contact-info>p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:40px;

}

.info-list{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.info-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

}

.info-item i{

    width:58px;

    height:58px;

    border-radius:18px;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.info-item h4{

    font-size:20px;

    margin-bottom:6px;

}

.info-item p{

    color:var(--text);

}

.contact-form-box{

    background:#fff;

    border:1px solid var(--border);

    border-radius:30px;

    padding:50px;

    box-shadow:var(--shadow-sm);

}

.contact-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form-box input,

.contact-form-box select,

.contact-form-box textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid var(--border);

    border-radius:16px;

    font-size:16px;

    font-family:inherit;

    background:#fff;

    transition:.3s;

}

.contact-form-box input:focus,

.contact-form-box select:focus,

.contact-form-box textarea:focus{

    outline:none;

    border-color:var(--gold);

}

.contact-form-box textarea{

    resize:vertical;

}

.contact-form-box button{

    width:fit-content;

    border:none;

    cursor:pointer;

}
/* MAP */

.map-section{

    background:#fff;

}

.map-box{

    overflow:hidden;

    border-radius:30px;

    box-shadow:var(--shadow-sm);

}

.map-box iframe{

    width:100%;

    height:500px;

    border:0;

}
.faq-section{

background:var(--bg-soft);

}

.faq-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.faq-item{

background:#fff;

padding:40px;

border-radius:24px;

box-shadow:var(--shadow-sm);

}

.faq-item h3{

margin-bottom:16px;

font-size:22px;

}

.faq-item p{

color:var(--text);

line-height:1.8;

}
/* ==========================================
FAQ SECTION
========================================== */

.faq-section{

    background:var(--bg-soft);

    padding:120px 0;

}

.faq-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.faq-item{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-8px);

}

.faq-item h3{

    margin-bottom:18px;

    font-size:22px;

}

.faq-item p{

    color:var(--text);

    line-height:1.8;

}
/*=========================================================
REQUEST QUOTE PAGE
=========================================================*/

.quote-section{

    background:#f8f8f8;

    padding:140px 0;

}

.quote-form-box{

    max-width:980px;

    margin:70px auto 0;

    background:#fff;

    padding:60px;

    border-radius:32px;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

}

.quote-form{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.quote-form input,
.quote-form select,
.quote-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #e6e6e6;

    border-radius:16px;

    font-size:16px;

    font-family:inherit;

    background:#fff;

    transition:.3s;

}

.quote-form textarea{

    resize:vertical;

}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{

    outline:none;

    border-color:#C9A227;

    box-shadow:0 0 0 4px rgba(201,162,39,.12);

}

.quote-form button{

    align-self:flex-start;

}
/*=========================================
REQUEST QUOTE EXTRA FIELDS
=========================================*/

.checkbox-row{

    display:flex;
    align-items:center;
    gap:12px;

    margin-top:30px;
    margin-bottom:10px;

}

.checkbox-row input{

    width:18px;
    height:18px;

    margin:0;

}
/*=========================================
FORM PLACEHOLDERS
=========================================*/

.quote-form input::placeholder,
.quote-form textarea::placeholder{

    color:#9a9a9a;

}

/*=========================================
REQUEST BUTTON HOVER
=========================================*/

.quote-form .btn-dark{

    transition:all .35s ease;

}

.quote-form .btn-dark:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.quote-form input[type="file"]{

    padding:14px;

    cursor:pointer;

    background:#fff;

}
.file-upload{

padding:16px 18px;

border:1px solid var(--border);

border-radius:14px;

background:#fff;

font-size:15px;

cursor:pointer;

}
/*=========================================
SCROLL REVEAL
=========================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.show{

    opacity:1;

    transform:translateY(0);

}
.mobile-menu{

    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100vh;

    background: #fff;

    padding: 50px 35px;

    z-index: 3000;

    transition: .4s ease;

    display: flex;
    flex-direction: column;

}

.mobile-menu.active{

    right: 0;

}
.overlay{

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 2500;

}

.overlay.active{

    opacity: 1;

    visibility: visible;

}   
.back-top{

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 52px;

    height: 52px;

    border: none;

    border-radius: 50%;

    background: #111;

    color: #fff;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 2000;

}

.back-top.show{

    opacity: 1;

    visibility: visible;

}
.mobile-close{

    position:absolute;

    top:25px;

    right:25px;

    font-size:28px;

    cursor:pointer;

    color:#111;

}
.mobile-menu ul{

    list-style:none;

    padding:70px 0 40px;

}

.mobile-menu li{

    margin:22px 0;

}

.mobile-menu a{

    font-size:24px;

    font-weight:600;

    color:#111;

    text-decoration:none;

}
.mobile-menu .btn-dark{

    margin-top:auto;

}
/*==============================
LEGAL PAGES
==============================*/

.page-hero{

padding:160px 0 60px;

}

.policy-section{

padding:40px 0 100px;

}

.policy-content{

max-width:900px;

margin:auto;

}

.policy-content h2{

margin-top:45px;

margin-bottom:15px;

font-size:28px;

}

.policy-content p{

line-height:1.9;

color:#666;

font-size:17px;

}
.upload-note{

    height:64px;

    display:flex;

    align-items:center;

    gap:12px;

    border-radius:16px;

    padding:0 24px;

}
.upload-note i{

    color:var(--gold);

    font-size:18px;

}
.quote-form .btn-dark{

    margin-top:30px;
    margin-bottom:70px;

}