/* Support Hub Styles */

/* Main Cleanup */
.support-hub-main {
    padding-top: 120px;
    /* Spacer for fixed header */
    padding-bottom: 128px;
    background-color: #000;
    min-height: 100vh;
}

/* Hero Section */
.support-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.support-hero .text-desktop-title {
    font-size: 64px;
    /* Larger hero title */
    margin-bottom: 16px;
}

.support-hero .text-desktop-subtitle {
    margin-bottom: 48px;
    opacity: 0.6;
}

/* Search Input */
.support-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.support-search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
}

.support-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 16px 16px 48px;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease;
    outline: none;
}

.support-search-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.support-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Grid Layout */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Card */
.support-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    height: 240px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.support-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.support-card-icon {
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
}

.support-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-count {
    font-size: 13px;
    opacity: 0.4;
    margin-top: 16px;
}