:root {
    /* Deep, Rich Palette */
    --color-emerald-deep: #022005;
    /* Much darker, almost black-green */
    --color-emerald-medium: #0A450E;
    --color-emerald-bright: #107C18;
    /* For highlights */

    /* Metallic Gold Gradients */
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-text-gradient: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7);

    --color-dark: #050505;
    /* Almost pure black */
    --color-grey: #1a1a1a;
    --color-white: #FFFFFF;

    --font-serif: 'Playfair Display', serif;
    /* Cinzel is also good, but Playfair is very elegant */
    --font-sans: 'Montserrat', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);

    --transition-speed: 0.5s;
    /* Slower, more luxurious transition */
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-dark);
    color: #e0e0e0;
    line-height: 1.8;
    /* More breathing room */
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 50%, #0d2e10 0%, #000000 70%);
    /* Subtle emerald glow in center */
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: #D4AF37;
    /* Fallback */
    margin-bottom: 1.5rem;
    font-weight: 400;
    /* Lighter weight for elegance */
    letter-spacing: 1px;
}

/* Text Gradient Class */
.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

p {
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 1.05rem;
    color: #ccc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 85%;
    max-width: 1400px;
    /* Wider for modern look */
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #D4AF37;
    position: relative;
    overflow: hidden;
    color: #D4AF37;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 3px;
    /* High-end tracking */
    font-size: 0.8rem;
    transition: all var(--transition-speed);
    cursor: pointer;
    background: transparent;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    transition: width var(--transition-speed);
    z-index: -1;
}

.btn:hover {
    color: #000;
    border-color: transparent;
}

.btn:hover::before {
    width: 100%;
}

.section-padding {
    padding: 120px 0;
    /* More whitespace */
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.5s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--glass-blur);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: height 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

header.scrolled .logo img {
    height: 45px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    opacity: 0.8;
}

nav a:hover {
    opacity: 1;
    color: #D4AF37;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width 0.4s;
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #D4AF37;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* For parallax */
    background: url('assets/image-3.jpg') no-repeat center center/cover;
    z-index: -2;
    filter: brightness(0.6) contrast(1.1);
    /* Darken for text readability */
    transform: translateY(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    /* Larger title */
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-white);
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.4rem;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Sections Common */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

/* Essence (History) - Asymmetrical Layout */
.essence-section {
    position: relative;
}

.essence-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    /* More gap */
    align-items: center;
}

.essence-text {
    padding-right: 20px;
}

.essence-img-wrapper {
    position: relative;
}

.essence-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #D4AF37;
    z-index: -1;
    opacity: 0.6;
}

.essence-img img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    filter: grayscale(20%) contrast(110%);
    /* Stylish filter */
    transition: all 0.5s;
}

.essence-img img:hover {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.02);
}

/* Why Us - Glassmorphism Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 50px 30px;
    transition: transform 0.4s, border-color 0.4s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
}

.service-card i {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

/* Product Section - Luxury Showcase */
.product-showcase {
    background: linear-gradient(to right, #000, #051a05);
    /* Dark background shift */
    padding: 120px 0;
}

.product-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Reverse grid balance */
    gap: 80px;
    align-items: center;
}

.product-img-group {
    position: relative;
    height: 600px;
    /* Fixed height for composition */
}

/* Strategic Image Placement for Product */
.product-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    object-fit: cover;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.product-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    border: 2px solid #D4AF37;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.product-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-text h4 {
    color: #D4AF37;
    /* Solid gold for subtitle */
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.product-text ul {
    list-style: none;
    margin-top: 30px;
}

.product-text li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Divider lines */
    padding-bottom: 15px;
}

.product-text li::before {
    content: '✦';
    /* Diamond/Star symbol */
    color: #D4AF37;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Event CTA - Cinematic */
.event-cta {
    position: relative;
    background: url('assets/event-banner.png') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    /* Parallax */
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.event-content {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 60px 100px;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
}

/* Footer - Minimalist Luxury */
footer {
    background: #000;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.footer-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-item {
    text-align: left;
}

.footer-item h4 {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-item p {
    color: #ccc;
    font-size: 1rem;
}

/* Social Media Buttons */
.footer-social {
    margin: 40px 0 20px;
    text-align: center;
}

.social-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* Instagram */
.social-btn.instagram {
    background: rgba(193, 53, 132, 0.1);
    border-color: rgba(193, 53, 132, 0.4);
    color: #e1306c;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
    transform: translateY(-3px);
}

/* TikTok */
.social-btn.tiktok {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.social-btn.tiktok:hover {
    background: #010101;
    border-color: #69C9D0;
    color: #69C9D0;
    box-shadow: 0 8px 25px rgba(105, 201, 208, 0.3), -3px 0 0 #EE1D52, 3px 0 0 #69C9D0;
    transform: translateY(-3px);
}

/* Facebook */
.social-btn.facebook {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.4);
    color: #1877f2;
}

.social-btn.facebook:hover {
    background: #1877f2;
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #444;
    border-top: 1px solid #111;
    padding-top: 30px;
    width: 100%;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    font-size: 32px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20bd5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    aspect-ratio: 16/9;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fade 1.5s;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: #D4AF37;
    color: #000;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-indicators span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #D4AF37;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicators span.active {
    background: #D4AF37;
    transform: scale(1.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.fade-in.active {
    opacity: 1;
}

/* Responsive Luxury Overhaul */
@media (max-width: 992px) {
    .container {
        width: 90%;
    }

    .essence-grid,
    .product-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .essence-text {
        padding-right: 0;
        text-align: center;
    }

    .essence-img-wrapper::before {
        top: -15px;
        right: -15px;
    }

    .product-img-group {
        height: 500px;
    }

    .product-text {
        order: -1;
        /* Text first on mobile for product */
        text-align: center;
    }

    .product-text li {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    /* Enhanced Mobile Header */
    header {
        padding: 20px 0;
    }

    .logo img {
        height: 45px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
        /* Above the overlay */
        font-size: 1.8rem;
    }

    /* Full Screen Glass Overlay Menu */
    nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        /* Strong blur */
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 0;
        margin: 0;
        opacity: 0;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }

    nav li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
        /* Staggered animation handled by JS or simple CSS delay */
    }

    /* Child delays for scale effect */
    nav ul.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    nav ul.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    nav ul.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    nav ul.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    nav ul.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    nav ul.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    nav a {
        font-size: 1.5rem;
        /* Larger touch targets */
        color: #D4AF37;
        font-family: var(--font-serif);
        letter-spacing: 3px;
        font-weight: 300;
    }

    nav a::after {
        display: none;
        /* No underline on mobile */
    }

    /* Hero Adjustments */
    .hero-content {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Better fit */
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Footer & Layout */
    .footer-info {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-item {
        text-align: center;
    }

    .event-content {
        padding: 40px 20px;
        width: 95%;
        border: none;
        /* Simplify for mobile */
        border-top: 1px solid #D4AF37;
        border-bottom: 1px solid #D4AF37;
    }

    /* Ensure Float Button is Top Layer */
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 30px;
        z-index: 9999 !important;
        /* Force visibility */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
}