*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f5f0;
    color:#222;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

.container{
    width:85%;
    max-width:1500px;
    margin:auto;
}

/* section title */

section{
    padding:90px 8px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#222;
}

.section-title p{
    color:#666;
    margin-top:10px;
}
.section-title h2{
    font-size:65px;
    font-weight:700;
    line-height:1.1;

    background:linear-gradient(
        135deg,
        #111,
        #c8a96a,
        #111
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:15px;
}

.section-title p{
    font-size:20px;
    color:#666;
    letter-spacing:1px;
}
.section-title::after{
    content:"";
    display:block;

    width:120px;
    height:4px;

    margin:25px auto 0;

    background:linear-gradient(
        90deg,
        transparent,
        #c8a96a,
        transparent
    );

    border-radius:20px;
}
.section-title h2{
    transition:.5s;
}

.section-title:hover h2{
    letter-spacing:2px;
}

/*=========================================
        GLOBAL RESPONSIVE
=========================================*/

@media (max-width:992px){

.section-title h2{
    font-size:50px;
}

.section-title p{
    font-size:18px;
}

}

@media (max-width:768px){

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    font-size:38px;
}

.section-title p{
    font-size:16px;
    line-height:1.8;
}

.section-title::after{
    width:90px;
}

}

@media (max-width:576px){

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:15px;
}

}


/* Navbar */

.navbar{
    position:fixed;
    top:15px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1600px;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(20px);
    border:1px solid rgba(200,169,106,.25);
    border-radius:22px;
    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
    transition:.4s ease;
}

.navbar:hover{
    box-shadow:
    0 15px 50px rgba(0,0,0,.12),
    0 0 20px rgba(200,169,106,.15);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
    padding:0 35px;
}

.navbar::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        #c8a96a,
        transparent
    );
}

.logo img{
    height:55px;
    width:auto;
    display:block;
    transition:.4s ease;
}

.logo img:hover{
    transform:scale(1.05);
}
.nav-btn{
    padding:12px 26px;

    background:#c8a96a;
    color:white;

    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    transition:.4s ease;
}

.nav-btn:hover{
    background:#b8924d;

    transform:
    translateY(-3px);

    box-shadow:
    0 10px 25px rgba(200,169,106,.35);
}
.nav-links{
    display:flex;
    align-items:center;
    gap:35px;

    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a{
    text-decoration:none;
    color:#2a2a2a;

    font-size:17px;
    font-weight:600;

    position:relative;

    transition:.3s ease;
}

.nav-links a:hover{
    color:#c8a96a;
}

.nav-links a::after{
    content:'';

    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#c8a96a;

    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}
.nav-links a.active{
    color:#c8a96a;
}

.nav-links a.active::after{
    width:100%;
}
.nav-links li{
    list-style:none;
}

@media(max-width:992px){

.nav-container{

    padding:0 20px;
}

.nav-links{

    gap:18px;
}

.nav-links a{

    font-size:15px;
}

.nav-btn{

    padding:10px 18px;
}

.logo img{

    height:48px;
}

}

@media(max-width:768px){

.nav-links{

    display:none;
}

.nav-btn{

    display:none;
}

.nav-container{

    justify-content:center;
}

.logo img{

    height:52px;
}

}

/* Hero */

.hero{
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    color:white;
    min-height:85vh; 
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-content{
    max-width:650px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    padding-top:30px;
    padding-bottom:0;

    margin:0;
}

.hero-slider{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide{
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 2s ease-in-out;

    transform: scale(1);
}

.slide.active{
    opacity: 1;
}

.slide::after{
    content: '';
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.50);
}



/* Keep content above images */

.hero .container,
.hero-content,
.hero-tag,
.trust-badge,
.hero-button,
.whatsapp-btn{
    position: relative;
    z-index: 10;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    width:fit-content;

    padding:10px 22px;

    background:rgba(200,169,106,.15);
    border:1px solid rgba(200,169,106,.3);

    border-radius:30px;

    color:#fff;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;

    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:clamp(2.8rem,4.5vw,4.8rem);

    line-height:1.02;

    margin-bottom:18px;

    font-family:'Playfair Display',serif;

    color:#fff;

    text-shadow:
    0 5px 20px rgba(0,0,0,.4);
}

.hero h1 span{
    color:#cfae67;

    text-shadow:
    0 0 15px rgba(200,169,106,.5),
    0 0 35px rgba(200,169,106,.3);
}

.hero p{
    font-size:1.15rem;
    line-height:1.55;

    margin-bottom:20px;

    max-width:600px;
}

.trust-badge{
    display:inline-flex;
    align-items:center;
    width:fit-content;

    padding:10px 18px;

    background:rgba(200,169,106,.15);
    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:#fff;
    font-size:15px;

    margin-bottom:28px; /* Change from 15px to 25px */

    backdrop-filter:blur(10px);
}

.btn{
    display:inline-block;

    padding:14px 30px;

    margin-right:0;
    margin-bottom:0;

    background:#b08a45;
    color:white;

    text-decoration:none;

    border-radius:5px;

    transition:.3s;
}

.btn:hover{
    background:#a98949;
}

.btn-outline{
    background:transparent;
    border:2px solid white;
}

.btn-primary{

    background:#b08a45;

    color:#111;

    border:none;

    transition:.4s;
}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:
        0 10px 25px rgba(200,169,106,.4);
}

.btn-secondary:hover{

    background:white;
    color:#111;
}
.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:fit-content;

    gap:12px;

    margin-top:0;

    padding:12px 24px;

    background:#25D366;
    color:white;

    text-decoration:none;
    font-weight:600;
    font-size:15px;

    border-radius:50px;

    transition:.3s ease;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    box-shadow:
        0 10px 25px rgba(37,211,102,.4);
    background:#1ebe5d;
}

