/* ==================================================
    ENJOY NEPAL - MASTER FAQ & READABILITY CSS 2026
================================================== */

/* LAYOUT */
.faq-layout { display: flex; gap: var(--space-m); margin-top: var(--space-s); align-items: flex-start; }
.faq-sidebar { width: 300px; flex-shrink: 0; position: sticky; top: 100px; z-index: 10; }
.faq-content { flex-grow: 1; min-width: 0; }

/* SIDEBAR */
.sidebar-inner { background: var(--brand-white); border-radius: var(--border-radius-m); padding: var(--space-s); box-shadow: var(--shadow-sm); border: 1px solid #e2e8f0; }
.faq-topics { display: flex; flex-direction: column; gap: 5px; }
.topic-link { display: flex; align-items: center; gap: 12px; padding: 12px 15px; text-decoration: none !important; color: var(--text-dark); border-radius: 8px; font-size: 0.95rem; font-weight: 500; transition: all var(--transition-fast); }
.topic-link:hover { background: var(--bg-blue-light); color: var(--brand-blue-dark); }
.topic-link.active { background: var(--brand-blue-dark); color: var(--brand-white); }
.topic-link i { width: 20px; color: var(--brand-blue); text-align: center; }
.topic-link.active i { color: var(--brand-white); }

/* CONTENT & TYPO */
.faq-text {max-width: 850px;margin: 0 auto;}
/*
.faq-text h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 2.5rem); color: var(--brand-blue-dark); margin-bottom: 1.5rem; line-height: 1.1; }
.faq-text h2 {font-family: 'Playfair Display', serif;font-style: italic;font-size: 1.75rem;color: var(--brand-blue-dark); margin-top: 4.5rem; margin-bottom: 1.5rem;display: flex;align-items: center;gap: 15px;}
.faq-text h3 { font-size: 1.3rem; color: var(--brand-orange); margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; }
.faq-text p { line-height: 1.85; margin-bottom: 1.5rem; color: var(--text-main); font-size: 1.1rem; }
*/
/* MODERNE TABELLE */
.table-container { overflow-x: auto; margin: 2rem 0; border-radius: 12px; border: 1px solid var(--form-border); }
.modern-table { width: 100%; border-collapse: collapse; background: white; font-size: 0.95rem; }
.modern-table th { background: var(--bg-light); color: var(--text-muted); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; padding: 15px; text-align: left; border-bottom: 2px solid var(--form-border); }
.modern-table td { padding: 12px 15px; border-bottom: 1px solid var(--form-border); color: var(--text-dark); }
.modern-table tr:hover { background-color: var(--bg-blue-light); }
.modern-table .highlight-row { background-color: #fffbeb; font-weight: 700; }
.modern-table .monsun-row { color: var(--text-muted); font-style: italic; background-color: #f8fafc; }

/* CHECKLIST & COMPONENTS */
.checklist { list-style: none !important; padding: 0 !important; margin-bottom: 1.5rem; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 15px; border-radius: 8px; transition: background 0.2s; margin-bottom: 5px !important; }
.checklist input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--brand-orange); cursor: pointer; flex-shrink: 0; margin-top: 3px; }
.on-page-toc { background: var(--bg-warm); padding: 25px; border-radius: var(--border-radius-m); margin: 20px 0 40px 0; border-left: 5px solid var(--brand-orange); }
.on-page-toc a { color: var(--brand-blue-dark); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.brand-check { background: #f0fdf4; border: 1px solid #dcfce7; padding: 20px 25px; border-radius: 16px; margin: 30px 0; color: #166534; display: flex; gap: 15px; }
.visa-option { background: var(--brand-white); border: 1px solid var(--form-border); border-radius: 20px; padding: 30px; margin: 30px 0; box-shadow: var(--shadow-sm); }
blockquote { border-left: 4px solid #fbbf24; background: #fffbeb; padding: 20px 25px; margin: 25px 0; border-radius: 0 8px 8px 0; }
.btn-secondary-outline { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border: 2px solid var(--brand-blue); color: var(--brand-blue); text-decoration: none; border-radius: 50px; font-weight: 700; }
.cta-box-blue {
    background: var(--brand-blue-dark);
    color: white;
    text-align: center;
    
    /* Flexbox für perfekte Zentrierung des Inhalts */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    padding: var(--space-m);
    margin: var(--space-l) auto; /* Zentriert die Box selbst im Layout */
    max-width: 850px; /* Passt sich der faq-text Breite an */
    width: calc(100% - 40px); /* Sicherheit für Mobile */
}
/* MOBILE */
@media (max-width: 992px) {
    .faq-layout { flex-direction: column; }
    .faq-sidebar { width: 100%; position: sticky; top: 0; z-index: 1000; margin: 0 -25px; width: calc(100% + 50px); }
    .sidebar-inner { border-radius: 0; border: none; padding: 12px 25px; }
    .faq-topics { flex-direction: row; overflow-x: auto; gap: 10px; padding-bottom: 5px; }
    .topic-link { white-space: nowrap; background: var(--bg-blue-light); padding: 8px 18px; border: 1px solid #e2e8f0; }
    .faq-topics::-webkit-scrollbar { display: none; }
}

[class^="icon-"], [class*=" icon-"] {/* font-family: 'enjoy-nepal' !important; *//* color: var(--brand-orange); */}

/* FAQ HUB SPECIFIC STYLES */
.faq-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-m);
    margin-top: var(--space-m);
}

.hub-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-m);
    transition: transform var(--transition-standard), box-shadow var(--transition-standard);
    justify-content: flex-start;
}

.hub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hub-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hub-icon-circle i {
    font-size: 1.8rem;
    color: var(--brand-blue-dark);
}

.hub-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--brand-blue-dark);
}

.hub-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hub-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.hub-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.hub-links a::after {
    content: "\e936"; /* icon-chevron-right */
    font-family: 'enjoy-nepal';
    font-size: 0.8rem;
    color: var(--brand-orange);
}

.hub-links a:hover {
    color: var(--brand-orange);
}

.cta-card {
    background: var(--bg-blue-light);
    border: 2px dashed var(--brand-blue);
}

@media (max-width: 768px) {
    .faq-hub-grid {
        grid-template-columns: 1fr;
    }
}