/* Help & Support Page Styles */

/* Help Hero */
.help-hero {
    background: linear-gradient(135deg, #00897b 0%, #004d40 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" stroke="%2380cbc4" stroke-width="1" fill="none" opacity="0.2"/><circle cx="50" cy="50" r="20" stroke="%2380cbc4" stroke-width="1" fill="none" opacity="0.2"/><circle cx="50" cy="50" r="10" stroke="%2380cbc4" stroke-width="1" fill="none" opacity="0.2"/></svg>'),
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="70" height="70" viewBox="0 0 70 70"><path d="M20,20 L50,20 L50,50 L20,50 Z" stroke="%2380cbc4" stroke-width="1" fill="none" opacity="0.2"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.help-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.help-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.help-hero-content h2 {
    font-size: 24px;
    font-weight: 500;
    color: #b2dfdb;
    margin-bottom: 25px;
}

.help-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-btn {
		display: flex;
		align-items: center;
		justify-content: center;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-btn:hover {
    background-color: var(--primary-dark);
}

/* Support Channels */
.support-channels {
    padding: 80px 0;
    background-color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.channel-card {
    background-color: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease both;
}

.channel-card:nth-child(1) { animation-delay: 0.1s; }
.channel-card:nth-child(2) { animation-delay: 0.2s; }
.channel-card:nth-child(3) { animation-delay: 0.3s; }
.channel-card:nth-child(4) { animation-delay: 0.4s; }

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.channel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.channel-icon i {
    font-size: 36px;
    color: #fff;
}

.channel-card:nth-child(1) .channel-icon {
    background: linear-gradient(135deg, #00796b, #00897b);
}

.channel-card:nth-child(2) .channel-icon {
    background: linear-gradient(135deg, #0288d1, #039be5);
}

.channel-card:nth-child(3) .channel-icon {
    background: linear-gradient(135deg, #43a047, #4caf50);
}

.channel-card:nth-child(4) .channel-icon {
    background: linear-gradient(135deg, #0277bd, #039be5);
}

.channel-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.channel-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.channel-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.channel-features span {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.channel-features span i {
    color: var(--secondary);
}

.btn-channel {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-channel:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQs */
.faqs {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.faq-tab {
    padding: 12px 25px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 30px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background-color: rgba(156, 39, 176, 0.1);
    color: var(--text);
}

.faq-tab.active {
    background-color: var(--primary);
    color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.faq-toggle {
    color: var(--text-secondary);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Security & Account Help */
.security-help {
    padding: 80px 0;
    background-color: var(--dark);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.security-card {
    background-color: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease both;
}

.security-card:nth-child(1) { animation-delay: 0.1s; }
.security-card:nth-child(2) { animation-delay: 0.2s; }
.security-card:nth-child(3) { animation-delay: 0.3s; }
.security-card:nth-child(4) { animation-delay: 0.4s; }

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00897b, #004d40);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.security-icon i {
    font-size: 30px;
    color: #fff;
}

.security-card:nth-child(2) .security-icon {
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
}

.security-card:nth-child(3) .security-icon {
    background: linear-gradient(135deg, #0288d1, #039be5);
}

.security-card:nth-child(4) .security-icon {
    background: linear-gradient(135deg, #f57c00, #ff9800);
}

.security-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.security-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.btn-security {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-security:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Help CTA */
.help-cta {
    background: linear-gradient(135deg, #00897b 0%, #004d40 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.help-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" stroke="%2380cbc4" stroke-width="1" fill="none" opacity="0.1"/><circle cx="50" cy="50" r="20" stroke="%2380cbc4" stroke-width="1" fill="none" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .help-hero-content h1 {
        font-size: 36px;
    }

    .help-hero-content h2 {
        font-size: 22px;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 576px) {
    .help-hero-content h1 {
        font-size: 32px;
    }

    .help-search {
        flex-direction: column;
        gap: 10px;
    }

    .search-input {
        border-radius: 30px;
    }

    .search-btn {
        border-radius: 30px;
        width: 100%;
    }

    .channels-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        flex-direction: column;
        gap: 10px;
    }

    .faq-tab {
        width: 100%;
    }

    .faq-question h3 {
        font-size: 16px;
    }
} 