/* ==========================================
   About Page - Additional Styles
   ========================================== */

/* === Page Hero About === */
.page-hero-about {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #e0f2f1 0%, #f0fdfa 50%, #ecfdf5 100%);
    overflow: hidden;
}

.page-hero-about::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 222, 177, 0.2), transparent 70%);
    top: -200px;
    right: 10%;
    animation: float 15s infinite ease-in-out;
}

.page-hero-about .page-hero-content {
    text-align: center;
    padding: 0 20px;
}

/* === Story Detail === */
.story-detail {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 100px);
    align-items: center;
}

.story-images {
    position: relative;
}

.story-main-image {
    position: relative;
    padding-top: 120%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-main-image .image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(50, 150, 155, 0.3);
}

.story-mini-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.mini-image {
    position: relative;
    padding-top: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.mini-image .image-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b2dfdb, #80cbc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(50, 150, 155, 0.4);
}

.story-paragraphs p {
    margin-bottom: 25px;
    color: var(--gray);
    font-size: 1.05rem;
}

.story-paragraphs p:last-child {
    margin-bottom: 0;
}

/* === Values Section === */
.values-section {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--light);
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-item {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-content p {
    color: var(--gray);
    font-size: 1rem;
}

/* === Mission Vision === */
.mission-vision {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
}

.mv-item {
    padding: 50px;
    background: linear-gradient(135deg, rgba(50, 150, 155, 0.05), rgba(70, 222, 177, 0.05));
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.mv-item h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.mv-item p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* === Timeline Section === */
.timeline-section {
    padding: clamp(100px, 15vw, 180px) 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.timeline-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
    background-size: 40px 40px;
}

.timeline-new {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.timeline-block {
    position: relative;
    margin-bottom: 80px;
}

.timeline-block:nth-child(even) .timeline-card {
    margin-left: auto;
    margin-right: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-card {
    width: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.timeline-card p {
    color: var(--gray);
    margin: 0;
}

/* === Team Section === */
.team-section-new {
    padding: clamp(80px, 12vw, 150px) 0;
    background: var(--light);
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.team-member {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(50, 150, 155, 0.5);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.team-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.team-member p:last-child {
    color: var(--gray);
    margin: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .story-main-image {
        padding-top: 100%;
    }
    
    .values-grid-new,
    .team-grid-new {
        grid-template-columns: 1fr;
    }
    
    .mv-item {
        padding: 30px;
    }
    
    .timeline-block {
        margin-bottom: 50px;
    }
}