/* ============================================
   Help Page Component - Clean Minimal 2025 Design
   ============================================ */

.c-help-page {
    min-height: 100vh;
    background: #f8fafc;
}

/* ============================================
   Hero Section - Clean, White
   ============================================ */
.c-help-page__hero {
    background: #ffffff;
    padding: 56px 24px 48px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.c-help-page__hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.c-help-page__hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.c-help-page__title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.c-help-page__subtitle {
    font-size: 17px;
    color: #64748b;
    margin: 0 0 32px 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Search Bar */
.c-help-page__search-container {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.c-help-page__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.c-help-page__search-input {
    width: 100%;
    padding: 14px 18px 14px 52px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.2s ease;
}

.c-help-page__search-input::placeholder {
    color: #94a3b8;
}

.c-help-page__search-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ============================================
   Guides Section
   ============================================ */
.c-help-page__guides {
    padding: 48px 24px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.c-help-page__guides-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.c-help-page__guides-header {
    text-align: center;
    margin-bottom: 32px;
}

.c-help-page__guides-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.c-help-page__guides-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Guide Cards Grid */
.c-help-page__guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Guide Card */
.c-help-page__guide-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    text-decoration: none !important;
    position: relative;
}

.c-help-page__guide-card * {
    text-decoration: none !important;
}

.c-help-page__guide-card--featured {
    cursor: pointer;
}

.c-help-page__guide-card--featured:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    text-decoration: none;
}

.c-help-page__guide-card--featured:hover .c-help-page__guide-title,
.c-help-page__guide-card--featured:hover .c-help-page__guide-description,
.c-help-page__guide-card--featured:hover .c-help-page__guide-time,
.c-help-page__guide-card--featured:hover .c-help-page__guide-steps {
    text-decoration: none;
}

.c-help-page__guide-card--coming-soon {
    opacity: 0.6;
    cursor: default;
}

/* Guide Icon */
.c-help-page__guide-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-help-page__guide-icon--teal {
    background: #ccfbf1;
    color: #0f766e;
}

.c-help-page__guide-icon--blue {
    background: #dbeafe;
    color: #2563eb;
}

.c-help-page__guide-icon--green {
    background: #dcfce7;
    color: #16a34a;
}

/* Guide Content */
.c-help-page__guide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-help-page__guide-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #fef3c7;
    color: #92400e;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    width: fit-content;
}

.c-help-page__guide-badge--muted {
    background: #f1f5f9;
    color: #64748b;
}

.c-help-page__guide-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.c-help-page__guide-description {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.c-help-page__guide-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

.c-help-page__guide-time,
.c-help-page__guide-steps {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.c-help-page__guide-arrow {
    position: absolute;
    right: 20px;
    top: 28px;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.c-help-page__guide-card--featured:hover .c-help-page__guide-arrow {
    color: #64748b;
    transform: translateX(2px);
}

/* ============================================
   FAQ Section
   ============================================ */
.c-help-page__faqs {
    padding: 48px 24px;
}

.c-help-page__faqs-inner {
    max-width: 720px;
    margin: 0 auto;
}

.c-help-page__faqs-header {
    text-align: center;
    margin-bottom: 28px;
}

.c-help-page__faqs-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.c-help-page__faqs-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* Category Tabs */
.c-help-page__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap;
}

.c-help-page__tabs::-webkit-scrollbar {
    display: none;
}

.c-help-page__tab {
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    background: white;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.c-help-page__tab:hover {
    border-color: #cbd5e1;
    color: #334155;
    background: #f8fafc;
}

.c-help-page__tab--active {
    background: #0f172a;
    border-color: #0f172a;
    color: white;
}

.c-help-page__tab--active:hover {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
}

/* FAQ Container */
.c-help-page__faq-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* FAQ Item */
.c-help-page__faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.c-help-page__faq-item:hover {
    border-color: #cbd5e1;
}

/* FAQ Question Button */
.c-help-page__faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
}

.c-help-page__faq-question:hover {
    color: #0f172a;
}

.c-help-page__faq-icon {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-help-page__faq-icon--open {
    transform: rotate(180deg);
}

/* FAQ Answer */
.c-help-page__faq-answer {
    overflow: hidden;
}

.c-help-page__faq-answer-content {
    padding: 0 20px 20px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.c-help-page__faq-answer-content a {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}

.c-help-page__faq-answer-content a:hover {
    color: #2563eb;
}

/* No Results */
.c-help-page__no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

.c-help-page__no-results-icon {
    color: #e2e8f0;
    margin-bottom: 12px;
}

.c-help-page__no-results-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.c-help-page__no-results-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.c-help-page__contact {
    padding: 0 24px 64px;
}

.c-help-page__contact-inner {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.c-help-page__contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.c-help-page__contact-icon {
    width: 56px;
    height: 56px;
    background: #f1f5f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #64748b;
}

.c-help-page__contact-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.c-help-page__contact-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Form */
.c-help-page__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-help-page__form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.c-help-page__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-help-page__label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.c-help-page__input,
.c-help-page__select,
.c-help-page__textarea {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-family: inherit;
}

.c-help-page__input::placeholder,
.c-help-page__textarea::placeholder {
    color: #94a3b8;
}

.c-help-page__input:focus,
.c-help-page__select:focus,
.c-help-page__textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.c-help-page__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.c-help-page__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.c-help-page__submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #0f172a;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.c-help-page__submit-btn:hover {
    background: #1e293b;
}

.c-help-page__submit-btn:active {
    background: #0f172a;
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 900px) {
    .c-help-page__guides-grid {
        grid-template-columns: 1fr;
    }

    .c-help-page__guide-card--featured {
        flex-direction: row;
        align-items: center;
    }

    .c-help-page__guide-arrow {
        position: static;
        transform: none;
    }

    .c-help-page__guide-card--featured:hover .c-help-page__guide-arrow {
        transform: translateX(2px);
    }
}

@media (max-width: 768px) {
    .c-help-page__hero {
        padding: 40px 20px 36px;
    }

    .c-help-page__title {
        font-size: 32px;
    }

    .c-help-page__subtitle {
        font-size: 15px;
    }

    .c-help-page__guides {
        padding: 40px 20px;
    }

    .c-help-page__guide-card {
        padding: 20px;
    }

    .c-help-page__guide-card--featured {
        flex-direction: column;
        align-items: flex-start;
    }

    .c-help-page__guide-arrow {
        position: absolute;
        right: 20px;
        top: 24px;
        transform: none;
    }

    .c-help-page__faqs {
        padding: 40px 20px;
    }

    .c-help-page__tabs {
        justify-content: flex-start;
    }

    .c-help-page__contact {
        padding: 0 20px 48px;
    }

    .c-help-page__contact-inner {
        padding: 32px 24px;
    }

    .c-help-page__form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .c-help-page__hero {
        padding: 32px 16px 28px;
    }

    .c-help-page__hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .c-help-page__title {
        font-size: 28px;
    }

    .c-help-page__subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .c-help-page__search-input {
        padding: 12px 14px 12px 48px;
        font-size: 14px;
        border-radius: 10px;
    }

    .c-help-page__guides {
        padding: 32px 16px;
    }

    .c-help-page__guides-title,
    .c-help-page__faqs-title {
        font-size: 22px;
    }

    .c-help-page__guides-subtitle,
    .c-help-page__faqs-subtitle {
        font-size: 14px;
    }

    .c-help-page__guide-card {
        padding: 18px;
        border-radius: 10px;
    }

    .c-help-page__guide-icon {
        width: 42px;
        height: 42px;
        border-radius: 8px;
    }

    .c-help-page__guide-title {
        font-size: 15px;
    }

    .c-help-page__guide-description {
        font-size: 12px;
    }

    .c-help-page__faqs {
        padding: 32px 16px;
    }

    .c-help-page__tab {
        padding: 7px 12px;
        font-size: 12px;
    }

    .c-help-page__faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .c-help-page__faq-answer-content {
        padding: 0 16px 16px;
        font-size: 13px;
    }

    .c-help-page__contact {
        padding: 0 16px 40px;
    }

    .c-help-page__contact-inner {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .c-help-page__contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .c-help-page__contact-title {
        font-size: 20px;
    }

    .c-help-page__submit-btn {
        width: 100%;
        padding: 12px 20px;
    }
}
