/* Support Hero */
.support-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

/* Support Section */
.support-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Contact Card */
.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.contact-card .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-card .form-control,
.contact-card .form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

/* Submit Button */
.contact-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card p {
    color: #718096;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .support-hero {
        padding: 40px 0;
    }

    .support-hero h1 {
        font-size: 2rem;
    }

    .support-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 2rem;
    }
}
