:root {
    /* Original Brand Colors - Elevated */
    --color-cream: #F5F1EB;
    --color-warm-white: #FDFCFA;
    --color-sand: #E8DFD0;
    --color-earth: #8B7355;
    --color-deep-brown: #3D2B1F;
    --color-forest: #2C4A3E;
    --color-gold: #C9A959;
    --color-gold-light: #D4BC7B;
    --color-charcoal: #2A2A2A;
    --color-glass-bg: rgba(61, 43, 31, 0.65);
    --color-glass-border: rgba(201, 169, 89, 0.2);

    /* Typography */
    --font-display: 'Outfit', 'Cormorant Garamond', serif;
    --font-body: 'Inter', 'Montserrat', sans-serif;

    /* Animations & Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(201, 169, 89, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-warm-white);
    color: var(--color-charcoal);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
    border-radius: 16px;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-deep-brown);
}

.display-xl { font-size: clamp(3rem, 8vw, 6.5rem); letter-spacing: -0.02em; line-height: 1.1; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.01em; }
.display-md { font-size: clamp(2rem, 3vw, 3rem); }

.subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.subtitle::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

/* Navigation - Modernized */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--transition-smooth);
}

.nav.scrolled,
.nav.nav-solid {
    padding: 1rem 5%;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav.scrolled .nav-links a,
.nav.nav-solid .nav-links a { color: var(--color-deep-brown); }
.nav.scrolled .nav-logo,
.nav.nav-solid .nav-logo { color: var(--color-deep-brown); }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-warm-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-logo-img { height: 45px; width: auto; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-warm-white);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.4s var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Buttons & CTAs */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--color-gold);
    color: var(--color-deep-brown);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-warm-white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-deep-brown);
    transform: translateY(-2px);
}

/* Page Headers */
.page-header {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-deep-brown);
    color: var(--color-warm-white);
    padding-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

.page-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.page-header h1 {
    color: var(--color-warm-white);
    margin-bottom: 1rem;
    animation: fadeUp 0.8s ease forwards;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-sand);
    animation: fadeUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

/* Footer Social Buttons */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.fsoc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fsoc-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Brand Colors */
.fsoc-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.fsoc-instagram:hover {
    box-shadow: 0 8px 25px rgba(214, 36, 159, 0.55);
}

.fsoc-facebook {
    background: #1877F2;
}
.fsoc-facebook:hover {
    background: #1565C0;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.55);
}

.fsoc-whatsapp {
    background: #25D366;
}
.fsoc-whatsapp:hover {
    background: #1ebe5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

.fsoc-twitter {
    background: #000000;
}
.fsoc-twitter:hover {
    background: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* ================================================================
   FOOTER — Premium Luxury Redesign
   ================================================================ */

/* CTA Strip */
.footer-cta-strip {
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8922a 100%);
    padding: 3.5rem 5%;
}

.footer-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-cta-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(61, 43, 31, 0.7);
    text-transform: uppercase;
}

.footer-cta-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--color-deep-brown);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-deep-brown);
    color: var(--color-gold);
    padding: 1rem 2.25rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.35s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.footer-cta-btn:hover {
    background: transparent;
    color: var(--color-deep-brown);
    border-color: var(--color-deep-brown);
    gap: 1.25rem;
}

/* Footer Main Body */
.footer {
    background: #0e0e0e;
    color: var(--color-sand);
}

.footer-body {
    padding: 5rem 5% 4rem;
    border-bottom: 1px solid rgba(201, 169, 89, 0.12);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 3rem 4rem;
}

/* Brand Column */
.footer-logo-mark {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

/* ================================================================
   RESPONSIVE HEADER FOR MEDIUM SCREENS (LAPTOPS / SMALL DESKTOPS)
   ================================================================ */
@media (min-width: 1025px) and (max-width: 1350px) {
    .nav {
        padding: 1.25rem 3%;
    }
    .nav.scrolled,
    .nav.nav-solid {
        padding: 0.85rem 3%;
    }
    .nav-logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    .nav-logo-img {
        height: 38px;
    }
    .nav-links {
        gap: 1.15rem;
    }
    .nav-links a {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }
    .btn-outline, .btn-primary, .nav-book-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.78rem !important;
    }
}


.footer-brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.08em;
}

.footer-brand-sub {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: rgba(232, 223, 208, 0.5);
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-gold);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    color: rgba(232, 223, 208, 0.6);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.fsoc-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.06);
}

.fsoc-btn:hover {
    transform: translateY(-4px) scale(1.08);
    border-color: transparent;
}

.fsoc-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 8px 20px rgba(214,36,159,0.4); }
.fsoc-facebook:hover  { background: #1877F2; box-shadow: 0 8px 20px rgba(24,119,242,0.4); }
.fsoc-whatsapp:hover  { background: #25D366; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.fsoc-twitter:hover   { background: #1a1a1a; border-color: rgba(255,255,255,0.2); box-shadow: 0 8px 20px rgba(0,0,0,0.5); }

/* Link Columns */
.footer-col-heading {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 169, 89, 0.2);
    position: relative;
}

.footer-col-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 1px;
    background: var(--color-gold);
}

.footer-links ul, .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: rgba(232, 223, 208, 0.65);
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    padding: 0.15rem 0;
}

