/* Popup Overlay */
#enquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#enquiry-popup-overlay.show {
    display: flex;
    opacity: 1;
}

/* Popup Container */
.popup-container {
    background: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 450px;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#enquiry-popup-overlay.show .popup-container {
    transform: translateY(0);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.popup-close:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

/* Form Styles */
.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.popup-form .form-group {
    margin-bottom: 1.25rem;
}

.popup-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0.4rem;
}

.popup-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #fff;
}

.popup-form .form-control:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.popup-submit {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(255, 107, 0, 0.3);
    margin-top: 0.5rem;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(255, 107, 0, 0.4);
}

.popup-submit:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
    .popup-container {
        padding: 1.5rem;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }
}