/* =========================================
   ORIENTATION FAQ STYLES (Modern)
   ========================================= */

/* --- 1. HERO SECTION --- */
.hero-centered {
    background-color: var(--deep-blue);
    color: var(--white);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px; 
    padding-top: 60px;
    padding-bottom: 0px;
    text-align: center;
}

.hero-centered h1 {
    color: var(--white);
    font-family: var(--font-serif);
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(62, 92, 154, 0.15) 0%, rgba(42, 64, 104, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* --- 2. LAYOUT --- */
.faq-layout {
    display: flex;
    gap: 60px; /* Increased gap for cleaner look */
    max-width: 1200px;
    margin: 30px auto 80px; /* Reduced negative margin to avoid overlap issues */
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* --- 3. SIDEBAR NAVIGATION --- */
.faq-sidebar {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 20px; /* Rounded pill shape */
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); /* Soft shadow */
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    margin-bottom: 20px;
    font-weight: 700;
}

.cat-btn {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-grey);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.cat-btn:hover {
    background-color: #f4f8ff;
    color: var(--primary-blue);
}

.cat-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(62, 92, 154, 0.3);
}

/* Contact Note in Sidebar */
.sidebar-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    text-align: center;
}

.sidebar-contact p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.sidebar-contact a {
    color: var(--deep-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-blue);
}

/* --- 4. CONTENT AREA --- */
.faq-content { flex: 1; }

.category-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.section-header {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8; /* Softer divider */
    display: none;
}

/* --- 5. ACCORDION ITEMS (Floating Style) --- */
.accordion-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none; /* Removed border */
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 18px 25px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    outline: none;
}

.accordion-header:hover { color: var(--primary-blue); }

.icon-plus {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Open State */
.accordion-item.open .icon-plus {
    transform: rotate(45deg);
    background-color: #ffeaea;
    color: #c0392b;
}

.accordion-item.open .accordion-header {
    color: var(--primary-blue);
    border-bottom: 1px solid #f9f9f9;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}

.accordion-inner {
    padding: 20px 25px;
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.7;
}

.accordion-inner a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.accordion-header:focus {
    outline: none;
}


.accordion-inner a:hover { text-decoration: underline; }

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

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .faq-layout {
        flex-direction: column;
        margin-top: 30px;
    }
    
    .faq-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        padding: 20px;
        display: block;
    }
    
    .cat-btn { margin-bottom: 5px; }
    
    .sidebar-contact { display: none; } /* Hide contact info on mobile to save space */
}
.category-section {
    border-top: none;
}