/* Page: help-center.php */
.help-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.help-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.help-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 40px;
}

.help-search {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.help-search input {
    width: 100%;
    padding: 20px 60px 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.help-search i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-gray-400);
}

.help-quick-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.help-quick-link {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.help-quick-link:hover {
    background: white;
    color: var(--color-primary);
}

.help-content {
    padding: 80px 0;
    background: var(--color-gray-50);
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.help-category-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.help-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.help-category-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-gray-900);
}

.help-category-card p {
    color: var(--color-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.help-category-links {
    list-style: none;
    padding: 0;
}

.help-category-links li {
    margin-bottom: 10px;
}

.help-category-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.help-category-links a:hover {
    transform: translateX(5px);
    color: var(--color-secondary);
}

.help-category-links i {
    margin-right: 8px;
    font-size: 12px;
}

/* Detailed Guides Section */
.guides-section {
    background: white;
    padding: 80px 0;
}

.guides-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-gray-900);
}

.guides-section > .container > p {
    text-align: center;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.guide-item {
    background: var(--color-gray-50);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 5px solid var(--color-primary);
}

.guide-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-gray-900);
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-item h3 i {
    color: var(--color-primary);
}

.guide-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--color-gray-800);
}

.guide-item p, .guide-item li {
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.guide-item ul, .guide-item ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.guide-item .step-list {
    counter-reset: step-counter;
    list-style: none;
    margin-left: 0;
}

.guide-item .step-list li {
    counter-increment: step-counter;
    padding-left: 50px;
    position: relative;
    margin-bottom: 20px;
}

.guide-item .step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.info-box {
    background: #EEF7FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.info-box.warning {
    background: #FEF3C7;
    border-color: #FCD34D;
}

.info-box.success {
    background: #D1FAE5;
    border-color: #6EE7B7;
}

.info-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box.warning h5 { color: #92400E; }
.info-box.success h5 { color: #065F46; }
.info-box h5 { color: #1E40AF; }

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-gray-900);
}

.faq-category-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary-light);
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-gray-900);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-gray-50);
}

.faq-question i {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--color-gray-700);
    line-height: 1.8;
}

.faq-answer.active {
    padding: 0 30px 24px;
    max-height: 1000px;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Related Pages */
.related-pages {
    background: var(--color-gray-900);
    padding: 60px 0;
}

.related-pages h3 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.related-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.related-page-link {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.related-page-link:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

.related-page-link i {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.related-page-link span {
    font-weight: 600;
}

/* Contact Help */
.contact-help {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 16px;
    margin-top: 60px;
}

.contact-help h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-help p {
    color: var(--color-gray-600);
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons a {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary-help {
    background: var(--color-primary);
    color: white;
}

.btn-primary-help:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-outline-help {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline-help:hover {
    background: var(--color-primary);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

@media (max-width: 768px) {
    .help-hero h1 { font-size: 32px; }
    .help-hero p { font-size: 16px; }
    .help-search input { padding: 16px 20px 16px 50px; }
    .help-categories { grid-template-columns: 1fr; }
    .guide-item { padding: 25px; }
    .faq-question { padding: 18px 20px; font-size: 16px; }
}
