/* FAQ Hero Section */
.faq-hero {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/faq/faqbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.faq-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .faq-hero {
        padding: 120px 0;
        min-height: 400px;
    }

    .faq-hero-title {
        font-size: 56px;
    }

    .faq-hero-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .faq-hero {
        padding: 100px 0;
        min-height: 350px;
    }

    .faq-hero-title {
        font-size: 42px;
    }

    .faq-hero-subtitle {
        font-size: 15px;
    }

    .faq-hero-subtitle br {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .faq-hero {
        padding: 80px 0;
        min-height: 300px;
    }

    .faq-hero-title {
        font-size: 32px;
    }

    .faq-hero-subtitle {
        font-size: 14px;
    }
}

/* FAQ Search Section */
.faq-search-section {
    padding: 40px 0;
    background: #FFFFFF;
}

.faq-search-box {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.faq-search-input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    background: #F8F8F8;
    outline: none;
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    border-color: #FF6B35;
    background: #FFFFFF;
}

.faq-search-btn {
    position: absolute;
    right: 92px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Content Section */
.faq-content-section {
    padding: 60px 0 80px 0;
    background: #FFFFFF;
}

.faq-content-section .container {
    max-width: 100%;
    padding: 0 80px;
}

.faq-category-wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #E5E5E5;
}

.faq-category-wrapper:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-category-title {
    font-family: 'Cairo', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.faq-questions-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    padding: 24px 0;
}

.faq-item:first-child {
    border-top: 1px solid #E5E5E5;
}

.faq-item:last-child {
    border-bottom: 1px solid #E5E5E5;
}

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

.faq-question span:first-child {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-icon {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding-top: 16px;
}

.faq-answer p {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive for FAQ Content */
@media screen and (max-width: 968px) {
    .faq-search-box {
        padding: 0 40px;
    }

    .faq-search-btn {
        right: 52px;
    }

    .faq-content-section {
        padding: 60px 0;
    }

    .faq-content-section .container {
        padding: 0 40px;
    }

    .faq-category-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .faq-category-title {
        font-size: 32px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-item {
        padding: 20px 0;
    }
}

@media screen and (max-width: 640px) {
    .faq-search-box {
        padding: 0 20px;
    }

    .faq-search-btn {
        right: 32px;
    }

    .faq-search-input {
        font-size: 15px;
        padding: 16px 50px 16px 20px;
    }

    .faq-content-section {
        padding: 40px 0;
    }

    .faq-content-section .container {
        padding: 0 20px;
    }

    .faq-category-wrapper {
        gap: 24px;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .faq-category-title {
        font-size: 28px;
    }

    .faq-question span:first-child {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item {
        padding: 16px 0;
    }
}

/* Didn't Find Section */
.didnt-find-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.didnt-find-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/faq/findbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.didnt-find-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.didnt-find-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 40px 0;
}

.btn-contact-support {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 14px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-support:hover {
    background: #FFFFFF;
    color: #1a1a1a;
}

/* Responsive for Didn't Find Section */
@media screen and (max-width: 968px) {
    .didnt-find-section {
        padding: 100px 0;
    }

    .didnt-find-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 640px) {
    .didnt-find-section {
        padding: 80px 0;
    }

    .didnt-find-title {
        font-size: 36px;
    }

    .btn-contact-support {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .didnt-find-section {
        padding: 60px 0;
    }

    .didnt-find-title {
        font-size: 28px;
    }
}
