/* ==========================================================================
   SUITABLE EDGE - FAQ PAGE CSS (PREMIUM EDITION)
   ========================================================================== */

/* ===== FAQ HERO SECTION - WHITE BACKGROUND ===== */
.faq-hero {
    background: #FFFFFF !important;
    color: var(--text-dark);
    padding: 60px 0 40px;
    position: relative;
    border-bottom: 1px solid var(--gray-border);
}

.faq-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.faq-hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-bg);
    color: var(--orange-main);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    border: 1px solid var(--orange-light);
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 0.9rem;
}

.faq-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.faq-hero-content h1 .orange {
    color: var(--orange-main);
}

.faq-hero-content p {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.7;
}

/* Mini Stats */
.hero-stats-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-number {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--orange-main);
}

.mini-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 500;
}

/* Search Box */
.hero-search {
    display: flex;
    align-items: center;
    background: var(--gray-light);
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.hero-search:focus-within {
    border-color: var(--orange-main);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    background: var(--white);
}

.hero-search i {
    color: var(--text-mid);
    font-size: 1.1rem;
    margin-right: 12px;
}

.hero-search input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1rem;
    width: 100%;
    outline: none;
    font-family: var(--font-body);
}

.hero-search input::placeholder {
    color: var(--gray-mid);
}

/* Right Image */
.faq-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-glow-bg {
    position: absolute;
    width: 85%;
    height: 85%;
    background: rgba(255, 107, 0, 0.06);
    border-radius: 50%;
    filter: blur(65px);
    z-index: 0;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange-main);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.section-title .orange {
    color: var(--orange-main);
}

.section-subtitle {
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.08rem;
    font-weight: 400;
}

/* ===== FAQ GRID ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.faq-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
}

.faq-card.active {
    border-color: var(--orange-main);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--orange-bg);
}

.faq-question i:first-child {
    color: var(--orange-main);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--text-mid);
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 8px;
}

.faq-toggle:hover {
    background: var(--orange-bg);
    color: var(--orange-main);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
    border-top: 1px solid var(--gray-border);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--text-mid);
    font-size: 0.98rem;
    line-height: 1.7;
    padding-top: 16px;
}

/* ===== STILL HAVE QUESTIONS ===== */
.still-questions {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-border);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.still-questions-content i {
    font-size: 3rem;
    color: var(--orange-main);
    margin-bottom: 16px;
    display: block;
}

.still-questions-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.still-questions-content p {
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 24px;
}

.still-questions-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    border-top: 4px solid var(--orange-main);
    border-bottom: 4px solid var(--orange-main);
}

.cta-title {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-title .orange {
    color: var(--orange-main);
}

.cta-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    max-width: 700px;
    margin: 0 auto 38px;
    font-weight: 400;
}

.btn-cta {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .faq-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .faq-hero-content {
        max-width: 100%;
    }
    
    .hero-stats-mini {
        justify-content: center;
    }
    
    .hero-search {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-img {
        max-width: 400px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 40px 0 30px;
    }
    
    .faq-hero-content h1 {
        font-size: 2rem;
    }
    
    .faq-hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats-mini {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mini-number {
        font-size: 1.4rem;
    }
    
    .hero-img {
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-question {
        padding: 16px 18px;
        gap: 10px;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 18px 16px 18px;
    }
    
    .faq-answer p {
        font-size: 0.92rem;
    }
    
    .still-questions {
        padding: 30px 20px;
    }
    
    .still-questions-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-desc {
        font-size: 1rem;
    }
    
    .still-questions-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .faq-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-img {
        max-width: 250px;
    }
    
    .faq-card {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question h4 {
        font-size: 0.88rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}