/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* STORY SECTION */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}
.story-image-wrap {
    position: relative;
    height: 500px;
}
.story-decoration {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #fff8e1 0%, #ffc72c 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(200,16,46,0.2);
    position: relative;
    overflow: hidden;
}
.story-decoration::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(200,16,46,0.15);
    border-radius: 50%;
}
.story-decoration::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}
.story-experience-badge {
    position: absolute;
    bottom: 30px; right: -30px;
    background: #c8102e;
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(200,16,46,0.4);
    border: 4px solid #ffc72c;
}
.story-experience-badge strong {
    display: block;
    font-size: 2.5rem;
    color: #ffc72c;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.story-experience-badge span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8e1;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #ffc72c;
    font-weight: 500;
    color: #8b0a1f;
}
.highlight i { color: #c8102e; }

/* MISSION VISION VALUES */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mv-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,199,44,0.1), transparent);
    transition: left 0.6s;
}
.mv-card:hover::before { left: 100%; }
.mv-card:hover {
    transform: translateY(-10px);
    border-color: #ffc72c;
    background: rgba(255,199,44,0.08);
}
.mv-icon {
    width: 80px; height: 80px;
    background: #ffc72c;
    color: #c8102e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.mv-card h3 { color: #ffc72c; margin-bottom: 15px; }
.mv-card p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.mv-card ul { list-style: none; padding: 0; }
.mv-card ul li {
    padding: 6px 0;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 10px;
}
.mv-card ul li i { color: #ffc72c; }

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, #c8102e, #ffc72c, #c8102e);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }
.timeline-item::after {
    content: '';
    position: absolute;
    top: 35px;
    width: 25px; height: 25px;
    background: #ffc72c;
    border: 4px solid #c8102e;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.left::after { right: -13px; }
.timeline-item.right::after { left: -13px; }
.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #c8102e;
    transition: all 0.3s;
}
.timeline-item.left .timeline-content {
    border-left: none;
    border-right: 5px solid #c8102e;
}
.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #c8102e, #8b0a1f);
    color: #ffc72c;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.timeline-content h4 { color: #c8102e; margin-bottom: 8px; }
.timeline-content p { color: #555; margin: 0; font-size: 0.95rem; }

/* WHY CHOOSE GRID 2 */
.why-choose-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-item {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s;
    border-top: 4px solid #c8102e;
}
.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(200,16,46,0.15);
    border-top-color: #ffc72c;
}
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffc72c;
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.7;
}
.why-item h4 { color: #c8102e; margin-bottom: 10px; }
.why-item p { color: #666; font-size: 0.95rem; margin: 0; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-image-wrap { height: 400px; max-width: 500px; margin: 0 auto; }
    .mv-grid { grid-template-columns: 1fr; }
    .why-choose-grid-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .timeline::before { left: 30px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 70px; text-align: left !important; }
    .timeline-item::after { left: 17px !important; right: auto !important; }
    .timeline-item.left .timeline-content {
        border-right: none;
        border-left: 5px solid #c8102e;
    }
    .why-choose-grid-2 { grid-template-columns: 1fr; }
    .story-experience-badge { right: 10px; bottom: -20px; }
}
