/* Contact Form Input Styling */
.form-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 12px;
    border-radius: 10px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(0, 194, 255, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 194, 255, 0.25) !important;
    color: white !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-label {
    color: white !important;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Fix for Select Options in Dark Mode */
select.form-control option {
    background-color: #1a1a1a !important;
    /* Dark background for options */
    color: white !important;
    /* White text */
    padding: 10px;
}