/* ==================== PAGE HEADER ==================== */
.about-header {
    background: radial-gradient(ellipse at top center, rgba(245, 158, 11, 0.07) 0%, transparent 65%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-header-orb-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    top: -350px;
    right: -150px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-header-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 10%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-header-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    pointer-events: none;
}

/* ==================== VISUAL WRAPPER ==================== */
.about-visual-wrapper {
    position: relative;
    padding: 24px;
}

.about-main-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(20px);
    animation: float 7s ease-in-out infinite;
}

.about-float-card {
    position: absolute;
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.about-float-card-1 {
    top: 0;
    left: -20px;
    animation: float 5s ease-in-out infinite 1s;
}

.about-float-card-2 {
    bottom: 20px;
    right: -10px;
    animation: float 6s ease-in-out infinite 0.5s;
}

/* ==================== PROGRESS BARS ==================== */
.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #d97706, #f59e0b, #fcd34d);
    width: 0;
    transition: width 1.5s ease;
}

.progress-fill.animated {
    /* width set inline, JS triggers animation */
}

/* ==================== VALUE CARDS ==================== */
.value-card {
    padding: 36px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(245, 158, 11, 0.07);
}

.value-card-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(245, 158, 11, 0.08);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 24px;
    transition: color 0.4s ease;
    font-family: 'AzarMehr', sans-serif;
}

.value-card:hover .value-card-number {
    color: rgba(245, 158, 11, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    background: rgba(245, 158, 11, 0.14);
    transform: scale(1.08) rotate(-3deg);
}

/* ==================== TIMELINE ==================== */
.timeline {
    position: relative;
    padding-right: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
            to bottom,
            rgba(245, 158, 11, 0.6) 0%,
            rgba(245, 158, 11, 0.3) 50%,
            rgba(245, 158, 11, 0.05) 100%
    );
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
    padding-right: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    right: -9px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    background: #0a0a0a;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    border-color: #f59e0b;
    background: #f59e0b;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12), 0 0 20px rgba(245, 158, 11, 0.3);
}

.timeline-dot.upcoming {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(245, 158, 11, 0.15);
    background: rgba(245, 158, 11, 0.02);
}

.timeline-date {
    font-size: 0.8rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.timeline-date::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: #f59e0b;
    opacity: 0.6;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.timeline-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    animation: pulse 2s ease infinite;
}

/* ==================== TEAM CARDS ==================== */
.team-card {
    padding: 36px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.03);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(245, 158, 11, 0.08);
}

.team-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto;
}

.team-avatar-inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.08);
    border: 2px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.team-card:hover .team-avatar-inner {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.12);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.team-avatar-badge {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0a0a0a;
}

.team-role {
    font-size: 0.82rem;
    color: #f59e0b;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    padding: 4px 14px;
    display: inline-block;
    margin-top: 6px;
}

.team-social {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737373;
    transition: all 0.3s ease;
}

.team-social:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
    color: #f59e0b;
    transform: translateY(-2px);
}

/* ==================== TRUST CARDS ==================== */
.trust-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s ease;
}

.trust-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.03);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.07);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon {
    background: rgba(245, 158, 11, 0.14);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

/* ==================== COUNTER ==================== */
.counter {
    display: inline-block;
    min-width: 60px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .about-header {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .timeline {
        padding-right: 24px;
    }

    .timeline-item {
        padding-right: 32px;
    }

    .value-card {
        padding: 28px 24px;
    }
}