    body {
        font-family: 'Montserrat', sans-serif;
        background-color: #f8f6f0;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Cormorant Garamond', serif;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0d2818;
    }
    ::-webkit-scrollbar-thumb {
        background: #2d6a4f;
        border-radius: 4px;
    }

    .glass-nav {
        background: rgba(13, 40, 24, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    img {
        width: 100%;
        height: auto;
    }
    .header-logo img, .footer-form-logo img {
        width: 237px;
        height: 67px;
        object-fit: contain;
    }

    /* FIXED HERO BANNER */
    .hero-banner {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        /* Fallback solid color */
        background-color: #0d2818;
        /* Gradient overlay as secondary background */
        background-image: linear-gradient(135deg, #0d2818 0%, #1a4d2e 50%, #0d2818 100%);
    }

    .hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.5;
        z-index: 1;
    }

    .hero-dark-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(13, 40, 24, 0.6) 0%, rgba(13, 40, 24, 0.4) 50%, rgba(13, 40, 24, 0.85) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        text-align: center;
        padding: 0 1rem;
        max-width: 900px;
        width: 100%;
    }

    .gold-text {
        color: #d4af37;
    }

    .btn-gold {
        background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
        color: #0d2818;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
        background: linear-gradient(135deg, #e4bf47 0%, #d4af37 100%);
    }

    .btn-outline-gold {
        border: 2px solid #d4af37;
        color: #d4af37;
        background: transparent;
        transition: all 0.3s ease;
    }

    .btn-outline-gold:hover {
        background: #d4af37;
        color: #0d2818;
        transform: translateY(-2px);
    }

    .section-title {
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    .card-luxury {
        background: white;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.4s ease;
    }

    .card-luxury:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(13, 40, 24, 0.15);
        border-color: rgba(212, 175, 55, 0.5);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #1a4d2e 0%, #2d6a4f 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d4af37;
        font-size: 1.5rem;
        margin: 0 auto 1.5rem;
        border: 2px solid rgba(212, 175, 55, 0.3);
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .gallery-item img {
        transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(13, 40, 24, 0.9) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .form-input {
        border: 1px solid rgba(212, 175, 55, 0.3);
        background: white;
        transition: all 0.3s ease;
    }

    .form-input:focus {
        border-color: #d4af37;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        outline: none;
    }

    .footer-bg {
        background: linear-gradient(135deg, #0d2818 0%, #1a4d2e 100%);
    }

        .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, #d4af37, #1a4d2e);
    }

    .timeline-dot {
        width: 20px;
        height: 20px;
        background: #d4af37;
        border: 4px solid #0d2818;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .value-card {
        background: white;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.4s ease;
    }

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(13, 40, 24, 0.15);
        border-color: rgba(212, 175, 55, 0.5);
    }

    .team-card {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .team-card img {
        transition: transform 0.6s ease;
    }

    .team-card:hover img {
        transform: scale(1.1);
    }

    .team-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(13, 40, 24, 0.95) 0%, transparent 100%);
        padding: 30px 20px 20px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .team-card:hover .team-overlay {
        transform: translateY(0);
        opacity: 1;
    }

    
    @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .shimmer-text {
            background: linear-gradient(90deg, #d4af37 0%, #f0e68c 50%, #d4af37 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 3s linear infinite;
        }

        .btn-gold {
            background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
            color: #0d2818;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
        }

        .btn-outline-gold {
            border: 2px solid #d4af37;
            color: #d4af37;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-outline-gold:hover {
            background: #d4af37;
            color: #0d2818;
        }

        .form-input {
            border: 1px solid rgba(212, 175, 55, 0.3);
            background: white;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
            outline: none;
        }

        .contact-card {
            background: white;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(13, 40, 24, 0.15);
            border-color: rgba(212, 175, 55, 0.5);
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #0d2818;
            color: #d4af37;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-btn:hover {
            background: #d4af37;
            color: #0d2818;
            border-color: #d4af37;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .map-container {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            border: 2px solid rgba(212, 175, 55, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .faq-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .faq-question {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: #d4af37;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding-bottom: 20px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-icon.rotate {
            transform: rotate(180deg);
        }




    

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    .floating {
        animation: float 6s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% { background-position: -200% center; }
        100% { background-position: 200% center; }
    }

    .shimmer-text {
        background: linear-gradient(90deg, #d4af37 0%, #f0e68c 50%, #d4af37 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s linear infinite;
    }