﻿.enquiry-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
}

.popup-content {
    background: #fff;
    width: 95%;
    max-width: 500px;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    animation: popupAnimate 0.4s ease;
}

/* Animation */
@keyframes popupAnimate {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

/* Header */
.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

    .popup-header h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111;
    }

    .popup-header p {
        color: #666;
        font-size: 15px;
    }

/* Form */
.form-group {
    margin-bottom: 18px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        outline: none;
        font-size: 15px;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0d6efd;
        }

/* Character Count */
#msgCount {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
    text-align: right;
}

/* Button */
.popup-btn {
    width: 100%;
    background: #14b1bb;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

    .popup-btn:hover {
        background: #14b1bb;
    }

/* Responsive */
@media (max-width:576px) {

    .popup-content {
        padding: 25px;
        margin-top: 20%;
    }

    .popup-header h3 {
        font-size: 22px;
    }
}
