/*==================================================
        GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');



/*==================================================
        ROOT COLORS
==================================================*/

:root{

    --black:#0B0B0B;
    --dark:#181818;

    --white:#FFFFFF;

    --off-white:#F8F6F2;

    --beige:#E8DDCF;

    --gold:#B78B47;

    --gold-light:#D8B985;

    --text:#A8A8A8;

    --border:#2E2E2E;

    --transition:.4s ease;

}


/*==================================================
        RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--black);

    color:var(--white);

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

section{

    padding:100px 0;

}

h1,h2,h3,h4{

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    line-height:1.1;

}

p{

    color:var(--text);

    line-height:1.8;

}
/*=================================
        PRELOADER
==================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#0B0B0B;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader-logo img{

    width:140px;

    animation:loaderZoom 1.8s infinite;

}

@keyframes loaderZoom{

0%{

transform:scale(.9);

opacity:.5;

}

50%{

transform:scale(1);

opacity:1;

}

100%{

transform:scale(.9);

opacity:.5;

}

}
/*==================================================
                HEADER
==================================================*/

#header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    transition:0.4s ease;

}

#header.scrolled{

    background:rgba(11,11,11,.90);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 40px rgba(0,0,0,.45);

}


/*==================================================
                NAVBAR
==================================================*/

.navbar{

    height:95px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/*==================================================
                LOGO
==================================================*/

.logo img{

    width:170px;

    transition:.4s;

}

.logo:hover img{

    transform:scale(1.05);

}


/*==================================================
                MENU
==================================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:45px;

}

.nav-links a{

    position:relative;

    color:var(--off-white);

    font-size:16px;

    font-weight:500;

    letter-spacing:.5px;

    transition:var(--transition);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.4s;

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-links a:hover::after{

    width:100%;

}


/*==================================================
            GET QUOTE BUTTON
==================================================*/

.nav-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 34px;

    border-radius:50px;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:var(--black);

    font-weight:600;

    letter-spacing:.5px;

    transition:.4s;

}

.nav-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(183,139,71,.35);

}


/*==================================================
            MOBILE MENU ICON
==================================================*/

.menu-btn{

    display:none;

    font-size:28px;

    color:var(--white);

    cursor:pointer;

}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.nav-links{

display:none;

}

.nav-btn{

display:none;

}

.menu-btn{

display:block;

}

.logo img{

width:145px;

}

}
/*==================================================
                HERO SECTION
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

   display:flex;

    align-items:center;

    overflow:hidden;

  /*  background:var(--black);

    padding-top:120px;*/

}


/*==============================
        Background Glow
===============================*/

.hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:radial-gradient(circle, rgba(183,139,71,.18), transparent 70%);

    top:-180px;

    right:-180px;

    filter:blur(20px);

}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:radial-gradient(circle, rgba(255,255,255,.04), transparent 70%);

    bottom:-150px;

    left:-120px;

}


/*==============================
        CONTENT
===============================*/

.hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    position:relative;

    z-index:5;

}


/*==============================
        LEFT
===============================*/

.hero-text{

    flex:1;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    background:rgba(255,255,255,.03);

    color:var(--gold);

    margin-bottom:30px;

    backdrop-filter:blur(10px);

}

.hero-text h1{

    font-size:78px;

    color:var(--off-white);

    margin-bottom:30px;

}

.hero-text h1 span{

    color:var(--gold);

}

.hero-text p{

    max-width:620px;

    font-size:18px;

    color:var(--text);

    margin-bottom:45px;

}


/*==============================
        BUTTONS
===============================*/

.hero-btns{

    display:flex;

    gap:20px;

}

.primary-btn{

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:var(--black);

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.primary-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(183,139,71,.35);

}

.secondary-btn{

    border:1px solid rgba(255,255,255,.18);

    color:var(--off-white);

    padding:18px 38px;

    border-radius:50px;

    transition:.4s;

}

.secondary-btn:hover{

    background:var(--off-white);

    color:var(--black);

}


/*==============================
        IMAGE
===============================*/

.hero-video{

    position:absolute;
    z-index:-2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;

}



.hero-video video{

    width:100%;
    height:100%;
    object-fit:cover;
    animation: heroZoom 18s linear infinite alternate;

}

@keyframes heroZoom{

    from{
        transform: scale(1);
    }

    to{
        transform: scale(1.12);
    }
}

