/* ============================================================
   ARCHIGOS - About Page Styles
   ============================================================ */

/* Intro Section */
.about-intro { padding: 80px 0; }
.about-intro-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
}
.about-intro-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-intro-img .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 18px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(26,188,156,0.3);
}
.experience-badge .number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.experience-badge .label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}
.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.02rem;
}
.about-text .highlight-box {
    background: var(--light);
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
}
.about-text .highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--primary);
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 14px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #eef1f5;
    transition: all 0.4s;
    height: 100%;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}
.value-card .v-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--accent-light);
    transition: all 0.3s;
}
.value-card:hover .v-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}
.value-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.value-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
    width: 45%;
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eef1f5;
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 25px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 3px var(--accent);
    z-index: 2;
}
.timeline-content .year {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.timeline-content h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.timeline-content p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) { flex-direction: row; }
    .timeline-content { width: calc(100% - 50px); margin-left: 50px !important; margin-right: 0 !important; }
    .timeline-dot { left: 20px; }
}
