/* ===== assets/css/pages/faq.css ===== */
/* FAQ Page Specific Styles */

/* ===== HERO SECTION WITH SHUTTERSTOCK IMAGE ===== */
.faq-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 100%),  url('../../images/shutterstock_507080158.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}

.faq-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(136,29,107,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(136,29,107,0.9);
    backdrop-filter: blur(5px);
    padding: 8px 30px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.faq-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid rgba(136,29,107,0.2);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.category-tab i {
    font-size: 1.1rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
    margin-bottom: 60px;
    display: none;
}

.faq-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(136,29,107,0.1);
    transition: var(--transition);
    height: fit-content;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-soft);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-question h3 {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px 80px;
    display: none;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ===== STILL HAVE QUESTIONS SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--primary-soft) 0%, white 100%);
    border-radius: 20px;
    padding: 60px;
    margin: 60px 0;
    text-align: center;
    border: 1px solid rgba(136,29,107,0.1);
}

.contact-section h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-section p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-option {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(136,29,107,0.1);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.contact-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.contact-option i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-option h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-option p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.contact-option .detail {
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .faq-hero h1 {
        font-size: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        margin-top: -15px;
    }

    .faq-hero {
        padding: 60px 0;
        min-height: 300px;
    }
    
    .faq-hero h1 {
        font-size: 2.2rem;
    }
    
    .faq-hero p {
        font-size: 1.1rem;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 70px;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}