/* Help Page Styles */

/* Hero Section */
.hero-help-section {
    background: linear-gradient(180deg, var(--color-dark-blue), var(--color-median-blue));
    padding: 100px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('../img/bkgrnd.avif') center/cover; */
    opacity: 0.1;
    z-index: 0;
}

.hero-help-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Search Section */
.search-help-section {
    background: linear-gradient(180deg, var(--color-median-blue), white);
    padding: 40px 0 80px;
}

.search-help-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 8px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.search-input-group:focus-within {
    border-color: var(--color-light-blue);
    box-shadow: 0 0 0 0.2rem rgba(29, 45, 131, 0.25);
}

.search-icon {
    color: #6c757d;
    font-size: 1.2rem;
    margin: 0 15px 0 20px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    padding: 15px 0;
    color: #495057;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-btn {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-median-blue));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(29, 45, 131, 0.3);
}

.search-suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag {
    background: rgba(29, 45, 131, 0.1);
    color: var(--color-median-blue);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 45, 131, 0.2);
}

.suggestion-tag:hover {
    background: var(--color-light-blue);
    color: white;
    transform: translateY(-2px);
}

/* Quick Access Section */
.quick-access-section {
    padding: 80px 0;
    background: white;
}

.quick-access-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-light-blue), var(--color-median-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-access-card:hover::before {
    transform: scaleX(1);
}

.quick-access-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-light-blue);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.card-icon.getting-started {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-median-blue));
}

.card-icon.user-manual {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-median-blue));
}

.card-icon.processes {
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-median-blue));
}

.card-icon.faq {
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-deep-rose));
}

.quick-access-card h5 {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.quick-access-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-arrow {
    color: var(--color-light-blue);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quick-access-card:hover .card-arrow {
    transform: translateX(5px);
}

.quick-access-card:hover .card-icon {
    transform: scale(1.1);
}

/* Content Sections */
.help-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-header h2 {
    color: var(--color-dark-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.content-header p {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Help Cards */
.help-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.help-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.step-number {
    font-size: 1.8rem;
    color: var(--color-light-blue);
    margin-right: 15px;
}

.help-card-header h4 {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.help-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.help-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    color: #495057;
    line-height: 1.6;
}

.help-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.help-link {
    color: var(--color-light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.help-link:hover {
    color: var(--color-median-blue);
    text-decoration: none;
}

.help-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.help-link:hover i {
    transform: translateX(3px);
}

/* Manual Categories */
.manual-category {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.manual-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.manual-category h4 {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.manual-category h4 i {
    color: var(--color-light-blue);
    margin-right: 10px;
    font-size: 1.4rem;
}

.manual-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.manual-list li {
    margin-bottom: 12px;
}

.manual-list a {
    color: #495057;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.manual-list a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-light-blue);
    transition: transform 0.3s ease;
}

.manual-list a:hover {
    color: var(--color-light-blue);
    padding-left: 25px;
}

.manual-list a:hover::before {
    transform: translateX(5px);
}

/* Process Cards */
.process-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.process-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.process-icon {
    font-size: 1.8rem;
    color: var(--color-light-blue);
    margin-right: 15px;
}

.process-header h4 {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-light-blue), var(--color-median-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h6 {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Styles */
.faq-container {
    max-width: 100%;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h4 {
    color: var(--color-dark-blue);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.4rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-light-blue);
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    color: var(--color-dark-blue);
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
    margin-right: 15px;
}

.faq-icon {
    color: var(--color-light-blue);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #495057;
    line-height: 1.7;
}

/* Support CTA Section */
.support-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-dark-blue), var(--color-light-blue));
    color: white;
}

.support-cta-wrapper {
    text-align: center;
}

.support-cta-wrapper h3 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.support-cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.support-options {
    margin-bottom: 30px;
}

.support-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-3px);
}

.support-option i {
    font-size: 2rem;
    margin-bottom: 10px;
    min-height: 50px;
}

.support-option span {
    font-weight: 600;
}

.support-schedule {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .search-help-box {
        padding: 25px 20px;
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
    }
    
    .search-input {
        margin: 10px 0;
        padding: 10px 0;
        text-align: center;
    }
    
    .search-btn {
        align-self: center;
    }
    
    .quick-access-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .content-header h2 {
        font-size: 2rem;
    }
    
    .help-card,
    .manual-category,
    .process-card {
        margin-bottom: 20px;
    }
    
    .support-cta-wrapper h3 {
        font-size: 1.8rem;
    }
    
    .support-option {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-help-section {
        padding: 60px 0 40px;
    }
    
    .search-help-section {
        padding: 20px 0 60px;
    }
    
    .quick-access-section {
        padding: 60px 0;
    }
    
    .help-content-section {
        padding: 60px 0;
    }
    
    .support-cta-section {
        padding: 60px 0;
    }
    
    .suggestion-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
}

/* Navigation between sections */
.content-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

.content-navigation.active {
    display: block;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(29, 45, 131, 0.3);
    border: 2px solid var(--color-light-blue);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
    background: var(--color-light-blue);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .content-navigation {
        display: none !important;
    }
}



/* Additional animations and effects */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced hover effects */
.quick-access-card:hover .card-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0) scale(1.1);
    }
    40% {
        transform: translateY(-10px) scale(1.1);
    }
    80% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Smooth transitions for all interactive elements */
.help-card,
.manual-category,
.process-card,
.faq-item,
.support-option {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}