/* ═══════════════════════════════════════════════════════════════════════════
   Help Center — Premium Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero + Search ────────────────────────────────────────────────────────── */
.hc-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 80px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.hc-hero::before {
    content: '';
    position: absolute;
    top: -80%;
    left: 20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.hc-hero-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.hc-hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.hc-hero-content > p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 30px;
}

/* Search Bar */
.hc-search-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.hc-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.hc-search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.hc-search-input::placeholder {
    color: #666;
}

.hc-search-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* Search Results Dropdown */
.hc-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: none;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

.hc-search-results.active {
    display: block;
}

.hc-search-result-item {
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

.hc-search-result-item:last-child {
    border-bottom: none;
}

.hc-search-result-item:hover {
    background: #fffbe6;
}

.hc-search-result-item i {
    color: #FFC107;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hc-search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ── Section Layout ───────────────────────────────────────────────────────── */
.hc-section {
    padding: 60px 5%;
}

.hc-section-alt {
    background: #f8f9fa;
}

.hc-container {
    max-width: 960px;
    margin: 0 auto;
}

.hc-section-header {
    text-align: center;
    margin-bottom: 35px;
}

.hc-section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.hc-section-icon-contact {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
}

.hc-section-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary, #1a1a1a);
    margin-bottom: 6px;
}

.hc-section-header p {
    font-size: 0.95rem;
    color: #888;
}

/* ── Quick Links ──────────────────────────────────────────────────────────── */
.hc-quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hc-quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--white, #fff);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text, #333);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.hc-quick-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: rgba(255,215,0,0.3);
}

.hc-quick-link > i:first-child {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #1a1a1a;
    flex-shrink: 0;
}

.hc-quick-link span {
    flex: 1;
}

.hc-quick-arrow {
    color: #ccc;
    font-size: 0.75rem;
    transition: transform 0.3s, color 0.3s;
}

.hc-quick-link:hover .hc-quick-arrow {
    transform: translateX(4px);
    color: #FFC107;
}

/* ── Category Grid ────────────────────────────────────────────────────────── */
.hc-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hc-category-card {
    background: var(--white, #fff);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hc-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.hc-category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.hc-category-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary, #1a1a1a);
    margin-bottom: 12px;
}

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

.hc-category-list li {
    margin-bottom: 8px;
}

.hc-category-list a {
    text-decoration: none;
    color: #666;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, transform 0.3s;
    line-height: 1.4;
}

.hc-category-list a i {
    color: #FFD700;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.hc-category-list a:hover {
    color: #FFC107;
    transform: translateX(4px);
}

/* ── FAQ Accordion ────────────────────────────────────────────────────────── */
.hc-faq-group {
    margin-bottom: 30px;
}

.hc-faq-group-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary, #1a1a1a);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,215,0,0.3);
}

.hc-faq-group-title i {
    color: #FFC107;
}

.hc-faq-item {
    background: var(--white, #fff);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s;
}

.hc-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.hc-faq-item.highlight {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255,215,0,0.2), 0 6px 20px rgba(0,0,0,0.08);
}

.hc-faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text, #333);
    text-align: left;
    gap: 15px;
    transition: color 0.3s;
}

.hc-faq-question:hover {
    color: #FFC107;
}

.hc-faq-q-icon {
    color: #FFC107;
    margin-right: 10px;
    font-size: 0.9rem;
}

.hc-faq-toggle {
    color: #ccc;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.4s, color 0.3s;
}

.hc-faq-item.open .hc-faq-toggle {
    transform: rotate(45deg);
    color: #FFC107;
}

.hc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding: 0 20px;
}

.hc-faq-item.open .hc-faq-answer {
    max-height: 600px;
    padding: 0 20px 20px;
}

.hc-faq-answer p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.hc-faq-answer ol, .hc-faq-answer ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.hc-faq-answer li {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 6px;
}

.hc-faq-answer strong {
    color: var(--secondary, #1a1a1a);
}

/* FAQ Tip box */
.hc-faq-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: #fffbe6;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    margin-top: 10px;
}

.hc-faq-tip i {
    color: #FFC107;
    margin-top: 2px;
    flex-shrink: 0;
}

.hc-faq-tip span {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.hc-faq-tip-urgent {
    background: #fff5f5;
    border-left-color: #e74c3c;
}

.hc-faq-tip-urgent i {
    color: #e74c3c;
}

/* ── Contact Section ──────────────────────────────────────────────────────── */
.hc-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.hc-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hc-contact-card {
    background: var(--white, #fff);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-align: center;
}

.hc-contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.hc-contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary, #1a1a1a);
    margin-bottom: 6px;
}

.hc-contact-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.5;
}

.hc-contact-email {
    display: inline-block;
    color: #FFC107;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.hc-contact-email:hover {
    color: #FFA000;
}

