/* ==================== About Page Styles ==================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0 40px;
    margin-bottom: 0;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.page-header .breadcrumb-item a {
    color: #ee731b;
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: #999;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #666;
}

.page-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* About Page */
.about-page {
    background: #f8f9fa;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ee731b 0%, #ff9a56 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(238, 115, 27, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-subtitle {
    color: #ee731b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-description {
    color: #555;
    line-height: 1.8;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ee731b 0%, #d65e0f 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 115, 27, 0.3);
}

.btn-catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 115, 27, 0.4);
    color: #fff;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.mission-vision-card.mission::before {
    background: linear-gradient(180deg, #ee731b, #ff9a56);
}

.mission-vision-card.vision::before {
    background: linear-gradient(180deg, #004e89, #0073b1);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-vision-card .icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission::before~.icon-box,
.mission .icon-box {
    background: rgba(238, 115, 27, 0.1);
    color: #ee731b;
}

.vision .icon-box {
    background: rgba(0, 78, 137, 0.1);
    color: #004e89;
}

.mission-vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.mission-vision-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Feature Boxes */
.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(238, 115, 27, 0.15);
    border-color: #ee731b;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(238, 115, 27, 0.1) 0%, rgba(238, 115, 27, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ee731b;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, #ee731b 0%, #ff9a56 100%);
    color: #fff;
    transform: scale(1.1);
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .experience-badge {
        padding: 15px 20px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .mission-vision-card {
        padding: 25px;
    }
}