.hero-overlay{

    position:absolute;
    inset:0;
    background: rgba(0,0,0,.55);
    z-index:-1;

}
.hero-content{

    position:relative;
    z-index:5;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;

}


/*==============================
        FLOAT
===============================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}


/*==============================
        RESPONSIVE
===============================*/

@media(max-width:991px){

.hero-content{

flex-direction:column-reverse;

text-align:center;

}

.hero-text h1{

font-size:56px;

}

.hero-text p{

margin:auto auto 40px;

}

.hero-btns{

justify-content:center;

flex-wrap:wrap;

}


}

@media(max-width:576px){

.hero-text h1{

font-size:42px;

}

.hero-tag{

font-size:13px;

}


}
/*==================================================
            FLOATING CARDS
==================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    box-shadow:0 20px 40px rgba(0,0,0,.30);

    animation:floatCard 4s ease-in-out infinite;

}

.floating-card i{

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:var(--black);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.floating-card h4{

    font-size:20px;

    color:var(--white);

    margin-bottom:3px;

}

.floating-card span{

    color:var(--text);

    font-size:14px;

}

/* Card Position */

.card-one{

    top:12%;

    left:-20px;

}

.card-two{

    bottom:18%;

    right:-40px;

    animation-delay:1s;

}

.card-three{

    bottom:-10px;

    left:20px;

    animation-delay:2s;

}

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

@media(max-width:991px){

.floating-card{

display:none;

}

}
/*=========================================
            ABOUT SECTION
==========================================*/

.about{

    background:var(--off-white);

    padding:120px 0;

}

.about-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

/* Left */

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:20px;

    transition:.5s;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.about-image:hover img{

    transform:scale(1.03);

}

/* Right */

.about-content{

    flex:1;

}

.section-tag{

    color:var(--gold);

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.about-content h2{

    color:var(--black);

    font-size:58px;

    margin:18px 0 25px;

    line-height:1.1;

}

.about-content h2 span{

    color:var(--gold);

}

.about-content p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.about-list div{

    color:var(--black);

    font-weight:500;

}

.about-list i{

    color:var(--gold);

    margin-right:10px;

}

.about-btn{

    display:inline-block;

    background:var(--black);

    color:var(--white);

    padding:18px 38px;

    border-radius:50px;

    transition:.4s;

}

.about-btn:hover{

    background:var(--gold);

    color:var(--black);

}

/* Responsive */

@media(max-width:991px){

.about-wrapper{

flex-direction:column;

}

.about-content{

text-align:center;

}

.about-list{

grid-template-columns:1fr;

}

.about-content h2{

font-size:42px;

}

}
/*=========================================
            PRODUCTS
==========================================*/

.products{

    background:#111;

    padding:120px 0;

}

.section-heading{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:70px;

}

.section-heading span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:15px;

    font-weight:600;

}

.section-heading h2{

    font-size:60px;

    margin:20px 0;

    color:var(--off-white);

}

.section-heading p{

    color:var(--text);

    line-height:1.8;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    grid-auto-rows:320px;

    gap:30px;

}

.large-card{

    grid-row:span 2;

}

.wide-card{

    grid-column:span 2;

}

.product-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

    background:#000;

}

.product-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.15));

    z-index:1;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    position:absolute;

    left:35px;

    bottom:35px;

    z-index:2;

}

.product-info span{

    display:inline-block;

    color:var(--gold);

    margin-bottom:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

}

.product-info h3{

    font-size:38px;

    color:#fff;

    margin-bottom:12px;

}

.product-info a{

    color:#fff;

    font-weight:500;

}

.product-info a:hover{

    color:var(--gold);

}

@media(max-width:991px){

.products-grid{

grid-template-columns:1fr;

grid-auto-rows:320px;

}

.large-card,

.wide-card{

grid-column:unset;

grid-row:unset;

}

.product-info h3{

font-size:30px;

}

}
/*=========================================
        WHY CHOOSE US
==========================================*/

.why-choose{

    padding:120px 0;

    background:#111;

}

.why-wrapper{

    display:flex;

    align-items:center;

    gap:80px;

}

.why-image{

    flex:1;

}

.why-image img{

    width:100%;

    border-radius:25px;

    transition:.5s;

}

.why-image img:hover{

    transform:scale(1.03);

}

