:root {
    /* Existing Colors */
    --bg-dark: #0b1421;
    --bg-dark-2: #1a2c44;

    --bg-green: #0f4f51;
    --accent-gold: #d4af37;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --h1-fs: clamp(1.6rem, 5vw, 4rem);




    --white: #fff;
    /* New Gradient Variables */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f2d47e 50%, #b8860b 100%);
    --glass-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    --dark-gradient: radial-gradient(circle at center, #162436 0%, #0b1421 100%);
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top right, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
    margin: 0;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.serif {
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1200;
}


@media (max-width:578px) {
    .logo-text {
        font-size: 1.0rem;
    }
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: 0.4s;
}

header.scrolled {
    background: rgba(11, 20, 33, 0.9);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 1200;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }
}

/* --- Updated Mobile Overlay & Close Button --- */
#mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 20, 33, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    /* Higher than header */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.close-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--accent-gold);
}

.mobile-nav-link {
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--accent-gold);
}

/* ===== HEADER ===== */
.lux-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s ease;
}

.lux-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.lux-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* LOGO */
/* .logo-text {
    font-size: 1.7rem;
    letter-spacing: 1px;
} */

.logo-text .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NAV */
.lux-nav {
    gap: 40px;
}

.lux-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    transition: 0.3s;
}

.lux-link:hover,
.lux-link.active {
    color: var(--white);
}

.lux-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.lux-link:hover::after,
.lux-link.active::after {
    width: 100%;
}

/* CTA */
.lux-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 14px;
    transition: 0.35s ease;
}

.lux-cta:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* #mobileOverlay {
    display: flex;
    gap: 20px;
} */

#mobileOverlay.active {
    display: flex;
    opacity: 1;
}

.mobile-call-btn {
    margin-top: 30px;
    padding: 14px 30px;
    border-radius: 40px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-weight: 600;
}















/* Hero Section */
/* --- Hero Layout --- */
.hero-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 0 100px 0 100px;
    padding: clamp(1.2rem, 5vw, 3.5rem);
    position: relative;
    z-index: 10;
    width: 110%;
    opacity: 0;
}

.hero-title {
    font-size: var(--h1-fs);
    line-height: 1.1;
    margin: 0;
}

.hero-img-box {
    overflow: hidden;
    position: relative;
    z-index: 11;
    /* opacity: 0; */
}

.hero-img {
    width: 50%;
    height: auto;
    max-width: 500px;
    /* border-radius: 0 0 200px 200px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7); */
}

/* --- SHOP NOW BUTTON OVER GLASS --- */
.shop-now {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.05); */
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -45px;
    bottom: 11%;
    z-index: 30;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shop-now span {
    font-size: 0.6rem;
    color: var(--accent-gold);
    font-weight: bold;
    text-align: center;
    transition: color 0.3s ease;
}

.shop-now:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.shop-now:hover span {
    color: var(--bg-dark);
}

.hero-footer {
    border-left: 2px solid var(--glass-border);
    padding-left: 20px;
    margin-top: 2rem;
    opacity: 0;
}

@media (max-width: 991px) {
    .hero-section {
        align-items: flex-start;
        padding-top: 100px;
    }

    .glass-card {
        width: 116%;
        border-radius: 0 50px 0 50px;
    }

    .hero-img {
        margin-top: -20px;
    }

    .shop-now {
        width: 70px;
        height: 70px;
        right: -30px;
        bottom: 25%;
    }
}




















a {
    text-decoration: none;
}


.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

/* Mobile fine-tuning */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
}

/* Floating Gradient Orbs */
.floating-orbs {
    position: relative;
    overflow: hidden;
}

.floating-orbs::before,
.floating-orbs::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(212, 175, 55, 0.18),
            transparent 70%);
    animation: orbFloat 28s linear infinite;
}

.floating-orbs::after {
    width: 320px;
    height: 320px;
    animation-delay: -14s;
    opacity: 0.6;
}

@keyframes orbFloat {
    0% {
        transform: translate(-20%, -20%);
    }

    50% {
        transform: translate(80%, 40%);
    }

    100% {
        transform: translate(-20%, -20%);
    }
}