/* ===== LUXURY FAQ PAGE STYLES ===== */

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, #0E1A2B 0%, #1a2b42 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(200, 169, 106, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 169, 106, 0.15);
    border: 1px solid rgba(200, 169, 106, 0.3);
    color: #C8A96A;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.faq-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.faq-hero-title .highlight {
    color: #C8A96A;
}

.faq-hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Search Box */
.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search-box input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: all 0.3s ease;
}

.faq-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-search-box input:focus {
    outline: none;
    border-color: #C8A96A;
    background: rgba(255, 255, 255, 0.1);
}

.faq-search-box .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

/* Main FAQ Section */
.faq-main {
    padding: 5rem 0;
    background: #F8F7F4;
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

@media (max-width: 968px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Category Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

@media (max-width: 968px) {
    .faq-sidebar {
        position: static;
    }
}

.category-nav {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.category-nav h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0E1A2B;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E8E8E8;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 968px) {
    .category-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 0.9375rem;
    color: #666;
}

@media (max-width: 968px) {
    .category-item {
        width: auto;
        flex: 0 0 auto;
    }
}

.category-item:hover {
    background: #F5F3EF;
    color: #0E1A2B;
}

.category-item.active {
    background: linear-gradient(135deg, #0E1A2B 0%, #1a2b42 100%);
    color: #fff;
}

.category-item .icon {
    width: 36px;
    height: 36px;
    background: #F5F3EF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-item.active .icon {
    background: rgba(200, 169, 106, 0.2);
}

.category-item .icon svg {
    width: 18px;
    height: 18px;
    color: #C8A96A;
}

.category-item .count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    background: #E8E8E8;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    color: #666;
}

.category-item.active .count {
    background: rgba(200, 169, 106, 0.3);
    color: #C8A96A;
}

/* FAQ Content */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-category-section {
    display: none;
}

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

.category-header {
    margin-bottom: 1.5rem;
}

.category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0E1A2B;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #666;
    font-size: 0.9375rem;
}

/* Accordion Items */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item.active {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    background: #FAFAFA;
}

.accordion-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0E1A2B;
    margin: 0;
    line-height: 1.5;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    background: #F5F3EF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
    color: #C8A96A;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: linear-gradient(135deg, #C8A96A 0%, #D4AF37 100%);
}

.accordion-item.active .accordion-icon svg {
    color: #0E1A2B;
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.accordion-content p {
    margin-bottom: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #0E1A2B 0%, #1a2b42 100%);
    padding: 5rem 0;
    text-align: center;
}

.faq-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C8A96A 0%, #D4AF37 100%);
    color: #0E1A2B;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 106, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero {
        padding: 4rem 0 3rem;
    }
    
    .faq-hero-title {
        font-size: 2.5rem;
    }
    
    .faq-main {
        padding: 3rem 0;
    }
    
    .accordion-header {
        padding: 1.25rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem 1.25rem;
    }
}
