
    /* 2026 LUXURY PANEL CSS */
    :root {
        --gold-accent: #7EB148;
        --panel-bg: #0E4D4A;
    }

    /* HIDDEN STATE: Panel is pushed 100% off-screen to the right */
    .enquiry-panel {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 100%;
        max-width: 450px;
        height: 100vh;
        background: var(--panel-bg);
        backdrop-filter: blur(50px); /* Liquid glass effect */
        border-left: 1px solid rgba(197, 160, 89, 0.2);
        z-index: 9999;
        padding: 60px 40px;
        transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        box-sizing: border-box;
   
    }

    /* REVEAL STATE */
    .enquiry-panel.active {
        right: 0;
    }

    .panel-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.8);
        opacity: 0;
        visibility: hidden;
        z-index: 9998;
        transition: opacity 0.4s ease;
    }

    .panel-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* FORM STYLING */
    .panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }

    .panel-header h3 {
        font-family: 'Syne', sans-serif;
        color: var(--gold-accent);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .close-btn {
        background: none; border: none;
        color: #fff; font-size: 2rem;
        cursor: pointer; opacity: 0.5;
        transition: opacity 0.3s;
    }
    .close-btn:hover { opacity: 1; }

    .input-group { margin-bottom: 25px; text-align: left; }
    
    .input-group label {
        display: block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.7rem;
        color: var(--gold-accent);
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .input-group input, .input-group textarea {
        width: 100%;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 4px;
        padding: 15px;
        color: #fff;
        font-family: 'Syne', sans-serif;
        box-sizing: border-box;
    }

    .btn-submit {
        width: 100%;
        padding: 20px;
        background: var(--gold-accent);
        color: #000;
        font-weight: 800;
        border: none;
        cursor: pointer;
        font-family: 'JetBrains Mono', monospace;
        transition: transform 0.2s, background 0.3s;
    }

    .btn-submit:hover {
        background: #fff;
        transform: translateY(-2px);
    }
