    /* ===== LAYOUT COMPONENTS - FIXED VERSION ===== */

    /* HEADER - COMPLETELY FIXED */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0.5rem var(--side-padding);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 2000;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .main-header.scrolled {
        padding: 0.3rem var(--side-padding);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    /* Logo - FIXED SIZING */
    .nav-logo a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .nav-logo img {
        width: 50px !important;
        height: 50px !important;
        object-fit: contain;
        flex-shrink: 0;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .logo-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--color-black);
        font-family: var(--font-heading);
        letter-spacing: 1px;
        line-height: 1;
    }

    .logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 2px;
        color: var(--color-gold);
        font-family: var(--font-accent);
        text-transform: uppercase;
        line-height: 1;
        margin-top: 2px;
    }

    /* Desktop Navigation */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 1.15rem;
    }

    .nav-link {
        color: var(--color-text);
        font-family: var(--font-accent);
        font-weight: 500;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        padding: 0.5rem 0;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: var(--color-gold);
    }

    .nav-menu .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-gold);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-link.active {
        color: var(--color-gold);
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--color-text);
        cursor: pointer;
        display: none;
        padding: 0.5rem;
        z-index: 2001;
    }

    /* MOBILE MENU - FIXED IMPLEMENTATION */
    .mobile-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 100%;
        max-width: 320px;
        background: var(--color-white);
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
        z-index: 2500;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-content {
        padding: 4rem 1.5rem 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .mobile-menu-content > * {
        flex-shrink: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: none;
        border: none;
        font-size: 1.35rem;
        color: var(--color-text);
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;
        z-index: 2501;
    }

    .mobile-menu-close:hover {
        color: var(--color-gold);
    }

    .mobile-nav-link {
        font-size: 0.85rem;
        color: var(--color-text);
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        font-family: var(--font-accent);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: var(--color-gold);
        padding-left: 10px;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 2400;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent scroll when menu is open */
    body.no-scroll {
        overflow: hidden;
    }

    /* FOOTER */
    .main-footer {
        background: var(--color-black);
        color: var(--color-white);
        padding-top: var(--space-xl);
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
        padding-bottom: var(--space-xl);
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer-logo img {
        width: 60px !important;
        height: 60px !important;
        object-fit: contain;
        margin-bottom: var(--space-sm);
    }

    .footer-col p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .footer-title {
        color: var(--color-gold);
        font-size: 0.9rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: var(--space-sm);
        font-family: var(--font-accent);
        font-weight: 600;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1.5rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: var(--color-gold);
        padding-left: 5px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .contact-row {
        display: flex;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .contact-row i {
        color: var(--color-gold);
        margin-top: 5px;
        font-size: 1.1rem;
    }

    .contact-row div {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-row a {
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease;
    }

    .contact-row a:hover {
        color: var(--color-gold);
    }

    address {
        font-style: normal;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
    }

    .social-links {
        display: flex;
        gap: var(--space-sm);
        margin-top: var(--space-sm);
    }

    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-round);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .social-link:hover {
        background: var(--color-gold);
        color: var(--color-black);
        transform: translateY(-3px);
    }

    .footer-bottom {
        padding: var(--space-md) 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
    }

    .copyright-subtitle {
        margin-top: 0.5rem;
        letter-spacing: 1px;
        font-size: 0.8rem;
        opacity: 0.6;
        text-transform: uppercase;
    }

    .developer-credit {
        margin-top: 0.5rem;
        font-size: 0.88rem;
        opacity: 0.85;
    }

    .developer-credit a {
        color: var(--color-gold);
        text-decoration: none;
        transition: var(--transition-fast);
        font-weight: 500;
    }

    .developer-credit a:hover {
        color: var(--color-white);
        text-decoration: underline;
    }

    /* GRID SYSTEM */
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }

    /* RESPONSIVE LAYOUT */
    @media (max-width: 1200px) {
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .nav-menu {
            gap: 0.8rem;
        }
        
        .nav-link {
            font-size: 0.72rem;
        }
        
        .nav-menu .btn-small {
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
        }
    }

    @media (max-width: 992px) {
        .grid-3 {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .main-header {
            padding: 0.5rem var(--side-padding);
        }
        
        .nav-menu {
            display: none;
        }
        
        .mobile-menu-btn {
            display: block;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }
        
        .logo-title {
            font-size: 0.75rem;
        }
        
        .logo-subtitle {
            font-size: 0.5rem;
        }
        
        .nav-logo img {
            width: 50px !important;
            height: 50px !important;
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: var(--space-xl);
        }
        
        .grid-2,
        .grid-3,
        .grid-4 {
            grid-template-columns: 1fr;
        }
    }