:root{
    --bg:#050505;
    --gold:#C8A44D;
    --white:#F5F2EA;
    --text:#A8A8A8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--white);
    font-family:'Manrope',sans-serif;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

h1,h2,h3{
    font-family:'Cinzel',serif;
}

/* ================= HEADER ================= */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 28px;

    z-index:999;

    background:rgba(5,5,5,.35);

    backdrop-filter:blur(25px);

    border-bottom:1px solid rgba(200,164,77,.12);

}

.logo{

    display:flex;
    flex-direction:column;

}

.logo span{

    font-size:32px;
    color:var(--gold);
    font-family:'Cinzel',serif;

}

.logo small{

    font-size:9px;
    color:#777;

    letter-spacing:2px;

}

.menu{

    font-size:34px;

    color:var(--gold);

}

/* ================= HERO ================= */

.hero{

    position:relative;

    width:100%;
    height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:#050505;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 90% 50%,rgba(200,164,77,.18),transparent 40%),

    linear-gradient(to bottom,#000,#050505);

}

.hero-text{

    position:relative;

    z-index:5;

    width:100%;

    padding:0 30px;

}

.hero-top{

    color:var(--gold);

    font-size:11px;

    letter-spacing:4px;

}

.gold-line{

    width:70px;

    height:2px;

    background:var(--gold);

    margin:20px 0 25px;

}

.hero h1{

    font-size:74px;

    line-height:.88;

    letter-spacing:-3px;

    color:var(--white);

}

.hero p{

    margin-top:30px;

    color:var(--text);

    max-width:250px;

    line-height:1.9;

}

.btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:290px;
    height:58px;

    margin-top:40px;

    border:1px solid var(--gold);

    color:var(--gold);

    letter-spacing:3px;

    font-size:13px;

    border-radius:40px;

    transition:.35s;

    box-shadow:0 0 25px rgba(200,164,77,.08);

}

.btn:hover{

    background:var(--gold);

    color:#000;

    box-shadow:0 0 40px rgba(200,164,77,.35);

}

/* ================= IMAGE ================= */

.snake{

    position:absolute;

    right:-40px;

    bottom:0;

    width:260px;

    z-index:2;

    filter:drop-shadow(0 0 45px rgba(200,164,77,.25));

}

/*================ MENU =================*/

.nav-overlay{

    position:fixed;

    top:0;
    right:-100%;

    width:82%;
    height:100vh;

    background:#090909;

    z-index:9999;

    transition:right .4s ease;
backdrop-filter: blur(12px);
box-shadow:-15px 0 40px rgba(0,0,0,.6);
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.nav-overlay.active{

    right:0;

}

body{

    overflow-x:hidden;

}

.nav-overlay nav{
    width:100%;
    padding:0 35px;
    display:flex;
    flex-direction:column;
    gap:32px;
}

.nav-overlay nav a{

    font-family:'Manrope',sans-serif;

    font-size:22px;

    font-weight:600;

    color:#fff;

    padding:18px 0;

    border-bottom:1px solid rgba(200,164,77,.12);

    display:flex;

    justify-content:space-between;
    
    align-items:center;

    transition:.3s;

}

.nav-overlay nav a:hover{

    color:var(--gold);

    padding-left:18px;

    letter-spacing:1px;

}

.nav-overlay nav span{

    width:40px;

    color:var(--gold);

    font-size:13px;

    opacity:.55;

    font-family:'Manrope';

}

.nav-overlay nav a:hover span{

    opacity:1;

    transform:translateX(6px);

    transition:.3s;

}

.close-menu{

    position:absolute;

    top:25px;

    right:30px;

    color:var(--gold);

    font-size:34px;

    cursor:pointer;

}

/*================ ABOUT =================*/

.about{

    padding:90px 30px;

    background:#090909;

}

.section-tag{

    color:var(--gold);

    font-size:11px;

    letter-spacing:4px;

}

.about h2{

    margin-top:20px;

    font-size:42px;

    line-height:1.15;

    color:var(--white);

}

.about p{

    margin-top:25px;

    color:var(--text);

    line-height:1.9;

}

.stats{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.stat{

    border:1px solid rgba(200,164,77,.15);

    padding:20px 10px;

    text-align:center;

    background:rgba(255,255,255,.02);

}

.stat h3{

    color:var(--gold);

    font-size:28px;

    margin-bottom:8px;

}

.stat span{

    color:#999;

    font-size:12px;

}

/*================ CURSOR GLOW =================*/

.cursor-glow{

    position:fixed;

    width:180px;
    height:180px;

    border-radius:50%;

    pointer-events:none;

    background:radial-gradient(circle,rgba(200,164,77,.18),transparent 70%);

    transform:translate(-50%,-50%);

    z-index:99999;

    transition:transform .08s linear;

}

/*================ LOADER =================*/

#loader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader-content{

    text-align:center;

}

.loader-content h1{

    color:var(--gold);

    font-size:72px;

    font-family:'Cinzel',serif;

    letter-spacing:8px;

}

.loader-content p{

    margin-top:18px;

    color:#8f8f8f;

    font-size:12px;

    letter-spacing:6px;

    animation:fadeText 2s ease-in-out infinite;

}

@keyframes fadeText{

    0%{
        opacity:.3;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:.3;
    }

}

/*================ SHOWCASE =================*/

.showcase{

    padding:100px 20px;

    display:flex;

    flex-direction:column;

    gap:35px;

}

.showcase-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    background:#111;


}
.showcase-card:hover{

    transform:translateY(-8px);

}

.showcase-card img{

    width:100%;

    height:560px;

    object-fit:cover;

    transition:.5s;

}