.footer-links a i {
    font-size: 0.55rem;
    color: var(--color-gold);
    opacity: 0.5;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-links a:hover i {
    opacity: 1;
}

/* Contact Column */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-contact-list li:last-child {
    border-bottom: none;
}

.fcontact-icon {
    width: 32px;
    height: 32px;
    background: rgba(201, 169, 89, 0.1);
    border: 1px solid rgba(201, 169, 89, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-contact-list span,
.footer-contact-list a {
    font-size: 0.85rem;
    color: rgba(232, 223, 208, 0.65);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: var(--color-gold);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.75rem 5%;
    background: #080808;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-credit {
    font-size: 0.8rem;
    color: rgba(232, 223, 208, 0.4);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(232, 223, 208, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
}

.footer-dot {
    color: rgba(201, 169, 89, 0.3);
    font-size: 0.9rem;
}

/* ================================================================
   FOOTER RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1; /* Full width on medium screens */
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-cta-strip {
        padding: 2.5rem 6%;
    }

    .footer-body {
        padding: 3rem 6% 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-cta-text h3 {
        font-size: 1.3rem;
    }

    .footer-logo-mark {
        flex-wrap: nowrap;
    }

    .footer-bottom {
        padding: 1.5rem 6%;
    }
}



/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
/* Responsive Base & Mobile Nav */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.nav-mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-warm-white);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Toggle color adjustment when nav is scrolled or solid */
.nav.scrolled .nav-mobile-toggle .bar,
.nav.nav-solid .nav-mobile-toggle .bar {
    background-color: var(--color-deep-brown);
}

.nav-mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--color-warm-white); /* keep white in drawer overlay */
}

.nav-mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--color-warm-white);
}

.mobile-only-btn {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .nav {
        padding: 1.25rem 6%;
    }
    .nav.scrolled,
    .nav.nav-solid {
        padding: 0.85rem 6%;
    }
    
    .nav-book-btn {
        display: none;
    }
    
    /* Hide brand text — show logo image only on small screens */
    .nav-logo span {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(61, 43, 31, 0.97);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(201, 169, 89, 0.15);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;  /* stretch so items fill full width */
        gap: 0;
        padding: 7rem 0 3rem;
        transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1005;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }

    /* Every top-level <li> in the drawer */
    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 89, 0.1);
    }
    
    .nav-links > li > a {
        color: var(--color-warm-white) !important;
        font-size: 1.05rem;
        font-weight: 500;
        width: 100%;
        display: block;
        text-align: center;
        padding: 1rem 2.5rem;
        letter-spacing: 0.15em;
    }
    
    /* Dropdown wrapper must also be full-width block */
    .nav-dropdown-wrapper {
        display: block;
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 1rem 2.5rem;
        color: var(--color-warm-white) !important;
        font-size: 1.05rem;
        font-weight: 500;
        letter-spacing: 0.15em;
    }
    
    .nav-links a::after {
        background: var(--color-gold);
    }
    
    .mobile-only-btn {
        display: block;
        width: 100%;
        margin-top: 1rem;
        padding: 0 2.5rem;
        border-bottom: none;
    }
    
    .mobile-only-btn .btn-primary {
        display: flex;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .page-header {
        height: 45vh;
        min-height: 320px;
    }
}

/* Floating Action Buttons (WhatsApp & Back to Top) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: var(--color-warm-white) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    top: 0;
    left: 0;
    animation: whatsapp-pulse 2s infinite;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-deep-brown);
    color: var(--color-warm-white);
    border: 1px solid var(--color-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-gold);
    color: var(--color-deep-brown);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Adjust button placement for small mobile screens so they don't overlap too much */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Dropdown Navigation Menu */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0; /* Align left edge of dropdown to parent and extend to the right */
    transform: translateY(15px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(201, 169, 89, 0.25);
    border-radius: 12px;
    padding: 0.25rem 0.5rem;
    list-style: none;
    display: flex;
    flex-direction: row; /* Horizontal alignment */
    align-items: center;
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
    white-space: nowrap;
}

/* Adjust dropdown background color on scrolled/solid headers */
.nav.scrolled .nav-dropdown-menu,
.nav.nav-solid .nav-dropdown-menu {
    background: var(--color-warm-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-dropdown-menu li {
    width: auto;
    padding: 0;
    margin: 0;
}

/* Separator between horizontal links on desktop */
@media (min-width: 1025px) {
    .nav-dropdown-menu li:not(:last-child) {
        border-right: 1px solid rgba(61, 43, 31, 0.15);
    }
    
    .nav.scrolled .nav-dropdown-menu li:not(:last-child),
    .nav.nav-solid .nav-dropdown-menu li:not(:last-child) {
        border-right: 1px solid rgba(61, 43, 31, 0.15);
    }
}

.nav-dropdown-menu a {
    color: var(--color-deep-brown) !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
    display: block;
    width: 100%;
    text-align: left;
    transition: all 0.25s ease;
    border-bottom: none !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--color-cream);
    color: var(--color-gold) !important;
}

.nav-dropdown-menu a.active {
    color: var(--color-gold) !important;
    font-weight: 600;
}

/* Desktop Hover states */
@media (min-width: 1025px) {
    .nav-dropdown-wrapper:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-dropdown-wrapper:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Mobile Dropdown Responsive styling */
@media (max-width: 1024px) {
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0,0,0,0.15) !important;
        border: none !important;
        border-top: 1px solid rgba(201, 169, 89, 0.15) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        transition: max-height 0.4s ease, padding 0.4s ease;
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
        white-space: normal;
    }

    .nav-dropdown-wrapper.open > .nav-dropdown-menu {
        max-height: 400px;
    }

    .nav-dropdown-wrapper.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 89, 0.08);
    }

    .nav-dropdown-menu a {
        color: rgba(232, 223, 208, 0.85) !important;
        font-size: 0.9rem !important;
        padding: 0.85rem 2.5rem !important;
        text-align: center;
        background: transparent;
        width: 100%;
        display: block;
        letter-spacing: 0.1em;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a.active {
        background: rgba(201, 169, 89, 0.1) !important;
        color: var(--color-gold) !important;
    }
}
