/* SECTION */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* HEADER */
.contact-header .section-label {
    color: #10b981;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-header .section-heading {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
}

.contact-header .section-text {
    color: #6c757d;
}

/* CARD */
.contact-card {
    max-width: 700px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INPUTS */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

/* BUTTON */
.contact-btn {
    background: #0d6efd;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #0b5ed7;
}

/* ALERT */
.alert {
    border-radius: 8px;
    margin-bottom: 20px;
}