/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Inquiry Form */
#contactForm {
    transition: all 0.3s ease;
}

#contactForm .form-control,
#contactForm .form-select {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    border-color: #388e3c;
    box-shadow: 0 0 0 0.2rem rgba(56, 142, 60, 0.25);
}

#contactForm label {
    margin-bottom: 0.5rem;
}

#contactForm .form-text {
    color: #666;
    font-size: 0.875rem;
}

#contactForm .btn-success {
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#contactForm .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(46, 125, 50, 0.4);
}

/* Email validation styling */
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Custom Alert Modal Styling */
#alertModal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

#alertModal .modal-body {
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
}

#alertIcon {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66bb6a, #43a047);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 187, 106, 0.4);
}

.success-icon i {
    color: white;
    font-size: 2.5rem;
}

.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef5350, #e53935);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(239, 83, 80, 0.4);
}

.error-icon i {
    color: white;
    font-size: 2.5rem;
}

/* Contact inquiry section background */
.inquiry-section-bg {
    background: #f5f5f0;
}