.showcase-card:hover img{

    transform:scale(1.08);

}

.showcase-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 15%,
        rgba(0,0,0,.25) 55%,
        transparent 100%
    );

}

.showcase-content{

    position:absolute;

    left:25px;

    bottom:30px;

    right:25px;
 
    z-index:5;
}

.showcase-content span{

    color:var(--gold);
    
    margin-bottom:18px;
    
    display:block;
    
    font-size:11px;

    letter-spacing:4px;

}

.showcase-content h2{

    margin:15px 0;

    font-size:32px;
    line-height:1.1;
}

.showcase-content p{

    color:#d0d0d0;

    line-height:1.8;

    margin-bottom:25px;

}

.showcase-content a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:170px;

    height:48px;

    border:1px solid var(--gold);

    color:var(--gold);

    border-radius:40px;

    margin-top:10px;

    transition:.3s;

}

.showcase-content a:hover{

    background:var(--gold);

    color:#000;

}

/*================ WHY =================*/

.why{

    padding:100px 30px;

    background:#050505;

}

.why h2{

    font-size:42px;

    margin:18px 0;

}

.why-desc{

    color:var(--text);

    line-height:1.8;

    margin-bottom:45px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.why-box{

    padding:28px;

    border:1px solid rgba(200,164,77,.15);

    border-radius:18px;

    background:#0d0d0d;

    transition:.35s;

}

.why-box:hover{

    transform:translateY(-6px);

    border-color:var(--gold);

}

.why-box h3{

    font-size:38px;

    color:var(--gold);

    margin-bottom:10px;

}

.why-box span{

    color:#9a9a9a;

}

/*================ GLOBAL =================*/

.global{

    padding:100px 30px;

    background:#090909;

    text-align:center;

}

.global h2{

    font-size:42px;

    margin:18px 0;

}

.global-desc{

    color:var(--text);

    line-height:1.8;

    margin:0 auto 40px;

    max-width:330px;

}

.world-map{

    width:100%;

    opacity:.35;

    margin:30px auto 50px;

}

.country-list{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

}

.country-list span{

    padding:12px 18px;

    border:1px solid rgba(200,164,77,.15);

    border-radius:30px;

    color:#ddd;

    background:#111;

    transition:.3s;

}

.country-list span:hover{

    background:var(--gold);

    color:#000;

}

/*================ BRANDS =================*/

.brands{

    padding:100px 30px;

    background:#050505;

    text-align:center;

}

.brands h2{

    margin:20px 0 50px;

    font-size:42px;

}

.brand-list{

    display:grid;

    gap:22px;

}

.brand-item{

    background:#0b0b0b;

    border:1px solid rgba(200,164,77,.15);

    border-radius:18px;

    padding:35px;

    transition:.35s;

}

.brand-item:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 15px 35px rgba(200,164,77,.08);

}

.brand-item img{

    width:180px;

    margin:auto;

    filter:brightness(.95);

}

/*================ SERVICES =================*/

.services{

    padding:120px 30px;

    background:#090909;

}

.services h2{

    margin:20px 0 50px;

    font-size:42px;

}

.services-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.service-box{

    padding:30px;

    border:1px solid rgba(200,164,77,.15);

    border-radius:20px;

    background:#0d0d0d;

    transition:.4s;

}

.service-box:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 20px 40px rgba(200,164,77,.08);

}

.service-box h3{

    color:var(--gold);

    font-size:24px;

    margin-bottom:15px;

    letter-spacing:2px;

}

.service-box p{

    color:var(--text);

    line-height:1.8;

}

/*================ GALLERY =================*/

.gallery{

    padding:120px 30px;

    background:#050505;

}

.gallery h2{

    margin:20px 0;

    font-size:42px;

}

.gallery-desc{

    color:var(--text);

    line-height:1.8;

    margin-bottom:45px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.gallery-grid img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

    border:1px solid rgba(200,164,77,.12);

}

.gallery-grid img:hover{

    transform:scale(1.05);

    border-color:var(--gold);

}

/*================ CONTACT =================*/

.contact{

    padding:120px 30px;

    background:#090909;

    text-align:center;

}

.contact h2{

    font-size:52px;

    line-height:1.1;

    margin:20px 0;

}

.contact p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:45px;

}

.contact-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-list a{

    display:block;

    padding:18px;

    border:1px solid rgba(200,164,77,.15);

    border-radius:50px;

    color:#fff;

    transition:.35s;

}

.contact-list a:hover{

    background:var(--gold);

    color:#000;

    border-color:var(--gold);

}

/*================ FOOTER =================*/

.footer{

    padding:80px 30px 40px;

    background:#050505;

    text-align:center;

    border-top:1px solid rgba(200,164,77,.12);

}

.footer h2{

    font-size:54px;

    color:var(--gold);

}

.footer-tag{

    color:#888;

    letter-spacing:4px;

    font-size:11px;

    margin:15px 0 45px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-links a{

    color:#ddd;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--gold);

}

.footer-country{

    margin:50px 0;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:10px;

}

.footer-country span{

    border:1px solid rgba(200,164,77,.12);

    padding:8px 14px;

    border-radius:30px;

    color:#888;

    font-size:12px;

}

.copyright{

    color:#666;

    font-size:12px;

    padding-top:30px;

    border-top:1px solid rgba(200,164,77,.08);

}

/*================ REVEAL =================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.badge-soon{

    position:absolute;

    top:20px;

    right:20px;

    z-index:20;

    padding:8px 16px;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(12px);

    border:1px solid rgba(200,164,77,.25);

    border-radius:30px;

    color:var(--gold);

    font-size:10px;

    letter-spacing:3px;

    font-weight:700;

}