/* Home Page Contact Form Styles */

.contact-form-container-home {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.form-header-home {
    background: linear-gradient(135deg, #2ea78f 0%, #1e8c73 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-body-home {
    padding: 30px;
}

.form-floating-home {
    margin-bottom: 20px;
}

.form-floating-home input,
.form-floating-home textarea,
.form-floating-home select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-floating-home input:focus,
.form-floating-home textarea:focus,
.form-floating-home select:focus {
    border-color: #2ea78f;
    box-shadow: 0 0 0 0.2rem rgba(46, 167, 143, 0.25);
}

.form-floating-home label {
    color: #6c757d;
}

.btn-submit-home {
    background: linear-gradient(135deg, #2ea78f 0%, #1e8c73 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    color: white;
}

.btn-submit-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 167, 143, 0.3);
    background: linear-gradient(135deg, #1e8c73 0%, #2ea78f 100%);
}

.contact-info-home {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info-item-home {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item-home:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.contact-info-icon-home {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ea78f 0%, #1e8c73 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 20px;
}

.alert-home {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.alert-success-home {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger-home {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.text-error-home {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-header-home {
        padding: 20px;
    }
    
    .form-body-home {
        padding: 20px;
    }
    
    .contact-info-home {
        padding: 20px;
        margin-top: 30px;
    }
    
    .contact-info-item-home {
        padding: 15px;
    }
    
    .contact-info-icon-home {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
