/* FAQ Section Styles */
.faq-container {
    padding: 50px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-items-container {
    max-width: 750px;
    margin: 30px auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    width: 85%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.question-text {
    color: white;
    font-size: 16px;
    flex: 1;
}

.faq-toggle-icon {
    width: 30px;
    height: 30px;
    background-color: #00F6A7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.plus-icon {
    position: relative;
}

.plus-icon:before,
.plus-icon:after {
    content: '';
    position: absolute;
    background-color: #121212;
    transition: transform 0.3s ease;
}

.plus-icon:before {
    width: 14px;
    height: 2px;
    top: 0;
    left: -7px;
}

.plus-icon:after {
    width: 2px;
    height: 14px;
    top: -6px;
    left: -1px;
}

.faq-item.active .plus-icon:after {
    transform: rotate(90deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.faq-contact {
    text-align: center;
    margin-top: 32px;
}

.still-have-questions {
    font-size: 26px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.contact-email {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(to right, #00F6A7, #096E4E, #23A67D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .still-have-questions {
        font-size: 18px;
    }
    
    .contact-email {
        font-size: 28px;
    }
}


/* Add these animation styles to the existing faq.css file */

/* FAQ Item Reveal Animation */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for FAQ Items */
.faq-items-container .faq-item:nth-child(1) {
    transition-delay: 0.1s;
}

.faq-items-container .faq-item:nth-child(2) {
    transition-delay: 0.2s;
}

.faq-items-container .faq-item:nth-child(3) {
    transition-delay: 0.3s;
}

.faq-items-container .faq-item:nth-child(4) {
    transition-delay: 0.4s;
}

.faq-items-container .faq-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* FAQ Toggle Icon Animation */
.faq-toggle-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    background-color: rgba(0, 246, 167, 0.8);
}

/* FAQ Question Hover Effect */
.faq-question {
    transition: background-color 0.3s ease;
}



/* Email Link Animation */
.contact-email {
    position: relative;
    transition: transform 0.3s ease;
}

.contact-email:hover {
    transform: scale(1.05);
}

.contact-email::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #00F6A7, #096E4E, #23A67D);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}