/* About Page Specific Styles - Add to your style.css or create separate about.css */

/* Page Header */
.page-header {
    background: linear-gradient(0deg, rgba(12, 66, 74, 0.95), rgba(12, 66, 74, 0.2)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 150px 0 80px;
    margin-top: 0;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

/* About Introduction */
.about-intro {
    background: var(--white);
}

.about-image {
    position: relative;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-experience-badge h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
}

.about-experience-badge p {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.feature-check-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-check-item i {
    color: var(--primary-red);
    font-size: 20px;
    margin-right: 12px;
}

.feature-check-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Mission & Vision */
.mission-vision {
    background: var(--light-bg);
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon i,
.vision-icon i {
    font-size: 36px;
    color: var(--white);
}

.mission-title,
.vision-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mission-text,
.vision-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Stats Counter */
.stats-counter {
    background: var(--white);
}

.stat-item {
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--dark-bg);
}

.stat-icon i {
    font-size: 48px;
    color: var(--white);
}

.stat-count {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* Why Choose Us */
.why-choose-about {
    background: var(--light-bg);
}

.why-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-icon i {
    font-size: 32px;
    color: var(--primary-red);
}

.why-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Our Process */
.our-process {
    background: var(--dark-bg);
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-number {
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--white);
}

.process-step:hover .process-icon i {
    color: var(--primary-red);
}

.process-icon i {
    font-size: 40px;
    color: var(--white);
    transition: all 0.3s ease;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.process-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-red);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
}

.cta-text {
    font-size: 16px;
    opacity: 0.9;
}

.btn-light {
    background: var(--white);
    color: var(--primary-red);
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 42px;
    }
    
    .about-experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .about-experience-badge h3 {
        font-size: 36px;
    }
    
    .stat-icon {
        width: 80px;
        height: 80px;
    }
    
    .stat-icon i {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-header {
        padding: 130px 0 60px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .process-number {
        font-size: 56px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
        margin-top: 40px;
    }
    
    .process-icon i {
        font-size: 32px;
    }
}
