/* ============================================
   HAKKIMIZDA PAGE STYLES
   ============================================ */

/* Active nav indicator */
.nav-link.active-page {
    color: #fff;
}

.nav-link.active-page svg {
    opacity: 1;
}

/* Main container */
.about-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

/* Page header */
.about-header {
    text-align: center;
    padding: 2rem 0 2.5rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.15s forwards;
}

/* Tab navigation */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
}

.about-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.9rem 1.75rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    letter-spacing: 0.01em;
}

.about-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.about-tab.active {
    background: rgba(0, 112, 243, 0.18);
    border-color: rgba(0, 112, 243, 0.5);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 112, 243, 0.15);
}

.about-tab svg {
    opacity: 0.6;
}

.about-tab.active svg {
    opacity: 1;
}

/* Sections */
.about-section {
    display: none;
}

.about-section.active {
    display: block;
    animation: sectionIn 0.5s ease forwards;
}

@keyframes sectionIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse>* {
    direction: ltr;
}

/* Section badge */
.section-badge {
    display: inline-block;
    background: rgba(0, 112, 243, 0.12);
    color: var(--primary-accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

/* Section text */
.section-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Stat cards */
.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 112, 243, 0.3);
    box-shadow: 0 8px 30px rgba(0, 112, 243, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Values row */
.values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 112, 243, 0.25);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mission list */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.mission-item:hover {
    border-color: rgba(0, 112, 243, 0.3);
    transform: translateX(6px);
}

.mission-number {
    background: rgba(0, 112, 243, 0.15);
    color: var(--primary-accent);
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.mission-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.mission-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* SSS */
.sss-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sss-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.sss-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ items */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.open {
    border-color: rgba(0, 112, 243, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    gap: 1rem;
}

.faq-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.35s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .values-row {
        grid-template-columns: 1fr 1fr;
    }

    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .about-main {
        padding: 0.5rem 1rem 3rem;
    }

    .about-header {
        padding: 1.5rem 0 1.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.9rem;
    }

    .about-tabs {
        gap: 0.35rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-tab {
        padding: 0.6rem 1rem;
        font-size: 0.78rem;
        border-radius: 10px;
    }

    .about-tab svg {
        width: 14px;
        height: 14px;
    }

    .section-text h2 {
        font-size: 1.3rem;
    }

    .section-text p {
        font-size: 0.88rem;
    }

    .stat-cards {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .values-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .value-card {
        padding: 1.25rem 1rem;
    }

    .value-icon {
        font-size: 1.6rem;
    }

    .value-card h3 {
        font-size: 0.85rem;
    }

    .value-card p {
        font-size: 0.72rem;
    }

    .mission-item {
        padding: 1rem;
    }

    .mission-number {
        min-width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .mission-content h4 {
        font-size: 0.85rem;
    }

    .mission-content p {
        font-size: 0.75rem;
    }

    .sss-header h2 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }

    .faq-answer p {
        font-size: 0.82rem;
    }
}

@media (max-width: 400px) {
    .about-title {
        font-size: 1.5rem;
    }

    .values-row {
        grid-template-columns: 1fr;
    }

    .about-tab {
        font-size: 0.72rem;
        padding: 0.5rem 0.8rem;
    }
}