/* Service Inquiry Button Styles */
.pbmit-service-inquiry-btn {
    margin-top: 15px;
}

.pbmit-service-inquiry-btn .pbmit-btn {
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.pbmit-service-inquiry-btn .pbmit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.pbmit-btn-outline {
    background: transparent;
    border: 2px solid #243A7A;
    color: #243A7A;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.pbmit-btn-outline:hover {
    background: #243A7A;
    color: white;
}

.pbmit-btn-outline .pbmit-button-icon {
    margin-right: 8px;
}

/* Modal Backdrop */
.modal.show {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content Animation */
.modal-dialog {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Input Focus */
.modal-body input:focus,
.modal-body textarea:focus {
    border-color: #243A7A !important;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25) !important;
}

/* Success/Error Alerts */
.alert {
    border-radius: 8px;
    padding: 15px 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    border-color: #6ee7b7;
    color: #065f46;
}

.alert-danger {
    background-color: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pbmit-service-inquiry-btn .pbmit-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px !important;
    }
}