.hero-button{
    display:flex;
    gap:18px;

    align-items:center;
    flex-wrap:wrap;
    margin-bottom:20px; 
    margin-top:0;
    
}

@media(max-width:768px){

.hero{

    min-height:100vh;

    text-align:center;
}

.hero-content{

    align-items:center;

    max-width:100%;
}

.hero p{

    font-size:16px;
}

.hero-button{

    justify-content:center;
}

.whatsapp-btn{

    width:100%;
}

}

@media(max-width:576px){

.hero h1{

    font-size:2.2rem;
}

.hero-tag{

    font-size:11px;
}

.btn{

    width:100%;
    text-align:center;
}

}

/* About Section */

.about{
    background:#ffffff;
}

.about-content{
    display:flex;
    align-items:stretch;
    gap:60px;
}

.about-image{
    flex:1;
    display:flex;
    
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-text{
    flex:1;
}

.about-text h3{
    font-size:32px;
    margin:0 0 20px;
    color:#222;
}

.about-text p{
    text-align: justify;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}



@media(max-width:768px){

.about-content{
    flex-direction:column;
}

.about-stats{
    flex-wrap:wrap;
}
}



/* WHY CHOOSE US */


.why-us{
    padding:120px 0;
    background:
    linear-gradient(
        135deg,
        #f8f5ef,
        #f2ede3
    );
    position:relative;
}

.why-us::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(
        rgba(200,169,106,.05),
        transparent 70%
    );
}   

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
    margin-top:50px;
}

.stat-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:18px;          /* controls spacing */

    padding:25px;

    min-height:0;      /* REMOVE fixed height */

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.stat-card::before{

    content:"";

    position:absolute;

    width:105px;
    height:105px;

    background:
    rgba(200,169,106,.08);

    border-radius:50%;

    top:-100px;
    right:-100px;
}

.stat-card:hover{

    transform:translateY(-8px);
    border-color:#c8a96a;
    box-shadow:
    0 20px 40px rgba(0,0,0,.08),
    0 0 30px rgba(200,169,106,.25);
}

.stat-card i{
    font-size:38px;
    color:#c8a96a;
    margin:0;
}

.stat-card h3{
    font-size:48px;
    line-height:1;
    color:#c8a96a;
    font-family:
    'Playfair Display',
    serif;
    margin:0;
}

.stat-card p{
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
}

.stat-card:hover i{
    transform:scale(1.15);
    transition:.4s;
}

@media(max-width:768px){

.stat-card{

    padding:30px 20px;
}

.stat-card h3{

    font-size:38px;
}

.stat-card p{

    font-size:16px;
}

}

/* OFFER SECTION */

