    :root {
        /* Core Gold Colors */
        --white: white;
        --black: black;
        --primary: #d6a751;
        --primary-light: #f9e076;
        --primary-dark: #b8860b;
        --gold-highlight: #ffeb3b;

        /* Enhanced Gold Gradients */
        --second-primary: linear-gradient(135deg, #f9e076 0%, #d4af37 25%, #b8860b 50%, #d4af37 75%, #b8860b 100%);
        --gold-shimmer: linear-gradient(135deg, #fff9c4, #f9e076, #d4af37, #b8860b);
        --gold-radial: radial-gradient(circle at center, #fff9c4 0%, #f9e076 20%, #d4af37 60%, #b8860b 100%);
        --gold-metallic: linear-gradient(115deg, #ffeb3b 0%, #ffeb3b 10%, #d4af37 10%, #d4af37 40%, #b8860b 40%, #b8860b 60%, #d4af37 60%, #d4af37 90%, #ffeb3b 90%);

        /* Gold with Texture */
        --gold-textured: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 134, 11, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%23000" opacity="0.1" d="M0 0h100v100H0z"/><path fill="%23000" opacity="0.05" d="M20 20h60v60H20z"/></svg>');

        /* Background Colors */
        --dark-bg: #145f59;
        --dark-bg-light: #1a7a72;
        --dark-bg-dark: #0f4a45;

        /* Gray Scale */
        --light-gray: #f8f9fa;
        --medium-gray: #e9ecef;
        --dark-gray: #343a40;

        /* Animation Properties */
        --gold-animation-shimmer: shimmer 5s ease infinite;
        --gold-animation-metallic: metallic-shift 6s ease-in-out infinite;

        /* Background Sizes */
        --bg-size-large: 200% 200%;
        --bg-size-extra-large: 300% 300%;
    }

        /* Footer Styles */
        footer {
            background-color: var(--dark-bg) !important;
        }
        .footer-logo{
            width: 150px;
            height: 150;
        }

        .hover-gold:hover {
            color: var(--primary) !important;
            transition: color 0.3s ease;
        }

    /* Enhanced Logo Styles */
    .enhanced-logo {
        display: inline-flex;
        align-items: center;
        font-weight: 700;
        font-size: 1.5rem;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 8px;
        background: var(--gold-radial);
        background-size: var(--bg-size-large);
        animation: var(--gold-animation-shimmer);
        box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
        position: relative;
        overflow: hidden;
    }



    .logo-icon {
        background: var(--gold-metallic);
        color: var(--black);
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        position: relative;
        z-index: 2;
    }

    .logo-text {
        background: var(--second-primary);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        position: relative;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Social Links */
    .social-links a {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .social-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--gold-shimmer);
        transition: left 0.3s ease;
        z-index: -1;
    }

    .social-links a:hover {
        transform: translateY(-3px);
        color: var(--white) !important;
    }

    .social-links a:hover::before {
        left: 0;
    }

    /* Animations */
    @keyframes shimmer {
        0% {
            background-position: 0% 0%;
        }
        50% {
            background-position: 100% 100%;
        }
        100% {
            background-position: 0% 0%;
        }
    }

    @keyframes metallic-shift {
        0%, 100% {
            transform: translateX(-100%);
        }
        50% {
            transform: translateX(100%);
        }
    }

    /* Text Colors */
    .text-warning {
        color: var(--primary) !important;
    }

    .border-warning {
        border-color: var(--primary) !important;
    }

    .bg-dark {
        background-color: var(--dark-bg) !important;
    }

    /* Contact Info Enhancements */
    .contact-info p {
        transition: transform 0.2s ease;
    }

    .contact-info p:hover {
        transform: translateX(5px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .enhanced-logo {
            font-size: 1.25rem;
        }

        .logo-icon {
            width: 35px;
            height: 35px;
        }
    }
