/* Info Tabs Section */
.info-tabs {
    padding: 80px 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.info-tabs-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

.info-tabs-left {
    flex: 1.2;
    max-width: 650px;
    display: flex;
    flex-direction: column;
}

.info-tabs-right {
    flex: 1;
    max-width: 450px;
    display: flex;
    align-items: stretch;
}

/* Tab Navigation */
.tabs-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: 'medium', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.tab-btn:hover {
    background: rgba(26, 26, 30, 0.6);
    border-color: rgba(var(--main-color-rgb), 0.3);
    color: #ffffff;
}

.tab-btn.active {
    background: var(--card-border);
    border-color: var(--main-color);
    color: #ffffff;
}

.tab-btn i {
    font-size: 20px;
    color: var(--main-color);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 42px;
    font-family: 'semi', sans-serif;
    color: #ffffff;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
    flex: 1;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advantages */
.advantage-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: rgba(var(--main-color-rgb), 0.3);
    background: rgba(26, 26, 30, 0.6);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--main-color-rgb), 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 24px;
    color: var(--main-color);
}

.advantage-text h3 {
    font-size: 18px;
    font-family: 'semi', sans-serif;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.advantage-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Advantage Badges */
.advantage-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.advantage-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 10px;
    backdrop-filter: blur(8px);
}

.advantage-badge i {
    font-size: 16px;
    color: var(--main-color);
}

.advantage-badge span {
    font-size: 14px;
    color: #ffffff;
    font-family: 'medium', sans-serif;
}

/* FAQ in Tabs */
.faq-list-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-tab {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.faq-item-tab:hover {
    border-color: rgba(var(--main-color-rgb), 0.3);
}

.faq-item-tab.active {
    border-color: var(--main-color);
    background: rgba(26, 26, 30, 0.8);
}

.faq-question-tab {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-family: 'medium', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question-tab i {
    transition: transform 0.3s ease;
    color: var(--main-color);
    font-size: 18px;
}

.faq-item-tab.active .faq-question-tab i {
    transform: rotate(180deg);
}

.faq-answer-tab {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item-tab.active .faq-answer-tab {
    max-height: 200px;
    transition: max-height 0.5s ease-in-out;
}

.faq-answer-tab p {
    padding: 0 20px 18px 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    text-align: center;
    padding: 25px 20px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--main-color-rgb), 0.3);
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    font-family: 'bold', sans-serif;
    background: linear-gradient(135deg, #fff 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'medium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Carousel */
.feature-carousel {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(var(--main-color-rgb), 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-slides {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.carousel-slide {
    display: none !important;
    animation: fadeIn 0.4s ease;
}

.carousel-slide.active {
    display: block !important;
}

.feature-card-carousel {
    text-align: center;
}

.feature-graphic-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    margin-bottom: 20px;
}

.feature-content-carousel {
    text-align: center;
}

.feature-title-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feature-title-carousel i {
    font-size: 24px;
    color: var(--main-color);
}

.feature-title-carousel h2 {
    font-size: 22px;
    font-family: 'semi', sans-serif;
    color: #ffffff;
    margin: 0;
}

.feature-content-carousel p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--main-color-rgb), 0.1);
}

.carousel-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--main-color-rgb), 0.15);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--main-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(var(--main-color-rgb), 0.3);
    border-color: var(--main-color);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(var(--main-color-rgb), 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(var(--main-color-rgb), 0.5);
}

.carousel-dot.active {
    background: var(--main-color);
    transform: scale(1.2);
}

/* Light Theme */
:root[data-theme="light"] .section-header h2 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root[data-theme="light"] .section-header p {
    color: rgba(0, 0, 0, 0.6);
}

:root[data-theme="light"] .tab-btn {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--card-border);
    color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .tab-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #000000;
}

:root[data-theme="light"] .tab-btn.active {
    background: rgba(var(--main-color-rgb), 0.25);
    border-color: var(--main-color);
    color: #000000;
}

:root[data-theme="light"] .advantage-item,
:root[data-theme="light"] .faq-item-tab,
:root[data-theme="light"] .stat-card,
:root[data-theme="light"] .feature-carousel {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--card-border);
}

:root[data-theme="light"] .advantage-text h3,
:root[data-theme="light"] .faq-question-tab {
    color: #000000;
}

:root[data-theme="light"] .advantage-text p,
:root[data-theme="light"] .faq-answer-tab p,
:root[data-theme="light"] .stat-title {
    color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .stat-value {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--main-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

:root[data-theme="light"] .feature-title-carousel h2 {
    color: #000000;
}

:root[data-theme="light"] .feature-content-carousel p {
    color: rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] .carousel-btn {
    background: rgba(var(--main-color-rgb), 0.15);
    color: var(--primary-light);
}

:root[data-theme="light"] .carousel-btn:hover {
    background: rgba(var(--main-color-rgb), 0.3);
}

:root[data-theme="light"] .carousel-nav {
    border-top-color: var(--card-border);
}

/* Responsive */
@media (max-width: 900px) {
    .info-tabs-container {
        flex-direction: column;
    }

    .info-tabs-left,
    .info-tabs-right {
        max-width: 100%;
    }

    .info-tabs-right {
        position: static;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .advantage-badges {
        flex-direction: column;
    }
}




