/* Contact Page Premium Styles */

.contact-section {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.contact-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-header {
    background: #ffffff;
    padding-bottom: 20px;
}

.contact-title {
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}

.form-control {
    background-color: #f8f9fa;
    border: 2px solid #f1f3f5;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: #e03a3c;
    /* Brand Red */
    box-shadow: 0 0 0 4px rgba(224, 58, 60, 0.1);
}

.form-label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.btn-submit {
    background: linear-gradient(45deg, #e03a3c, #ff6b6b);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    color: white;
    box-shadow: 0 10px 20px rgba(224, 58, 60, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #c92a2c, #fa5252);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(224, 58, 60, 0.4);
    color: white;
}

.btn-submit:active {
    transform: translateY(1px);
}

/* Floating labels or icons could be added here */
.input-group-text {
    background: transparent;
    border: none;
}