/* Custom styling for Contact Form 7 submit buttons */
/* Make buttons more visible and prominent */

.wpcf7-form .wpcf7-submit {
    background-color: #ff6b35 !important; /* Bright orange */
    color: #ffffff !important;
    border: 2px solid #ff6b35 !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: #ff8c42 !important; /* Lighter orange on hover */
    border-color: #ff8c42 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3) !important;
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure button is visible even with existing classes */
.btn.wpcf7-submit {
    background-color: #ff6b35 !important;
    color: #ffffff !important;
}
