


/* hero section */
.hero-section-faq {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 180px;
    margin-bottom: 30px;
    /* height: 60vh; */
}

.hero-section-faq h1 {
    font-size: 42px;
    color: #493926;
    padding: 30px;
}

.hero-section-faq p {
    font-size: 20px;
    color: #493926;
}
.check-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    gap: 30px;
}

.check-icon i {
    color: #eb5b25;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section-faq{
        margin-top: 10px;
    }
    .check-icon {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        font-size: 16px;
        padding: 0;
        gap: 0;
    }

    .hero-section-faq h1{
        margin-top: 60px;
        font-size: 33px;
        text-align: center;
    }

    .hero-section-faq p{
        font-size: 18px;
        text-align: center;
        margin: 10px;
    }
}

/* hero section */

/* answer question */

.question-answer-faq {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.booking-section,
.clothing-others-section {
    flex: 1 1 400px;
}

.faq-category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e0e0e0;
}

.faq-item {
    background-color: #eb5b25;
    color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #d14e1d;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: white;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
    color: black;
    background-color: white;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 15px 20px;
    border-top: 1px solid #eee;
}

/* ✅ Mobile responsive */
@media (max-width: 768px) {
    .question-answer-faq {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .booking-section,
    .clothing-others-section {
        width: 100%;
    }

    .category-title {
        font-size: 20px;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 15px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 12px 15px;
    }
}


/* answer question */

/* Contact Info */
.contact-info {
    color: #bbb;
    padding: 8px;
}

.contact-info i {
    font-size: 20px;
}


.contact-info span {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Rajdhani';
}