.offers-section{
    padding:100px 0;
    background:linear-gradient(
    135deg,
    #f8f5f0,
    #ffffff);
}

.offer-tag{
    display:inline-block;
    background:#c8a96a;
    color:white;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.offers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.offer-card{
    position:relative;
    background:white;
    padding:30px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    min-height:350px; 
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    overflow:hidden;
}

.offer-card:hover{
    transform:translateY(-12px);
    background:#111;
    color:white;

    box-shadow:
    0 25px 50px rgba(0,0,0,.15),
    0 0 30px rgba(200,169,106,.20);
}

.countdown-box{
    margin-bottom:18px;
    color:#c8a96a;
    font-weight:600;
    font-size: 13px;
}

.offer-badge{
    position:absolute;
    top:20px;
    right:20px;

    background:linear-gradient(
        135deg,
        #d4b06a,
        #b89045
    );

    color:white;
    padding:10px 20px;

    border-radius:50px;

    font-size:15px;
    font-weight:700;

    box-shadow:0 8px 20px rgba(201,169,106,.35);

    transition:.3s ease;
}

.offer-card:hover .offer-badge{
    transform:translateY(-2px);
}

.offer-icon{
    width:90px;
    height:90px;    
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #d4b06a,
        #b89045
    );
    color:white;
    font-size:2.2rem;
    box-shadow:
    0 10px 25px rgba(201,169,106,.35);
    transition:.4s ease;
    margin:0 auto 12px;
}

.offer-card:hover .offer-icon{
    transform:scale(1.15) rotate(10deg);
    box-shadow:
    0 15px 35px rgba(201,169,106,.45);
}

.offer-card h3{
    font-size:20px;
    line-height:1.3;
    min-height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom:4px;
}

.offer-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:0px 0 8px;
}

.offer-divider span{
    width:80px;
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        #c8a96a,
        transparent
    );
}

.offer-divider i{
    color:#c8a96a;
    font-size:12px;
}

.offer-card p{
    color:#666;
    line-height:1.6;
    min-height:75px;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.offer-card:hover p{
    color:#ddd;
}


.featured-offer{
    border:2px solid #c8a96a;
}

.featured-offer:hover{
    transform:scale(1.08);
}

@media(max-width:768px){

.featured-offer{
    transform:none;
}

.featured-offer:hover{
    transform:translateY(-10px);
}

}

@media(max-width:768px){

.offer-card{

    min-height:auto;

    padding:30px 22px;
}

.offer-badge{

    position:static;

    margin-bottom:20px;
}

.offer-icon{

    width:70px;
    height:70px;

    font-size:28px;
}

}

/*Sevices Section*/

/*service hero*/
/*======================================================
                    SERVICES HERO
======================================================*/

.services-hero{
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 8% 80px;
    background: linear-gradient(135deg,#fdfaf5 0%,#f7f0e4 50%,#efe4d2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */

.services-hero::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(201, 168, 92, 0.08);
    border-radius: 50%;
    top: -220px;
    right: -180px;
}

.services-hero::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 92, 0.05);
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
}

.services-hero-content{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-hero-subtitle{
    color: #b8860b;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.services-hero-content h1{
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1.15;
    color: #222;
    margin-bottom: 25px;
}

.services-hero-content h1 span{
    color: #b8860b;
}

.services-hero-description{
    font-size: 1.08rem;
    color: #666;
    line-height: 1.8;
    max-width: 720px;
    margin: auto;
}

.services-hero-btn{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    padding: 15px 35px;
    background: #b8860b;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s ease;
}

.services-hero-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184,134,11,.25);
}

.services-hero-btn i{
    transition: .35s;
}

.services-hero-btn:hover i{
    transform: translateX(6px);
}

/*======================================================
                SERVICES HERO RESPONSIVE
======================================================*/

@media(max-width:992px){

    .services-hero-content h1{
        font-size:3.2rem;
    }

}

@media(max-width:768px){

    .services-hero{
        padding:100px 6% 70px;
    }

    .services-hero-content h1{
        font-size:2.6rem;
    }

    .services-hero-description{
        font-size:1rem;
    }

}

@media(max-width:576px){

    .services-hero-content h1{
        font-size:2rem;
    }

    .services-hero-subtitle{
        font-size:.8rem;
        letter-spacing:2px;
    }

    .services-hero-btn{
        padding:14px 28px;
    }

}

/*======================================================
                SERVICES Categories
======================================================*/

.services-description{
    max-width:720px;
    margin:auto;
    font-size:1.1rem;
    line-height:1.9;
    color:#666;
}

.services-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:40px;
    padding:16px 38px;
    background:#c89a3d;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.35s ease;
}

.services-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(200,154,61,.3);
}

.services-btn i{
    transition:.3s;
}

.services-btn:hover i{
    transform:translateX(6px);
}
.service-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:70px;
}

.service-card{
    background:white;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.2s ease;
    border:1px solid rgba(200,169,106,.15);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 40px rgba(0,0,0,.12),
    0 0 25px rgba(200,169,106,.18);
}

.service-card i{
    font-size:42px;
    color:#cfae67;
    margin-bottom:20px;
    transition:.4s ease;
}
.service-card:hover i{

    transform:
    scale(1.25)
    rotate(5deg);

    color:#b9964d;
}

