/* ============================================
   SUPPORT PAGE STYLES
   Path: wwwroot/content/css/support.css
   Version: 1
   Last Updated: 2026-04-04
   Signatur/Sign: Lillehest - Team Stallion
   ============================================ */

/* --- Hero Section --- */
.support-hero-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 80px 0 60px;
}

.support-hero-wrapper h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.support-channels-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.support-channels-subtitle {
    font-size: 1.05rem;
    color: #666;
}

.support-channel-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.support-channel-icon {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 16px;
}

.support-channel-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.support-channel-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.support-channel-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.support-channel-link:hover {
    color: #0d47a1;
}

/* --- Getting Started Section --- */
.support-getting-started-section {
    padding: 80px 0;
    background: #fff;
}

.support-getting-started-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.support-step-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    position: relative;
}

.support-step-number {
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.support-step-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.support-step-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* --- CTA Section --- */
.support-cta-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    padding: 80px 0;
}

.support-cta-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.support-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.support-cta-buttons .btn-primary {
    background: #fff;
    color: #1a73e8;
    border: none;
    font-weight: 600;
}

.support-cta-buttons .btn-primary:hover {
    background: #e8e8e8;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .support-hero-wrapper h1 { font-size: 2.2rem; }
}

@media (max-width: 767px) {
    .support-hero-section { padding: 60px 0 40px; }
    .support-hero-wrapper h1 { font-size: 1.8rem; }
    .support-channels-section { padding: 60px 0; }
    .support-getting-started-section { padding: 60px 0; }
    .support-cta-section { padding: 60px 0; }
}