.why-content{

    flex:1;

}

.why-content h2{

    font-size:55px;

    color:#fff;

    margin:20px 0;

}

.why-content h2 span{

    color:var(--gold);

}

.why-box{

    margin:40px 0;

}

.choose-item{

    display:flex;

    gap:18px;

    margin-bottom:30px;

}

.choose-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.choose-item h4{

    color:#fff;

    margin-bottom:8px;

    font-size:24px;

}

.choose-item p{

    color:#aaa;

}

@media(max-width:991px){

.why-wrapper{

flex-direction:column;

}

.why-content{

text-align:center;

}

.choose-item{

text-align:left;

}

}
/*=========================================
        EXPORT PROCESS
==========================================*/

.process{

    background:var(--off-white);

    padding:120px 0;

}

.process-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

    position:relative;

}

.process-wrapper::before{

    content:"";

    position:absolute;

    top:40px;

    left:8%;

    width:84%;

    height:2px;

    background:rgba(183,139,71,.35);

    z-index:1;

}

.process-card{

    position:relative;

    z-index:2;

    background:#fff;

    padding:45px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-10px);

}

.number{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),var(--gold-light));

    color:#000;

    font-size:28px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.process-card h3{

    color:#111;

    margin-bottom:15px;

    font-size:28px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

.process-wrapper::before{

display:none;

}

}

@media(max-width:576px){

.process-wrapper{

grid-template-columns:1fr;

}

}
/*=========================================
        GLOBAL PRESENCE
==========================================*/

.global{

    background:#111;

    padding:120px 0;

}

.global-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.global-card{

    background:#181818;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

}

.global-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

}

.global-card i{

    font-size:42px;

    color:var(--gold);

    margin-bottom:25px;

}

.global-card h3{

    color:#fff;

    font-size:28px;

    margin-bottom:15px;

}

.global-card p{

    color:#aaa;

    line-height:1.8;

}

@media(max-width:991px){

.global-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.global-grid{

grid-template-columns:1fr;

}

}
/*=========================================
            GALLERY
==========================================*/

.gallery{

    background:var(--off-white);

    padding:120px 0;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:260px;

    gap:22px;

    margin-top:70px;

}

.gallery-item{

    overflow:hidden;

    border-radius:22px;

    position:relative;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.large{

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.large,

.wide{

grid-column:unset;

grid-row:unset;

}

}

@media(max-width:576px){

.gallery-grid{

grid-template-columns:1fr;

}

}
/*=========================================
            FAQ
==========================================*/

.faq{

    background:#111;
    padding:120px 0;

}

.faq-wrapper{

    max-width:900px;
    margin:60px auto 0;

}

.faq-item{

    margin-bottom:20px;
    border-radius:16px;
    overflow:hidden;
    background:#1a1a1a;

}

.faq-question{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 30px;

    cursor:pointer;

}

.faq-question h3{

    color:#fff;
    font-size:24px;

}

.faq-question i{

    color:var(--gold);

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:#bfbfbf;

}

.faq-item.active .faq-answer{

    display:block;

}
.contact{

padding:120px 0;

background:var(--off-white);

}

.contact-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

}

.contact-right input,
.contact-right textarea{

width:100%;

padding:18px;

margin-bottom:20px;

border:none;

border-radius:12px;

background:#fff;

}

.contact-right button{

background:var(--gold);

color:#000;

padding:18px 45px;

border:none;

border-radius:50px;

cursor:pointer;

font-weight:600;

}
footer{

background:#0b0b0b;

padding:80px 0 30px;

}

.footer-content{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

}

footer h2,
footer h4{

color:#fff;

margin-bottom:20px;

}

footer p,
footer a{

color:#999;

}

footer ul li{

margin-bottom:12px;

}

footer a:hover{

color:var(--gold);

}

.socials{

display:flex;

gap:15px;

margin-top:20px;

}

.socials a{

width:45px;

height:45px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#1b1b1b;

transition:.4s;

}

.socials a:hover{

background:var(--gold);

color:#000;

}

.copy{

text-align:center;

margin-top:30px;

}
#topBtn{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

background:linear-gradient(135deg,var(--gold),var(--gold-light));

color:#000;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:20px;

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

}

#topBtn.show{

opacity:1;

visibility:visible;

}

#topBtn:hover{

transform:translateY(-6px);

}