.service-card h3{
    margin-bottom:15px;
    color:#222;
    font-size:24px;
    transition: color 0.35s ease;
}
.service-card:hover h3{
    color:#c9a85c;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

@media(max-width:768px){

.services-grid{

    grid-template-columns:1fr;
}

.service-card{

    padding:28px;
}

}

/*Steps to works*/
.how-it-works{
    background:#faf8f3;
}
.steps-wrapper{
    position:relative;
}

.process-line{
    position:absolute;
    top:40px;
    left:12%;
    width:76%;
    height:3px;

    background:linear-gradient(
        90deg,
        #d6b56c,
        #b9964d
    );

    transform:scaleX(0);
    transform-origin:left;

    z-index:0;
}
@keyframes growLine{
    from{
        transform:scaleX(0);
    }
    to{
        transform:scaleX(1);
    }
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.step-card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
    z-index:1;
    transition:.5s ease;
}

.step-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12),
    0 0 30px rgba(214,181,108,.18);

    border:1px solid rgba(214,181,108,.25);

}
.process-label{
    display:block;
    margin-bottom:15px;
    font-size:12px;
    letter-spacing:3px;
    color:#b9964d;
    font-weight:600;
}

.step-number{
    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #d6b56c,
        #b9964d
    );
    color:white;
    font-size:30px;
    font-weight:700;

    box-shadow:
    0 10px 25px rgba(185,150,77,.3);
}
.step-card:hover .step-number{
    transform:
    scale(1.1)
    rotate(8deg);
    transition:.4s;
}

.step-card h3{ margin-bottom:15px; transition: color 0.35s ease;

}
.step-card:hover h3{
    color:#c9a85c;
}

@media(max-width:768px){

.process-line{

    display:none;
}

.steps-grid{

    grid-template-columns:1fr;
}

.step-card{

    padding:30px 25px;
}

}

/*======================================================
                    BRANDS HERO
======================================================*/

.brands-hero{
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 8% 80px;

    background: linear-gradient(135deg,#fdfaf5 0%,#f7f0e4 50%,#efe4d2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */

.brands-hero::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(201, 168, 92, 0.08);
    border-radius: 50%;
    top: -220px;
    right: -180px;
}

.brands-hero::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 92, 0.05);
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
}

.brand-hero-content{
    width:100%;
    max-width:1100px;

    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    position:relative;
    z-index:2;
}

.brand-hero-subtitle{
    color: #b8860b;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.brand-hero-content h1{
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1.15;
    color: #222;
    margin-bottom: 25px;
}

.brand-hero-content h1 span{
    color: #b8860b;
}

.brand-hero-description{
    font-size: 1.08rem;
    color: #666;
    line-height: 1.8;
    max-width: 720px;
    margin: auto;
}

.brand-hero-btn{
    display: flex;
    width:fit-content;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    padding: 15px 35px;
    background: #b8860b;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s ease;
}

.brand-hero-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184,134,11,.25);
}

.brand-hero-btn i{
    transition: .35s;
}

.brand-hero-btn:hover i{
    transform: translateX(6px);
}

/*Responsive section of brands section*/

@media(max-width:992px){

    .brand-hero-content h1{
        font-size:3.2rem;
    }

}

@media(max-width:768px){

    .brands-hero{
        padding:100px 6% 70px;
    }

    .brand-hero-content h1{
        font-size:2.6rem;
    }

    .brand-hero-description{
        font-size:1rem;
    }

}

@media(max-width:576px){

    .brand-hero-content h1{
        font-size:2rem;
    }

    .brand-hero-subtitle{
        font-size:.8rem;
        letter-spacing:2px;
    }

    .brand-hero-btn{
        padding:14px 28px;
    }

}

@media(max-width:768px){

.brand-card{

    padding:28px;
}

.brand-card img{

    width:140px;
}

}

/*======================================================
                    BRANDS SECTION
======================================================*/

.brands-section{

    padding:100px 8%;
    background:#fff;

}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.brand-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    border:1px solid #ececec;
    transition:.4s;
    cursor:pointer;
}

.brand-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.brand-card img{
    width:170px;
    height:90px;
    object-fit:contain;
    margin-bottom:25px;
    transition:.4s;
}

.brand-card:hover img{
    transform:scale(1.08);
}

.brand-card h3{
    font-size:1.5rem;
    margin-bottom:12px;
}

.brand-card p{
    color:#666;
    margin-bottom:25px;
}


/* New Arrivals */

.arrival-section{

    position:relative;

    padding:100px 7%;

    background:#f8f5f0;
}

.arrival-slider{

    position:relative;

    overflow:hidden;
}

.arrival-slide{

    display:none;

    grid-template-columns:55% 45%;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.arrival-slide.active{

    display:grid;
}

.arrival-image{

    height:600px;
}

.arrival-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;
}