.hc-response-time {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #2ecc71;
    font-weight: 600;
}

.hc-response-time i {
    margin-right: 4px;
}

/* Contact Form */
.hc-contact-form-card {
    background: var(--white, #fff);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.hc-contact-form-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary, #1a1a1a);
    margin-bottom: 20px;
}

.hc-contact-form-card h4 i {
    color: #FFC107;
    margin-right: 8px;
}

.hc-form-group {
    margin-bottom: 15px;
}

.hc-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text, #333);
    margin-bottom: 6px;
}

.hc-form-group input,
.hc-form-group select,
.hc-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid #eee;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    background: var(--white, #fff);
    color: var(--text, #333);
}

.hc-form-group input:focus,
.hc-form-group select:focus,
.hc-form-group textarea:focus {
    border-color: #FFD700;
}

.hc-form-group textarea {
    resize: none;
}

.hc-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 5px;
}

/* Contact Success */
.hc-contact-success {
    text-align: center;
    padding: 30px 0;
}

.hc-contact-success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 12px;
}

.hc-contact-success h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary, #1a1a1a);
    margin-bottom: 6px;
}

.hc-contact-success p {
    font-size: 0.9rem;
    color: #888;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Dark Theme Overrides
   ═══════════════════════════════════════════════════════════════════════════ */
body.dark-theme .hc-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-theme .hc-search-input {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: rgba(255,215,0,0.15);
}

body.dark-theme .hc-search-results {
    background: #1e293b;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

body.dark-theme .hc-search-result-item {
    color: #cbd5e1;
    border-bottom-color: #334155;
}

body.dark-theme .hc-search-result-item:hover {
    background: rgba(255,215,0,0.08);
}

body.dark-theme .hc-section-alt {
    background: #0c1222;
}

body.dark-theme .hc-section-header h2 {
    color: var(--text, #f5f5f5) !important;
}

body.dark-theme .hc-section-header p {
    color: var(--text-muted, #64748b) !important;
}

body.dark-theme .hc-quick-link {
    background: var(--white, #1e293b) !important;
    color: var(--text, #f5f5f5) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

body.dark-theme .hc-category-card {
    background: var(--white, #1e293b) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

body.dark-theme .hc-category-card h3 {
    color: var(--text, #f5f5f5) !important;
}

body.dark-theme .hc-category-list a {
    color: #64748b !important;
}

body.dark-theme .hc-category-list a:hover {
    color: #FFC107 !important;
}

body.dark-theme .hc-faq-group-title {
    color: var(--text, #f5f5f5) !important;
    border-bottom-color: rgba(255,215,0,0.15);
}

body.dark-theme .hc-faq-item {
    background: var(--white, #1e293b) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

body.dark-theme .hc-faq-question {
    color: var(--text, #f5f5f5) !important;
}

body.dark-theme .hc-faq-answer p,
body.dark-theme .hc-faq-answer li {
    color: var(--text-muted, #94a3b8) !important;
}

body.dark-theme .hc-faq-answer strong {
    color: var(--text, #f5f5f5) !important;
}

body.dark-theme .hc-faq-tip {
    background: rgba(255,215,0,0.06);
    border-left-color: #FFC107;
}

body.dark-theme .hc-faq-tip span {
    color: #94a3b8;
}

body.dark-theme .hc-faq-tip-urgent {
    background: rgba(231,76,60,0.08);
}

body.dark-theme .hc-contact-card,
body.dark-theme .hc-contact-form-card {
    background: var(--white, #1e293b) !important;
    border-color: rgba(255,255,255,0.06) !important;
}

body.dark-theme .hc-contact-card h4,
body.dark-theme .hc-contact-form-card h4 {
    color: var(--text, #f5f5f5) !important;
}

body.dark-theme .hc-contact-card p {
    color: var(--text-muted, #64748b) !important;
}

body.dark-theme .hc-form-group label {
    color: var(--text, #f5f5f5) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Mobile Responsive
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hc-hero {
        padding: 60px 5% 45px;
        border-radius: 0 0 30px 30px;
    }

    .hc-hero-content h1 {
        font-size: 1.8rem;
    }

    .hc-hero-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .hc-search-input {
        padding: 14px 15px 14px 45px;
        font-size: 0.9rem;
    }

    .hc-section {
        padding: 40px 5%;
    }

    .hc-section-header h2 {
        font-size: 1.4rem;
    }

    .hc-category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hc-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hc-faq-question {
        font-size: 0.88rem;
        padding: 15px;
    }

    .hc-faq-answer {
        padding: 0 15px;
    }

    .hc-faq-item.open .hc-faq-answer {
        padding: 0 15px 18px;
    }

    .hc-quick-link {
        padding: 15px;
        font-size: 0.88rem;
    }

    .hc-contact-form-card {
        padding: 20px;
    }
}
