/* ========================================
   ABOUT PAGE SPECIFIC STYLES
======================================== */

/* ========================================
   WHO WE ARE SECTION
======================================== */
.who-we-are-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 1.1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary-red);
}

.founding-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
}

.founding-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.founding-item i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-top: 5px;
}

.founding-item h4 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.founding-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.collage-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.collage-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collage-main:hover .image-caption {
    transform: translateY(0);
}

.image-caption i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: var(--primary-red);
}

.image-caption p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.collage-secondary {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.collage-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.85), rgba(0, 128, 255, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-secondary:hover .stats-overlay {
    opacity: 1;
}

.stats-overlay .stat {
    text-align: center;
    color: var(--white);
}

.stats-overlay .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-overlay .stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   WHAT WE DO SECTION
======================================== */
.what-we-do-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.programs-showcase {
    margin-top: 60px;
}

.program-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid var(--border-color);
}

.program-showcase-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.program-showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.program-showcase-image img {
    width: 100%;
    height: 450px;
    display: block;
    transition: transform 0.5s ease;
}

.program-showcase-image:hover img {
    transform: scale(1.1);
}

.program-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-badge i {
    font-size: 2.5rem;
    color: var(--white);
}

.program-showcase-content h3 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.program-showcase-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.program-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.program-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.program-benefits i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.program-stats .stat-item {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.program-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.program-stats .stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* OTC Modules */
.otc-modules {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid var(--border-color);
}

.otc-modules h4 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modules-grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.modules-grid span i {
    color: var(--primary-red);
}

.achievement-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 128, 255, 0.1));
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-red);
    margin-top: 25px;
}

.achievement-highlight i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.achievement-highlight span {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.achievement-highlight strong {
    color: var(--primary-red);
    font-size: 1.5rem;
}

/* Video Preview */
.video-preview {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 25px 0;
}

.video-preview i {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.video-preview p {
    font-size: 1.1rem;
    margin: 0;
}

/* ========================================
   TEAM SECTION
======================================== */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgba(0, 128, 255, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-member:hover .member-social a {
    transform: translateY(0);
    opacity: 1;
}

.member-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.member-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.member-social a:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.member-role {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.member-title {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-view-profile {
    background-color: var(--bg-light);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-profile:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ========================================
   VALUE CARDS ENHANCEMENT
======================================== */
.value-card {
    position: relative;
}

.value-letter {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN - ABOUT PAGE
======================================== */
@media (max-width: 992px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-showcase-item:nth-child(even) .program-showcase-image {
        order: 1;
    }

    .program-showcase-item:nth-child(even) .program-showcase-content {
        order: 2;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 2rem;
    }

    .founding-info {
        padding: 20px;
    }

    .collage-main img {
        height: 300px;
    }

    .collage-secondary img {
        height: 200px;
    }

    .program-showcase-item {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .program-showcase-image img {
        height: 300px;
    }

    .program-showcase-content h3 {
        font-size: 1.6rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .program-stats {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .founding-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .founding-item i {
        font-size: 1.5rem;
    }

    .program-showcase-content h3 {
        font-size: 1.4rem;
    }

    .program-badge {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
    }

    .program-badge i {
        font-size: 1.8rem;
    }

    .otc-modules {
        padding: 20px;
    }

    .achievement-highlight {
        flex-direction: column;
        text-align: center;
    }
}