/* Support Pages Styles */

/* ===== SHARED SUPPORT STYLES ===== */

/* Hero Sections */
.support-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.support-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Content Sections */
.support-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.support-section {
    padding: 4rem 0;
}

.support-section:nth-child(even) {
    background: #ffffff;
}

.support-section:nth-child(odd) {
    background: #f8fafc;
}

/* Cards */
.support-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.support-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.support-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-card .btn-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.support-card .btn-link:hover {
    color: #2563eb;
}

/* Grid Layouts */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.support-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Search Bar */
.support-search {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.support-search input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.support-search input:focus {
    outline: none;
    border-color: #3b82f6;
}

.support-search::before {
    content: '🔍';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

/* Breadcrumbs */
.support-breadcrumbs {
    padding: 1rem 0;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #2563eb;
}

.breadcrumb-separator {
    color: #94a3b8;
}

/* Status Indicators */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.status-operational {
    background: #dcfce7;
    color: #166534;
}

.status-degraded {
    background: #fef3c7;
    color: #92400e;
}

.status-outage {
    background: #fecaca;
    color: #991b1b;
}

.status-maintenance {
    background: #e0e7ff;
    color: #3730a3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 2.5rem;
    }
    
    .support-hero p {
        font-size: 1.1rem;
    }
    
    .support-grid,
    .support-grid-2,
    .support-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 6rem 0 3rem;
    }
    
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .support-content,
    .support-section {
        padding: 2rem 0;
    }
    
    .support-card {
        padding: 1rem;
    }
}
