/* --- BRAND DNA & GLOBAL STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600&family=Playfair+Display:ital,wght@1,400&family=Syne:wght@400;700;800&display=swap');

:root {
    --bg-body: #F5F5F7;
    --primary: #121212;
    --accent: #D4AF37;
    --white: #FFFFFF;
    --border: #E5E5E5;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Nav Defaults (Light Theme) */
    --nav-bg: rgba(255, 255, 255, 0.7);
    --nav-bg-scroll: rgba(255, 255, 255, 0.98);
    --nav-text: #121212;
    --nav-border-color: rgba(0, 0, 0, 0.05);
    --nav-link-opacity: 0.7;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

/* --- LUXURY NAVIGATION --- */
nav {
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--nav-border-color);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-sizing: border-box;
}

.logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
    color: var(--nav-text);
    letter-spacing: -1px;
    transition: 0.4s;
}

.logo:hover {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text) !important;
    font-weight: 400;
    font-size: 10px !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: var(--nav-link-opacity) !important;
    transition: all 0.4s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-link.active,
.nav-link:hover {
    opacity: 1 !important;
    color: var(--accent) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn-nav {
    border: 1px solid var(--accent);
    padding: 10px 20px;
    opacity: 1 !important;
    color: var(--accent) !important;
}

.nav-link.cta-btn-nav:hover {
    background: var(--accent);
    color: #FFFFFF !important;
}

/* Mobile Nav */
@media screen and (max-width: 992px) {
    nav {
        padding: 15px 25px !important;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: var(--nav-bg-scroll);
        width: 100%;
        height: 100vh;
        justify-content: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 2400;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 2600;
        padding: 10px;
    }

    .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: var(--nav-text);
        transition: 0.4s;
    }
}

@media screen and (min-width: 993px) {
    .menu-toggle {
        display: none;
    }
}

/* --- GLOBAL CURSOR --- */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-active .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-active .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid #fff;
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: auto; }
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: rgba(18, 18, 18, 0.95); /* Solid dark background to hide text behind it */
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    z-index: 9999;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Subtle shadow */
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: var(--accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(18, 18, 18, 0.95);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 11px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    padding: 0 20px 80px 20px;
    background-color: #fbfbfd;
    display: flex;
    justify-content: center;
}

.newsletter-container {
    max-width: 800px;
    width: 100%;
    border: 1px solid var(--border);
    padding: 50px;
    background-color: transparent;
}

.newsletter-heading {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.newsletter-subheading {
    font-family: var(--font-body);
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #111;
    border-right: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: #111;
    background: transparent;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.newsletter-input::placeholder {
    color: #888;
    text-transform: lowercase;
}

.newsletter-input:focus {
    box-shadow: inset 0 0 0 1px #111;
}

.newsletter-btn {
    height: 50px;
    padding: 0 30px;
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.newsletter-btn:hover {
    background-color: #222;
}

.newsletter-btn:active {
    transform: scale(0.98);
}

/* Mobile Responsiveness for Newsletter */
@media (max-width: 768px) {
    .newsletter-container {
        padding: 30px 20px;
    }
    
    .newsletter-heading {
        font-size: 22px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-right: 1px solid #111;
    }
    
    .newsletter-btn {
        margin-top: 10px;
        width: 100%;
    }
}