/* FAQs Premium Styles - Full Redesign */

:root {
    --navy: #01233c;
    --gold: #b8956a;
    --gold-light: #fdfaf5;
    --text-main: #1a1a1a;
    --text-muted: #666;
    --border-light: #eee;
}

/* Hero Zoom Fix */
.faqs-page-hero .hero-photo {
    background-size: 100%;
    background-position: center top;
}

/* Search Bar */
.faq-search-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    z-index: 10;
}

.faq-search-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.faq-search-input-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.faq-search-input-wrap svg {
    color: #999;
    margin-right: 15px;
}

.faq-search-box input {
    border: none;
    width: 100%;
    font-size: 1.1rem;
    outline: none;
}

.btn-faq-search {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-faq-search:hover {
    background: #0d1b2a;
    transform: translateY(-2px);
}

.btn-faq-search:active {
    transform: translateY(0) scale(0.98);
}

/* Browse by Category */
.faq-browse-section {
    text-align: center;
    margin-bottom: 80px;
}

.faq-browse-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.category-underline {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.category-card:hover, .category-card.active {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(184, 149, 106, 0.1);
    transform: translateY(-5px);
}

.cat-icon {
    margin-bottom: 20px;
    color: var(--gold);
}

.category-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 700;
}

.category-card p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Layout Grid */
.faq-main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

/* Sidebar */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-side-nav {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.faq-nav-item {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s;
    cursor: pointer;
}

.faq-nav-item:last-child { border-bottom: none; }

.faq-nav-item svg { color: var(--gold); width: 20px; }

.faq-nav-item.active {
    background: var(--navy);
    color: #fff;
}

.faq-nav-item.active svg { color: #fff; }

.faq-side-help {
    background: #fdfaf5;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.help-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.faq-side-help h4 { font-size: 1.2rem; margin-bottom: 10px; }
.faq-side-help p { font-size: 0.9rem; color: #666; margin-bottom: 20px; }

.btn-side-contact {
    display: block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-side-contact:hover {
    background: var(--gold);
    color: #fff;
}

/* Main Content FAQs */
.faq-content-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--navy);
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
}

.faq-acc-item {
    border: 1px solid #eee;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-acc-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
}

.faq-acc-question {
    display: flex;
    gap: 15px;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.5;
}

.faq-acc-num { color: var(--navy); min-width: 25px; }

.faq-acc-icon {
    color: var(--navy);
    transition: transform 0.3s;
    margin-top: 5px;
}

.faq-acc-answer {
    padding: 20px 0 0 40px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    display: none;
}

.faq-acc-answer p { margin: 0; }
.faq-acc-answer a { color: var(--gold); font-weight: 700; text-decoration: none; }

.faq-acc-item.active {
    border-color: var(--gold);
    background: #fdfaf5;
}

.faq-acc-item.active .faq-acc-answer { display: block; }
.faq-acc-item.active .faq-acc-icon { transform: rotate(180deg); color: var(--gold); }

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 40px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--navy);
}

.btn-load-more:hover {
    background: #f9f9f9;
}

/* Dark Help Bar */
.faq-dark-cta {
    background: var(--navy);
    color: #fff;
    padding: 40px 60px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dark-cta-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dark-cta-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(184, 149, 106, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.dark-cta-text h4 { font-size: 1.3rem; margin-bottom: 5px; }
.dark-cta-text p { font-size: 0.9rem; opacity: 0.8; margin: 0; }

.dark-cta-contacts {
    display: flex;
    gap: 40px;
}

.dark-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.dark-contact-link svg { color: var(--gold); }

.btn-contact-gold {
    background: #c19c6e;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

/* Footer Bottom Grid */
.faq-bottom-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #f0f0f0;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fdfaf5;
}

.bottom-info-col {
    padding: 30px;
    display: flex;
    gap: 20px;
    background: #fdfaf5;
}

.bottom-info-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #f0e6d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.bottom-info-text h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--navy);
    font-weight: 700;
}

.bottom-info-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-acc-item {
    animation: fadeIn 0.4s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
    .category-grid { grid-template-columns: repeat(3, 2fr); }
    .faq-main-layout { grid-template-columns: 1fr; }
    .faq-sidebar { display: none; }
    .faq-dark-cta { flex-direction: column; gap: 30px; text-align: center; }
    .dark-cta-info { flex-direction: column; }
    .dark-cta-contacts { flex-direction: column; gap: 15px; }
    .faq-bottom-info-grid { grid-template-columns: repeat(2, 1fr); }
}