.arrival-content{

    padding:70px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.arrival-tag{

    color:#c8a96a;

    font-size:.85rem;

    letter-spacing:4px;

    font-weight:600;
}

.arrival-content h2{

    font-size:52px;

    margin:18px 0;
}

.arrival-divider{

    width:70px;

    height:3px;

    background:#c8a96a;

    margin-bottom:28px;
}

.arrival-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;
}

.arrival-features{

    list-style:none;

    margin-bottom:40px;
}

.arrival-features li{

    margin:14px 0;

    color:#444;

    position:relative;

    padding-left:28px;
}

.arrival-features li::before{

    content:"✓";

    color:#c8a96a;

    position:absolute;

    left:0;

    font-weight:bold;
}

.arrival-btn{

    width:max-content;

    padding:16px 34px;

    background:#c8a96a;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;
}

.arrival-btn:hover{

    background:#b8924d;

    transform:translateY(-4px);
}

.arrival-prev,
.arrival-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:65px;

    height:65px;

    border:none;

    border-radius:50%;

    background:#c8a96a;

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.35s;

    z-index:5;
}

.arrival-prev{

    left:25px;
}

.arrival-next{

    right:25px;
}

.arrival-prev:hover,
.arrival-next:hover{

    background:#b8924d;
}

.arrival-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:35px;
}

.arrival-dots span{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d8d8d8;

    cursor:pointer;
}

.arrival-dots span.active{

    background:#c8a96a;
}

@media(max-width:992px){

.arrival-slide{

    grid-template-columns:1fr;
}

.arrival-image{

    height:380px;
}

.arrival-content{

    padding:40px;
}

}

@media(max-width:576px){

.arrival-content{

    padding:30px 22px;
}

.arrival-content h2{

    font-size:34px;
}

.arrival-prev,
.arrival-next{

    width:48px;
    height:48px;

    font-size:18px;
}

}

/*======================================================
                    PRODUCTS HERO
======================================================*/

.products-hero{
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 8% 80px;
    background: linear-gradient(135deg,#fdfaf5 0%,#f7f0e4 50%,#efe4d2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative circles */

.products-hero::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(201, 168, 92, 0.08);
    border-radius: 50%;
    top: -220px;
    right: -180px;
}

.products-hero::after{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 92, 0.05);
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
}

.products-hero-content{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-hero-subtitle{
    color: #b8860b;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.products-hero-content h1{
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1.15;
    color: #222;
    margin-bottom: 25px;
}

.products-hero-content h1 span{
    color: #b8860b;
}

.products-hero-description{
    font-size: 1.08rem;
    color: #666;
    line-height: 1.8;
    max-width: 720px;
    margin: auto;
}

.products-hero-btn{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 40px auto 0;
    padding: 15px 35px;
    background: #b8860b;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s ease;
}

.products-hero-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(184,134,11,.25);
}

.products-hero-btn i{
    transition: .35s;
}

.products-hero-btn:hover i{
    transform: translateX(6px);
}

/*======================================================
                PRODUCTS HERO RESPONSIVE
======================================================*/

@media(max-width:992px){

    .products-hero-content h1{
        font-size:3.2rem;
    }

}

@media(max-width:768px){

    .products-hero{
        padding:100px 6% 70px;
    }

    .products-hero-content h1{
        font-size:2.6rem;
    }

    .products-hero-description{
        font-size:1rem;
    }

}

@media(max-width:576px){

    .products-hero-content h1{
        font-size:2rem;
    }

    .products-hero-subtitle{
        font-size:.8rem;
        letter-spacing:2px;
    }

    .products-hero-btn{
        padding:14px 28px;
    }

}

/*======================================================
                PRODUCT CATEGORIES
======================================================*/

.product-categories{
    padding:100px 8%;
    background:#fff;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:60px;
}

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.category-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s ease;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-content{
    padding:25px;
}

.category-content h3{
    font-size:1.8rem;
    color:#222;
    margin-bottom:10px;
    transition:.3s;
}

.category-card:hover h3{
    color:#c8a96a;
}

.category-content p{
    color:#666;
    margin-bottom:18px;
    line-height:1.7;
}

.category-content span{
    color:#c8a96a;
    font-weight:600;
}

.category-content span i{
    margin-left:8px;
    transition:.3s;
}

.category-card:hover span i{
    transform:translateX(6px);
}

@media(max-width:768px){

.category-grid{

    grid-template-columns:1fr;
}

.category-card img{

    height:220px;
}

}

/*=========================================
        PREMIUM COLLECTION
=========================================*/

.collection-section{

    padding:110px 8%;

    background:#fff;
}

