/* ===================== */
/* Page Header */
/* ===================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1f1f1f 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== */
/* About Section */
/* ===================== */
.about-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-image-overlay {
    position: absolute;
    bottom: -20px;
    left: -20px;
}

.years-badge {
    background: linear-gradient(135deg, var(--accent-color), #e55a2b);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.years-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.years-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: linear-gradient(145deg, var(--secondary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 150px;
}

.stat-box i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===================== */
/* Mission & Vision */
/* ===================== */
.mission-vision {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.mv-card {
    background: linear-gradient(145deg, var(--primary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.mv-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===================== */
/* Values Section */
/* ===================== */
.values-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    z-index: 2;
}

.value-card {
    background: linear-gradient(145deg, var(--secondary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.2);
    position: absolute;
    top: 10px;
    left: 15px;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
}

/* ===================== */
/* Team Section */
/* ===================== */
.team-section {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.team-card {
    background: linear-gradient(145deg, var(--primary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-gray), var(--secondary-color));
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.team-social a:hover {
    transform: translateY(-3px);
    background: white;
    color: var(--accent-color);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================== */
/* Partners Section */
/* ===================== */
.partners-section {
    padding: 80px 0;
    background: var(--primary-color);
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.partner-logo i {
    font-size: 3rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.partner-logo:hover {
    color: var(--accent-color);
}

.partner-logo:hover i {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 150px 0 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-image-overlay {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .stat-box {
        min-width: 100%;
    }
}