/* Support Page - Thalatta Design */

.support-header {
    text-align: center;
    margin-bottom: 3rem;
}

.support-header h1 {
    color: var(--thalatta-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.support-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.support-card .card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.support-card h2 {
    color: var(--thalatta-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Telegram Card */
.telegram-support {
    border-top: 4px solid #0088cc;
}

.telegram-support .card-icon {
    color: #0088cc;
}

/* Email Card */
.email-support {
    border-top: 4px solid var(--thalatta-turquoise);
}

.email-support .card-icon {
    color: var(--thalatta-turquoise);
}

/* Support Buttons */
.btn-support {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-telegram:hover {
    background: #006ba1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 136, 204, 0.3);
}

.btn-email {
    background: var(--thalatta-turquoise);
    color: white;
}

.btn-email:hover {
    background: var(--thalatta-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 180, 192, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .support-header h1 {
        font-size: 2rem;
    }

    .support-subtitle {
        font-size: 1.125rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-card {
        padding: 2rem;
    }

    .support-card .card-icon {
        font-size: 3rem;
    }
}
