/* Luxury Gold Accent */
:root {
    --primary-color: #c8a97e;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-text: #fff;
    --background: #fff;
    --section-bg: #f9f9f9;
    --luxury-gold: #d4af37;
}

.share-dropdown {
    display: none;
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 9999;
}

/* Mobile background image */
        @media screen and (max-width: 768px) {
            #v{
                font-size: 13px;
            }
            #h{
                font-size: 35px;
            }
        }

.share-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.share-dropdown a:hover {
    background: #f5f5f5;
}

.share-dropdown.show {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 200px;
}
.share-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin: 5px 0;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}
.share-menu a:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}
.share-menu i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}
.share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(3px);
}
.share-menu a i.fa-whatsapp { color: #25D366; }
.share-menu a i.fa-facebook { color: #1877F2; }
.share-menu a i.fa-twitter { color: #1DA1F2; }
.share-menu a i.fa-linkedin { color: #0A66C2; }
.share-menu a i.fa-telegram { color: #0088cc; }
.share-menu a i.fa-envelope { color: #EA4335; }
.share-menu a i.fa-link { color: #c8a97e; }

        /* QR Code Styles */
        .qr-code {
            margin-top: 25px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }

        .qr-code img {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        /* Desktop QR Code Position */
        @media screen and (min-width: 1024px) {
            .qr-code {
                margin-top: 0px;
                margin-left: -175px;
            }
            .social-links {
                margin-left: 20px;
            }
        }

        /* share in fotter */
        

        .share-dropdown {
            display: none;
            position: absolute;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px;
            z-index: 9999;
        }

        .share-dropdown a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            color: #333;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .share-dropdown a:hover {
            background: #f5f5f5;
        }

        .share-dropdown.show {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .share-menu {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            z-index: 1000;
            min-width: 200px;
        }
        .share-menu a {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            margin: 5px 0;
            color: #333;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        .share-menu a:hover {
            background: #f5f5f5;
            transform: translateX(5px);
        }
        .share-menu i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            font-size: 16px;
        }
        .share-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            backdrop-filter: blur(3px);
        }
        .share-menu a i.fa-whatsapp { color: #25D366; }
        .share-menu a i.fa-facebook { color: #1877F2; }
        .share-menu a i.fa-twitter { color: #1DA1F2; }
        .share-menu a i.fa-linkedin { color: #0A66C2; }
        .share-menu a i.fa-telegram { color: #0088cc; }
        .share-menu a i.fa-envelope { color: #EA4335; }
        .share-menu a i.fa-link { color: #c8a97e; }

/* Updated Navigation Styles */
.main-nav {
    position: fixed;
    top: 15;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 1000;
    height: 80px;
    transition: all 0.3s ease-in-out;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0);
}

.main-nav.nav-hidden {
    transform: translateY(-100%);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    align-items: center;
}

.brand-logo {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    height: 50px;
    width: auto;
}

.dropdown {
    grid-column: 3;
    justify-self: end;
}

.mobile-trigger {
    display: none;
}

.menu-btn {
    background: #ffffff00;
    border: none;
    font-size: 25px;
    color: #c8a97e;
    cursor: pointer;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.4s ease;
    border-radius: 3px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1.2px;
}

.menu-btn:hover {
    color: #e3c4a8;
    text-shadow: 0 0 10px rgba(200, 169, 126, 0.3);
    transform: translateY(-2px);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(200, 169, 126, 0.2);
    border-radius: 8px;
    padding: 12px 0;
    z-index: 1000;
    border: 1px solid rgba(200, 169, 126, 0.1);
    margin-top: 5px;
    animation: fadeInMenu 0.3s ease-out;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
}

.menu-group {
    padding: 6px 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

.menu-group:last-child {
    border-bottom: none;
}

.group-title {
    padding: 6px 16px;
    font-weight: 500;
    color: #c8a97e;
    font-size: 11px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dropdown-content a {
    display: block;
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.dropdown-content a:hover {
    background: rgba(200, 169, 126, 0.15);
    color: #c8a97e;
    padding-left: 20px;
}

.dropdown-content a.active {
    color: #c8a97e;
    background: rgba(200, 169, 126, 0.15);
    font-weight: 500;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .main-nav {
        height: 80px;
    }

    .nav-wrapper {
        grid-template-columns: 80px 1fr 80px;
        padding: 0 20px;
    }
    .main-nav {
    position: fixed;
    top: 15;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 1000;
    height: 80px;
    transition: all 0.3s ease-in-out;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0);
}

.main-nav.nav-hidden {
    transform: translateY(-100%);
}

    .brand-logo img {
        height: 50px;
    }

    .menu-btn {
        font-size: 25px;
        padding: 6px 10px;
    }

    .dropdown-content {
        position: fixed;
        top: 80px;
        right: 20px;
        min-width: 220px;
        max-width: calc(100% - 40px);
        padding: 12px 0;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .group-title {
        font-size: 11px;
        padding: 6px 16px;
        color: #c8a97e;
    }

    .dropdown-content a {
        padding: 6px 16px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }

    .dropdown-content a:hover {
        background: rgba(200, 169, 126, 0.15);
        color: #c8a97e;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-content {
        display: block;
        animation: fadeInMenu 0.3s ease-out;
    }
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust hero section for new navbar */
.info-hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
}

/* Animation for mobile menu */
@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideOut {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}


.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 1rem 0;
    border-radius: 16px;
}

.navbar.navbar-hidden {
    transform: translate(-50%, -100px);
    opacity: 0;
    pointer-events: none;
    box-shadow: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.navbar.scrolled {
    top: 20px;
    background: rgba(255, 255, 255, 0);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); */
    padding: 1rem 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 60px; /* Ensure there's space for the logo */
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-imgpl {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateX(-50%) scale(1.08);
}

/* Override the second hover effect for modern browsers */
@media (min-width: 768px) {
    .logo:hover .logo-img {
        transform: none; /* Prevent double scaling */
    }
}

.logo:hover .logo-img {
    filter: brightness(1.2) drop-shadow(0 0 3px rgba(200, 169, 126, 0.3));
}

.logo:hover .logo-imgpl {
    filter: brightness(1.2) drop-shadow(0 0 3px rgba(200, 169, 126, 0.3));
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    /* margin: 0; */
    margin-left: 5px;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Styles */
.footer {
    background: var(--background);
    color: var(--text-color);
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.footer-section ul a:hover {
    color: var(--primary-color);
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 12px;
    }
    
    .navbar.scrolled {
        top: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.8rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo:hover {
        transform: translateX(-50%) scale(1.08);
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        gap: 2rem;
    }
}

.about-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border: none;
}

.youtube-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border: none;
}

.youtube-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh; /* 16:9 aspect ratio */
    height: 56.25vw; /* 16:9 aspect ratio */
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
    pointer-events: none;
    border: none;
    outline: none;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }

    .about-hero p {
        font-size: 1.2rem;
    }
    
    .video-background {
        display: none;
    }
    
    .about-hero {
        background-position: center center;
        background-size: cover;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }
} 


        /* Luxury Global Styles */
        
        
        /* Luxury Colors */
        :root {
            --gold-primary: #c79d45;
            --gold-light: #dfcc9a;
            --gold-dark: #a37e2c;
            --burgundy: #c79d45;
            --charcoal: #222222;
            --cream: #f8f5f0;
        }
        
        /* Luxury Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        h1 {
            font-size: 48px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 36px;
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
        }
        
        p {
            font-family: 'Poppins', sans-serif;
            line-height: 1.8;
        }
        
        /* Luxury Buttons */
        .btn-primary {
            background-color: var(--burgundy);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 3px;
            font-family: 'Playfair Display', serif;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(139,0,0,0.2);
        }
        
        .btn-primary:hover:before {
            left: 100%;
        }
        
        /* Luxury Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0);
            /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
            padding: 15px 0;
        }
        
        .logo-img {
            transition: transform 0.3s ease;
        }
        
        .logo:hover .logo-img {    /* Add subtle effect instead of transform */    filter: brightness(1.1);    transition: filter 0.3s ease;}
        
        /* Luxury Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-subtitle {
            color: var(--gold-primary);
            font-family: 'Playfair Display', serif;
            font-style: italic;
            display: block;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            margin-top: 0;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 80px;
            height: 2px;
            background: var(--gold-primary);
            transform: translateX(-50%);
        }
        
        /* Luxury Cards */
        .property-card, .feature-card, .testimonial-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .property-card:hover, .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .property-image {
            position: relative;
            overflow: hidden;
        }
        
        .property-image img {
            transition: transform 0.5s ease;
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.1);
        }
        
        .property-overlay {
            background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
        }
        
        .property-price {
            background-color: var(--burgundy);
            color: white;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 3px;
            position: relative;
        }
        
        .property-price:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid var(--gold-light);
            border-radius: 3px;
            opacity: 0.5;
        }
        
        .property-info {
            padding: 25px;
            position: relative;
        }
        
        .property-info h3 {
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--charcoal);
        }
        
        .property-location {
            color: var(--burgundy);
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .property-features {
            display: flex;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid rgba(0,0,0,0.07);
        }
        
        .property-features span {
            color: var(--charcoal);
            font-size: 14px;
        }
        
        .property-features span i {
            color: var(--gold-primary);
            margin-right: 5px;
        }
        
        /* Luxury Feature Cards */
        .feature-card {
            padding: 30px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(139,0,0,0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--burgundy);
            font-size: 32px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            background-color: var(--burgundy);
            color: white;
            transform: rotateY(180deg);
        }
        
        /* Luxury Testimonials */
        .testimonial-card {
            padding: 30px;
            background-color: white;
            position: relative;
        }
        
        .testimonial-content {
            position: relative;
            padding-left: 30px;
            margin-bottom: 20px;
        }
        
        .testimonial-content i {
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-light);
            font-size: 24px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-right: 15px;
        }
        
        /* Luxury Form Elements */
        .contact-form input,
        .contact-form textarea {
            background-color: white;
            border: 1px solid rgba(0,0,0,0.1);
            padding: 15px;
            width: 100%;
            margin-bottom: 20px;
            border-radius: 3px;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            box-shadow: 0 0 0 2px rgba(139,0,0,0.2);
            border-color: var(--burgundy);
            outline: none;
        }
        
        /* .info-hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
         */
        .info-hero .container {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
        }
        
        .info-hero h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-family: 'Playfair Display', serif;
        }
        
        .info-hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        /* Hero Section Enhancement */
        .about-hero {
            position: relative;
            overflow: hidden;
        }
        
        .about-hero:before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 1px solid rgba(255,255,255,0.3);
            z-index: 1;
            pointer-events: none;
        }
        
        /* Page Transitions */
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Luxury Hover Effects */
        .hover-gold {
            transition: color 0.3s ease;
        }
        
        .hover-gold:hover {
            color: var(--gold-primary);
        }
        
        /* Scroll Animations Enhancement */
        [data-aos] {
            pointer-events: none;
        }
        
        [data-aos].aos-animate {
            pointer-events: auto;
        }
        
        /* Dropdown Menu Styles - Luxury Rich Theme */
        .dropdown {
            position: relative;
            display: inline-block;
            margin-left: auto;
        }
        
        .dropdown-toggle {
            background: none;
            border: none;
            color: #c79d45;
            font-size: 28px;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
        }
        
        .dropdown-toggle:hover {
            transform: scale(1.1);
        }
        
        .dropdown-menu {
            position: absolute;
            right: 0;
            top: 100%;
            width: 320px;
            background-color: #fff;
            box-shadow: 0 15px 40px rgba(0,0,0,0.18);
            border: 1px solid #e0e0e0;
            border-top: 3px solid #c79d45;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
            padding: 25px 0;
            border-radius: 4px;
            background-image: linear-gradient(to bottom, #fff, #f9f9f9);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .dropdown-menu:before {
            content: '';
            position: absolute;
            top: -10px;
            right: 20px;
            width: 20px;
            height: 20px;
            background: #fff;
            transform: rotate(45deg);
            border-top: 1px solid #e0e0e0;
            border-left: 1px solid #e0e0e0;
        }
        
        .dropdown-menu:after {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(139,0,0,0.3), transparent);
        }
        
        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            list-style: none;
            margin: 8px 0;
        }
        
        .dropdown-menu li a {
            color: #333;
            text-decoration: none;
            padding: 16px 25px;
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 18px;
            letter-spacing: 0.5px;
        }
        
        .dropdown-menu li a i {
            margin-right: 18px;
            color: #c79d45;
            font-size: 22px;
            width: 24px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .dropdown-menu li a:hover {
            background-color: #f9f9f9;
            color: #c79d45;
            padding-left: 30px;
        }
        
        .dropdown-menu li a:hover i {
            transform: scale(1.2);
            color: #c79d45;
        }
        
        .dropdown-menu li a.active {
            font-weight: 600;
            color: #c79d45;
            background-color: rgba(139,0,0,0.05);
            border-left: 3px solid #c79d45;
        }
        
        .dropdown-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(139,0,0,0.2), transparent);
            margin: 20px 15px;
        }
        
        .menu-header {
            text-align: center;
            padding: 0 25px 20px;
            margin-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .menu-header h3 {
            font-family: 'Playfair Display', serif;
            color: #c79d45;
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            padding: 20px 0 5px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #f5f5f5;
            color: #333;
            margin: 0 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .social-icons a i {
            font-size: 20px;
        }
        
        .social-icons a:hover {
            background-color: #c79d45;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(139,0,0,0.2);
        }

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--luxury-gold, #d4af37);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top:hover {
    background-color: var(--gold-dark, #a37e2c);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
    