/* Help Hero Section */
.help-hero {
    background: linear-gradient(135deg, var(--soft-blue) 0%, white 100%);
    padding: 80px 0;
    position: relative;
}

.help-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.help-hero-content .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Help Search Box */
.help-search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    border: 2px solid var(--light-blue);
    overflow: hidden;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    z-index: 10;
}

.help-search-input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    background: transparent;
    color: var(--dark-blue);
}

.help-search-input::placeholder {
    color: var(--text-gray);
}

/* Search Results Counter */
.search-results-info {
    text-align: center;
    margin: 20px 0;
    padding: 10px;
    background: var(--light-blue);
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 500;
    display: none;
}

/* Help Categories */
.help-categories {
    padding: 80px 0;
    background: white;
}

.help-category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-gray);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.help-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.help-category-card:hover::before {
    transform: scaleX(1);
}

.help-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-blue);
}

.help-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.help-category-card:hover .help-category-icon {
    transform: scale(1.1);
}

.help-category-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.help-category-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.help-category-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.help-category-link:hover {
    color: var(--secondary-blue);
    gap: 12px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--soft-blue);
}

.faq-filter {
    margin-bottom: 50px;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-gray);
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 25px;
    margin: 0 8px 8px 0;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* FAQ Items */
.faq-container {
    max-width: 100%;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.08);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: var(--soft-blue);
}

.faq-category-badge {
    background: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-question h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-blue);
    flex: 1;
    font-size: 1.1rem;
}

.faq-arrow {
    color: var(--text-gray);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-answer {
    border-top: 1px solid var(--border-gray);
}

.faq-answer-content {
    padding: 25px 30px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer-content p {
    margin: 0;
}

/* Search highlight */
.highlight {
    background-color: yellow;
    font-weight: bold;
}

/* Contact Support Section */
.contact-support {
    padding: 80px 0;
    background: white;
}

.support-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.support-methods {
    margin-top: 40px;
}

.support-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--soft-blue);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.support-method:hover {
    background: var(--light-blue);
    transform: translateX(10px);
}

.support-method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-method-content h5 {
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.support-method-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Support Form Card */
.support-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-gray);
}

.support-form-card h4 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.form-label {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}


/* Animation for FAQ arrows */
.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

/* Smooth transitions for collapsible content */
.faq-answer {
    transition: all 0.3s ease;
}

/* Custom scrollbar for better UX */
.faq-container::-webkit-scrollbar {
    width: 6px;
}

.faq-container::-webkit-scrollbar-track {
    background: var(--border-gray);
    border-radius: 3px;
}

.faq-container::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 3px;
}

.faq-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-blue);
}

/* Guide Page Styles */
.guide-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.guide-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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="800" cy="200" r="300" fill="url(%23a)"/><circle cx="200" cy="800" r="400" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: cover;
}

.guide-hero-content {
    position: relative;
    z-index: 2;
}

.guide-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #fff;
}

.guide-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.guide-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-breadcrumb a:hover {
    color: white;
}

.guide-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
    background: white;
}

.step-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px 20px 0 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--soft-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.step-details {
    background: var(--soft-blue);
    border-radius: 12px;
    padding: 20px;
}

.step-details ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.step-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Payment Methods Section */
.payment-methods {
    padding: 80px 0;
    background: var(--soft-blue);
}

.payment-method-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.payment-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.payment-method-card h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-method-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.processing-time {
    background: var(--success-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.payment-option {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: white;
}

.tip-card {
    background: var(--soft-blue);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: var(--light-blue);
    transform: translateX(10px);
}

.tip-card .tip-icon {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tip-card h5 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.guide-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    text-align: center;
}

.guide-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-cta .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .help-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .help-hero-content .lead {
        font-size: 1.1rem;
    }
    
    .help-search-input {
        padding: 16px 16px 16px 50px;
        font-size: 1rem;
    }
    
    .search-icon {
        left: 16px;
    }
    
    .help-category-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .help-category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .faq-category-badge {
        order: -1;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
    
    .faq-answer-content {
        padding: 20px;
    }
    
    .support-form-card {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    /* PERBAIKAN RESPONSIVE UNTUK CONTACT SUPPORT */
    .contact-support {
        padding: 60px 0;
    }
    
    .support-content h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .support-content .lead {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .support-methods {
        margin-top: 30px;
    }
    
    .support-method {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .support-method:hover {
        transform: translateY(-5px);
    }
    
    .support-method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto 15px;
    }
    
    .support-method-content {
        width: 100%;
    }
    
    .support-method-content h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .support-method-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .quick-link-item {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .filter-btn {
        margin: 0 4px 8px 0;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .guide-hero {
        padding: 80px 0 60px;
    }
    
    .guide-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-item {
        padding: 30px 20px;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number,
    .step-icon {
        margin: 0 auto;
    }
    
    .payment-method-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-white,
    .btn-outline-white {
        width: 100%;
        max-width: 300px;
    }
}