/* GLOBAL STYLE */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

.text-data {
    font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Twemoji Mozilla", "Noto Color Emoji", "Android Emoji", sans-serif;
}

/* LIQUID GLASS NAV - ASOSIY USLUB */
.liquid-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* OQ REJIMDA NAVIGATSIYA */
.light .liquid-nav {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* NAV LINKLARINING ASOSIY HOLATI */
.nav-link {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #94a3b8; /* No-active rang */
}

/* AKTIV HOLAT (BOSILGANDA YOKI SHU SAHIFADA BO'LGANDA) */
.nav-link.active {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
    color: #3b82f6 !important;
    transform: scale(1.1);
}

/* KICHIK MATN USLUBI */
.nav-link span {
    font-size: 7px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.7;
}

.nav-link.active span {
    opacity: 1;
}

/* FEATURE BOX RAMKALARI */
.feature-box {
    border-radius: 32px;
    border: 1px solid;
    transition: all 0.3s ease;
}

.dark .feature-box {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.light .feature-box {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.feature-box:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
}

/* FAQ SECTION */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding-top: 0;
}

/* Savol faollashganda (Active) javobni ko'rsatish */
.faq-item.active .faq-answer {
    max-height: 500px; /* Matn hajmiga qarab avtomatik kengayadi */
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 10px;
}

/* Plyus belgisini X ga aylantirish (animatsiya) */
.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(45deg);
    color: #3b82f6;
}

[x-cloak] { display: none !important; }

/* Mobil qurilmalarda modal va dropdownlar uchun */
body.modal-open {
    overflow: hidden;
}