/* =====================================================
   ABOUT US PAGE STYLES
   ===================================================== */

/* Hero Section */
.about-hero {
    padding-top: 130px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, rgba(7,9,42,0.85) 0%, rgba(13,16,64,0.95) 100%), url('../images/home-banner.png') center/cover no-repeat;
    position: relative;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-hero::before {
    content: ''; position: absolute;
    top: -20%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,48,180,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.about-title { font-size: 48px; font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.about-subtitle { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Breadcrumbs */
.breadcrumb {
    margin-top: 20px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.breadcrumb a { color: #f5a623; transition: color 0.3s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.4); }

/* Our Story Section */
.about-story { padding: 100px 0; background: var(--bg-color); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text { font-size: 16px; color: #4b5563; line-height: 1.8; margin-bottom: 20px; }
.mission-vision-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.mv-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 24px; border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.mv-card:hover { transform: translateY(-5px); border-color: rgba(245,166,35,0.4); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.mv-icon { font-size: 32px; color: #f5a623; margin-bottom: 16px; }
.mv-card h3 { font-size: 20px; color: #111827; margin-bottom: 12px; }
.mv-card p { font-size: 14px; color: #4b5563; line-height: 1.6; }

.story-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.story-img { width: 100%; height: auto; display: block; filter: brightness(0.85); transition: filter 0.5s; }
.story-image-wrapper:hover .story-img { filter: brightness(1); }
.story-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,9,42,0.9), transparent);
    pointer-events: none;
}

/* Features / Why Choose Us */
.about-features { padding: 100px 0; background: #ffffff; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 36px 24px; border-radius: 20px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.feature-card:hover { background: #ffffff; border-color: rgba(245,166,35,0.4); transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.feature-icon-box {
    width: 64px; height: 64px; margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #f5a623;
    transition: transform 0.3s;
}
.feature-card:hover .feature-icon-box { transform: scale(1.1) rotate(5deg); background: #f5a623; color: #ffffff; }
.feature-title { font-size: 20px; color: #111827; margin-bottom: 12px; font-weight: 700; }
.feature-desc { font-size: 14px; color: #4b5563; line-height: 1.6; }

/* Impact Stats */
.about-stats { padding: 80px 0; background: #f8fafc; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.about-stats .stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 80px; text-align: center; }
.about-stats .stat-number { font-size: 48px; font-weight: 900; color: #f5a623; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.about-stats .stat-label { font-size: 16px; color: #4b5563; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Responsive adjustments for About Page */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats .stats-grid { gap: 40px; }
}
@media (max-width: 768px) {
    .story-grid { grid-template-columns: 1fr; }
    .mission-vision-cards { grid-template-columns: 1fr; }
    .about-title { font-size: 36px; }
    .features-grid { grid-template-columns: 1fr; }
    .about-stats .stats-grid { flex-direction: column; gap: 30px; }
}
@media (max-width: 600px) {
    .about-hero { padding-top: 120px; padding-bottom: 20px; }
    .about-title { font-size: 24px; margin-bottom: 10px; }
    .about-subtitle { font-size: 13px; line-height: 1.5; padding: 0 10px; text-align: justify; }
    .story-grid { gap: 30px; }
    .about-story { padding: 50px 0; }
    .story-text { font-size: 13px; line-height: 1.6; margin-bottom: 16px; text-align: justify; }
    .about-story .section-title { font-size: 24px; line-height: 1.25; margin-bottom: 16px; }
    .mission-vision-cards { gap: 16px; margin-top: 24px; }
    .mv-card { padding: 16px; }
    .mv-icon { font-size: 26px; margin-bottom: 10px; }
    .mv-card h3 { font-size: 16px; margin-bottom: 8px; }
    .mv-card p { font-size: 12px; text-align: justify; }
    .about-features { padding: 50px 0; }
    .about-features .section-title { font-size: 24px; margin-bottom: 12px; }
    .about-features .section-desc { font-size: 13px; line-height: 1.5; text-align: justify; }
    .features-grid { margin-top: 30px; gap: 20px; }
    .feature-card { padding: 24px 16px; }
    .feature-icon-box { width: 48px; height: 48px; font-size: 20px; margin-bottom: 16px; }
    .feature-title { font-size: 16px; margin-bottom: 8px; }
    .feature-desc { font-size: 12px; text-align: justify; }
    .about-stats { padding: 40px 0; }
    .about-stats .stats-grid { flex-direction: row; gap: 20px; justify-content: space-evenly; }
    .about-stats .stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .about-stats .stat-number { font-size: 28px; margin-bottom: 4px; }
    .about-stats .stat-label { font-size: 11px; }
}