/*================ TITLE ================*/

.collection-section .section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;
}

.collection-section .section-title h2{

    font-size:3.2rem;

    color:#222;

    margin-bottom:18px;
}

.collection-section .section-title p{

    color:#666;

    line-height:1.9;

    font-size:17px;
}

/*================ GRID ================*/

.collection-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/*================ CARD ================*/

.collection-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    text-decoration:none;

    border:1px solid rgba(200,169,106,.15);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.collection-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/*================ IMAGE ================*/

.collection-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.5s;
}

.collection-card:hover img{

    transform:scale(1.08);
}

/*================ CONTENT ================*/

.collection-content{

    padding:28px;
}

.collection-content h3{

    color:#222;

    font-size:28px;

    margin-bottom:10px;

    transition:.3s;
}

.collection-card:hover h3{

    color:#c8a96a;
}

.collection-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:22px;
}

.collection-content span{

    color:#c8a96a;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.3s;
}

.collection-card:hover span{

    gap:18px;
}

/*================ BUTTON ================*/

.collection-btn{

    text-align:center;

    margin-top:60px;
}

.premium-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 38px;

    background:#c8a96a;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.35s;
}

.premium-btn:hover{

    background:#b8924d;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(200,169,106,.35);
}

.premium-btn i{

    transition:.35s;
}

.premium-btn:hover i{

    transform:translateX(6px);
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

.collection-grid{

    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.collection-section{

    padding:90px 6%;
}

.collection-section .section-title h2{

    font-size:2.5rem;
}

.collection-grid{

    grid-template-columns:1fr;

    gap:28px;
}

.collection-card img{

    height:230px;
}

.collection-content{

    padding:24px;
}

}

@media(max-width:576px){

.collection-section{

    padding:80px 5%;
}

.collection-section .section-title h2{

    font-size:2rem;
}

.collection-section .section-title p{

    font-size:15px;
}

.collection-card img{

    height:210px;
}

.collection-content h3{

    font-size:24px;
}

.collection-content p{

    font-size:15px;
}

.premium-btn{

    width:100%;

    justify-content:center;
}

}



/*=========================================
            TESTIMONIALS
=========================================*/

.testimonials-section{
    padding:100px 8%;
    background:#f8f5f0;
    overflow:hidden;
}

.testimonial-slider{
    position:relative;
    margin-top:60px;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    transition:transform .6s ease;
    will-change:transform;
}

/*==============================
        CARD
==============================*/

.testimonial-card{

    flex:0 0 calc((100% - 60px) / 3);

    background:#fff;

    border:1px solid rgba(200,169,106,.18);

    border-radius:24px;

    padding:35px;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    min-height:330px;
}

.testimonial-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:#c8a96a;

    transform:scaleY(0);

    transform-origin:top;

    transition:.35s;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

.testimonial-card:hover::before{

    transform:scaleY(1);
}

/*==============================
        HEADER
==============================*/

.client-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:22px;
}

.client-avatar{

    width:65px;
    height:65px;

    background:#c8a96a;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:24px;

    flex-shrink:0;
}

.client-header h4{

    font-size:22px;

    color:#222;

    margin-bottom:5px;
}

.client-header span{

    color:#777;

    font-size:15px;
}

/*==============================
        STARS
==============================*/

.stars{

    color:#d4af37;

    font-size:18px;

    letter-spacing:3px;

    margin-bottom:20px;
}

/*==============================
        REVIEW
==============================*/

.testimonial-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;
}

/*==============================
        ARROWS
==============================*/

.testimonial-prev,
.testimonial-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:#c8a96a;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:100;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(200,169,106,.35);
}

.testimonial-prev{

    left:-20px;
}

.testimonial-next{

    right:-20px;
}

.testimonial-prev:hover,
.testimonial-next:hover{

    background:#b8924d;

    transform:translateY(-50%) scale(1.08);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.testimonial-card{

    flex:0 0 calc((100% - 30px)/2);
}

}

@media(max-width:768px){

.testimonial-card{

    flex:0 0 100%;
}

.testimonial-prev{

    left:10px;
}

.testimonial-next{

    right:10px;
}

.client-header{

    flex-direction:column;

    align-items:flex-start;
}

}

