/* Send Message CSS */
body {
    background-color: #f8f9fa;
}

.contact-card {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.card-body {
    padding: 2.5rem;
}

h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #1e5ce7;
    margin: 10px auto 20px;
    border-radius: 2px;
}

.form-label {
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-color: #e0e0e0;
    background-color: #fff;
}

.form-control:focus {
    box-shadow: none;
    border-color: #1e5ce7;
}

textarea.form-control {
    min-height: 120px;
    resize: none;
}

/* File Upload Styling */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px dashed #ced4da;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.file-upload-label:hover {
    background-color: #eaebec;
}

/* Send Button */
.btn-send {
    background-color: #1e5ce7;
    border-color: #1e5ce7;
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-send:hover, .btn-send:focus {
    background-color: #1a4fd0;
    border-color: #1a4fd0;
    color: white;
    box-shadow: 0 4px 10px rgba(30, 92, 231, 0.3);
}

.privacy-note {
    font-size: 0.8rem;
    color: #9da3a8;
    margin-bottom: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .contact-card {
        margin: 0 15px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}
