/* Tabs */
.service-tabs {
    gap: 12px;
    flex-wrap: wrap;
    border: 1px solid var(--Gray, rgba(7, 42, 9, 0.6));
    border-radius: 40px;
    padding: 15px 25px;
    display: inline-flex !important;
}

.service-tab {
    /* border: 1px solid #e0e0e0; */
    border: none;
    background: #fff;
    padding: 8px 22px;
    border-radius: 16px;
    font-weight: 500;
    transition: all .3s ease;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

.service-tab.active {
    background: #6dbb1a;
    color: #fff;
    border-color: #6dbb1a;
}

.service-tab:hover {
    transform: translateY(-1px);
}

.service-tab .tab-icon {
    width: 28px;
    height: 28px;
}

/* Content */
.service-content {
    display: none;
    opacity: 0;
}

.service-content.active {
    display: block;
}

/* Fade animation */
.fade-in {
    animation: fadeInUp .45s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== SECTION ====== */
.faq-section {
    background: #ffffff;
}

/* ====== LIST ====== */
.faq-list {
    max-width: 1050px;
    margin: auto;
}

/* ====== ITEM ====== */
.faq-item {
    border-radius: 16px;

    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    overflow: hidden;

    transition: background-color 0.3s ease;

    padding: 2rem 4.563rem;
}

.faq-item:hover,
.faq-item.active {
    background: linear-gradient(297.25deg, #E2FAEC 8.63%, #F4FFF2 48%, #CFFCCA 85.89%);
}

/* ====== HEADER ====== */
.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    position: relative;
}

.faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    border: 5px solid rgba(7, 42, 9, 0.2);
    width: 45px;
}

.faq-item:hover .faq-header::after {
    border: 5px solid var(--Dark, rgba(7, 42, 9, 1))
}

.faq-index {
    font-weight: 700;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0px;
}

.faq-question {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0px;
    vertical-align: middle;
    text-align: left;
}

/* ====== ARROW ICON ====== */
.faq-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #1fa463;
    border-bottom: 2px solid #1fa463;
    transform: rotate(45deg);
    /* DOWN */
    transition: transform .35s ease;
    position: absolute;
    right: 10px;
}

/* UP */
.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
}

/* ====== CONTENT ====== */
.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .45s ease, opacity .3s ease;
}

.faq-content p {
    padding: 24px 20px;
    margin-bottom: 0;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    opacity: 1;
}

.hero-slider-section-tab {
    display: none;
}

.hero-slider-section-tab.active {
    display: block;
}