@media(max-width:576px){

.testimonial-card{

    padding:25px;
}

.client-avatar{

    width:55px;
    height:55px;
}

.client-header h4{

    font-size:18px;
}

}
/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section{
    padding:110px 8%;
    background:linear-gradient(180deg,#fdfaf5 0%,#f8f5f0 100%);
    position:relative;
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(200,169,106,.08);
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.contact-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(200,169,106,.05);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

.contact-section .container{
    position:relative;
    z-index:2;
}

/*=========================================
            TITLE
=========================================*/

.contact-section .section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}

.contact-section .section-title h2{
    font-size:3.5rem;
    color:#222;
    margin-bottom:20px;
}

.contact-section .section-title p{
    color:#666;
    font-size:1.1rem;
    line-height:1.8;
}

/*=========================================
            WRAPPER
=========================================*/

.contact-wrapper{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;
}

/*=========================================
            FORM CARD
=========================================*/

.contact-form{

    width:100%;

    max-width:900px;

    background:#ffffff;

    padding:55px;

    border-radius:30px;

    border:1px solid rgba(200,169,106,.18);

    box-shadow:
        0 20px 60px rgba(0,0,0,.08);

    transition:.35s ease;
}

.contact-form:hover{

    transform:translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);
}

.contact-form h3{

    font-size:2.7rem;

    color:#222;

    margin-bottom:10px;
}

.form-subtitle{

    color:#777;

    margin-bottom:40px;

    font-size:16px;
}

/*=========================================
            INPUTS
=========================================*/

.input-group{

    margin-bottom:24px;
}

.input-group label{

    display:block;

    margin-bottom:10px;

    font-size:15px;

    font-weight:600;

    color:#333;
}

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #ddd;

    border-radius:14px;

    background:#faf8f4;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    transition:.35s;
}

.input-group textarea{

    resize:none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    outline:none;

    border-color:#c8a96a;

    background:#fff;

    box-shadow:
        0 0 0 5px rgba(200,169,106,.12);
}

/*=========================================
            BUTTON
=========================================*/

.submit-btn{

    width:100%;

    padding:18px;

    margin-top:10px;

    border:none;

    border-radius:50px;

    background:#c8a96a;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    transition:.35s;
}

.submit-btn:hover{

    background:#b8924d;

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(200,169,106,.35);
}

.submit-btn i{

    font-size:22px;
}

/*=========================================
        INFO CHIPS
=========================================*/

.contact-info-bottom{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:25px;

    margin-top:40px;
}

.info-box{

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px 28px;

    background:#fff;

    border-radius:50px;

    border:1px solid rgba(200,169,106,.15);

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);

    transition:.35s;
}

.info-box:hover{

    transform:translateY(-4px);

    box-shadow:
        0 18px 35px rgba(0,0,0,.08);
}

.info-box i{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#c8a96a;

    color:#fff;

    font-size:17px;
}

.info-box span{

    color:#444;

    font-size:15px;

    font-weight:500;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.contact-section{

    padding:90px 6%;
}

.contact-section .section-title h2{

    font-size:2.8rem;
}

.contact-form{

    max-width:100%;

    padding:45px;
}

}

@media(max-width:768px){

.contact-section{

    padding:80px 5%;
}

.contact-section .section-title h2{

    font-size:2.3rem;
}

.contact-section .section-title p{

    font-size:1rem;
}

.contact-form{

    padding:35px 25px;
}

.contact-form h3{

    font-size:2rem;
}

.contact-info-bottom{

    flex-direction:column;

    gap:18px;
}

.info-box{

    width:100%;

    justify-content:center;
}

}

@media(max-width:576px){

.contact-section{

    padding:70px 4%;
}

.contact-section .section-title h2{

    font-size:1.9rem;
}

.contact-form{

    padding:28px 20px;

    border-radius:22px;
}

.contact-form h3{

    font-size:1.7rem;
}

.input-group input,
.input-group select,
.input-group textarea{

    padding:15px;
}

.submit-btn{

    padding:16px;

    font-size:16px;
}

.info-box{

    padding:15px 18px;
}

.info-box span{

    font-size:14px;
}

}

/* PREMIUM FOOTER */

.premium-footer{
    background:linear-gradient(
    135deg,
    #111111,
    #1b1b1b,
    #252525);
    color:#ffffff;
    padding:50px 0 15px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:35px;
}

.footer-brand{
    position:relative;
}

.footer-logo{

    font-size:38px;

    font-family:'Playfair Display',serif;

    background:linear-gradient(
        135deg,
        #f5d78c,
        #c8a96a,
        #f5d78c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:18px;

    line-height:1.2;
}

.footer-divider{
    width:80px;
    height:3px;
    background:#c8a96a;
    border-radius:20px;
    margin-bottom:25px;
}
.footer-logo{

    text-shadow:
    0 0 15px rgba(200,169,106,.2);
}   

.footer-desc{
    color:#d0d0d0;
    font-size:17px;
    line-height:1.9;
    max-width:350px;
    margin-bottom:20px;
}

.footer-tagline{
    display:block;
    color:#c8a96a;
    letter-spacing:4px;
    font-size:12px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.footer-column{
    padding:10px;
    background:none;
    border:none;
    border-radius:0;
}

.footer-column p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
    padding-top:10px;
}

.footer-column ul li{
    margin-bottom:15px;

    transition:.3s;
}

.footer-column ul li a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
    position:relative;
}

.footer-column h3{
    color:#fff;
    margin-bottom:25px;
    font-size:28px;
    position:relative;
}

.footer-column h3::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:#c8a96a;
    border-radius:10px;
}
.footer-column ul li{
    
}

