.aims-enquiry-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.aims-enquiry-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.aims-enquiry-form .form-group {
    flex: 1;
    margin-bottom: 15px;
}

.aims-enquiry-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.aims-enquiry-form input,
.aims-enquiry-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.aims-enquiry-form button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.aims-enquiry-form button:hover {
    background: #e55a00;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#aims-exit-intent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  
    z-index: 9999;
}

.exit-intent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.exit-intent-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 25px;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;      /* smaller than before */
    max-height: 80vh;      /* never taller than 80% of screen */
    overflow-y: auto;      /* scroll if content is too tall */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.exit-intent-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.exit-intent-content h3 {
    font-size: 20px;
    margin-top: 0;
    color: #ff6600;
}

.exit-intent-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.exit-intent-content .form-group {
    margin-bottom: 15px;
}

.exit-intent-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.exit-intent-content input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

@media (max-width: 780px) {
    .exit-intent-content {
        width: 95%;
        padding: 20px;
        max-width: 340px;  /* even smaller popup */
    }
    .exit-intent-content h3 {
        font-size: 18px;
    }
}

.aims-no-scroll {
    overflow: hidden;
}