.footer-column ul li:hover{
    transform:translateX(8px);
}

.footer-column ul li a{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.footer-column ul li a::before{
    content:"›";
    color:#c8a96a;
    font-size:18px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:28px;
    color:#ddd;
    font-size:18px;
}

.contact-item i{
    color:#c8a96a;
    width:20px;
}

.contact-item span{
    word-break:break-word;
}

.footer-timing{
    margin-top:35px;
    padding:18px;
    border-radius:15px;
    background:
    linear-gradient(
        135deg,
        rgba(200,169,106,.12),
        rgba(200,169,106,.05)
    );
    border:1px solid rgba(200,169,106,.2);
    color:#f5d78c !important;
    line-height:2;
    display:inline-block;
    white-space:nowrap;
}

/* Hover Effect */

.footer-column ul li a:hover{
    color:#c8a96a;
    padding-left:10px;
}

.footer-column ul li a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:#c8a96a;
    left:0;
    bottom:-4px;
    transition:.3s;
}

.footer-column ul li a:hover::after{
    width:100%;
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.footer-social a{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(200,169,106,.1);
    color:white;
    text-decoration:none;
    transition:.4s;
    font-size: 15px;
}

.footer-social a:hover{

    background:#c8a96a;
    color:#111;
    transform:
    translateY(-8px)
    rotate(360deg);
    box-shadow:
    0 0 20px rgba(200,169,106,.4);
}

/* Contact */
.footer-contact{
    font-size: 16px;
    
}

/* Bottom */

.footer-bottom{
    margin-top:30px;
    border-top:1px solid rgba(200,169,106,.15);
    padding-top:25px;
    text-align:center;
    color:#999;
}

/* Responsive */

@media(max-width:900px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-social{
    justify-content:center;
}
}

@media(max-width:768px){

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

    text-align:center;
}

.footer-column h3::after{

    left:50%;

    transform:translateX(-50%);
}

.footer-social{

    justify-content:center;
}

.contact-item{

    justify-content:center;
}

.footer-timing{

    white-space:normal;
}

}

@media(max-width:576px){

.whatsapp-float{

    width:55px;
    height:55px;

    font-size:26px;

    right:18px;
    bottom:18px;
}

}


/* Glass Navbar */

nav{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(15px);
    transition:.4s;
}

nav.scrolled{
    background:rgba(255,255,255,.96);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Hero */

.hero{
    position:relative;
    overflow:hidden;
    background-attachment:fixed;
}

/* Floating Glow */

.floating-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(200,169,106,.15);
    filter:blur(80px);
    pointer-events:none;
}

.circle1{
    width:300px;
    height:300px;
    left:5%;
    top:10%;
    animation:float 8s infinite;
}

.circle2{
    width:200px;
    height:200px;
    right:10%;
    top:25%;
    animation:float 10s infinite;
}

.circle3{
    width:250px;
    height:250px;
    bottom:10%;
    left:40%;
    animation:float 12s infinite;
}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-40px);
}

}

/* Product Hover */

.card img{
    transition:1s ease;
}

.card:hover img{
    transform:scale(1.1);
}

.card:hover{
    transform:
    translateY(-15px)
    scale(1.02);

    box-shadow:
    0 30px 60px rgba(0,0,0,.15);
}

/* Gallery Hover */

.gallery img{
    transition:.6s;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* Testimonials */

.testimonial{
    transition:.4s;
}

.testimonial:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}


/* Buttons */

.btn,
.offer-btn,
.enquiry-box button{
    transition:.4s;
}

.btn:hover,
.offer-btn:hover,
.enquiry-box button:hover{
    box-shadow:
    0 0 25px rgba(200,169,106,.5);
}

/* WhatsApp Floating */

.whatsapp-float{

position:fixed;
bottom:25px;
right:25px;

width:65px;
height:65px;

background:#25D366;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

color:white;
font-size:32px;

text-decoration:none;

z-index:9999;

box-shadow:
0 10px 30px rgba(0,0,0,.25);

animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

/* Smooth Section Spacing */

section{
    scroll-margin-top:100px;
}
