/* ========================================
   ABOUT PAGE - Dedicated Styles
   ======================================== */

/* --- Shared Utilities --- */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 206, 209, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.section-badge i {
    font-size: 0.75rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Page Header --- */

.about-header {
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.about-header-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.about-header .header-content {
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.about-badge i {
    font-size: 0.75rem;
}

.header-highlight {
    color: var(--primary-color);
}

.header-stats-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.header-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.header-stat-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-stat-pill i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* --- Our Story Section --- */

.our-story {
    padding: 6rem 0;
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-quote {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08), rgba(27, 59, 111, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 1.75rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    position: relative;
}

.story-quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.6;
}

.story-quote p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.visual-stat {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.visual-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.visual-stat:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 206, 209, 0.15);
}

.visual-stat:hover::before {
    opacity: 1;
}

.visual-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(27, 59, 111, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.visual-stat-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.visual-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.visual-stat p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Mission & Vision --- */

.mission-vision {
    padding: 6rem 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.mv-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mv-icon i {
    font-size: 1.75rem;
    color: #ffffff;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.mv-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.mv-card:hover .mv-accent {
    opacity: 1;
}

/* --- Our Approach --- */

.our-approach {
    padding: 6rem 0;
    background: var(--bg-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.approach-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.approach-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 206, 209, 0.12);
}

.approach-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.25rem;
    opacity: 0.7;
}

.approach-card:hover .approach-number {
    opacity: 1;
}

.approach-card-content h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.approach-card-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.approach-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.approach-card:hover .approach-card-line {
    width: 100%;
}

/* --- Our Values --- */

.our-values {
    padding: 6rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.12), rgba(27, 59, 111, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: #ffffff;
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* --- Team Section --- */

.our-team {
    padding: 6rem 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover {
    border-color: rgba(0, 206, 209, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.team-card:hover::after {
    transform: scaleX(1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.25);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 206, 209, 0.35);
}

.team-avatar i {
    font-size: 1.75rem;
    color: #ffffff;
}

.team-card-body h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.team-card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* --- Track Record --- */

.track-record {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f2847 100%);
    color: var(--text-white);
}

.record-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.record-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.record-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.record-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), rgba(0, 206, 209, 0.6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.record-stat .stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.record-stat .stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.record-stat .stat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.record-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 206, 209, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.highlight-icon i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.highlight-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-stat {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

/* ========================================
   RESPONSIVE - ABOUT PAGE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        position: static;
    }

    .approach-grid {
        grid-template-columns: 1fr 1fr;
    }

    .record-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .record-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: 4rem 0 3.5rem;
    }

    .about-header h1 {
        font-size: 2.25rem;
    }

    .header-stats-row {
        gap: 0.5rem;
    }

    .header-stat-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }

    .our-story,
    .mission-vision,
    .our-approach,
    .our-values,
    .our-team,
    .track-record {
        padding: 4rem 0;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-visual {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .visual-stat {
        padding: 1.25rem 1rem;
    }

    .visual-stat h3 {
        font-size: 1.75rem;
    }

    .visual-stat p {
        font-size: 0.7rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .approach-card {
        padding: 2rem;
    }

    .approach-number {
        font-size: 2.25rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .value-card {
        padding: 1.75rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .team-card {
        padding: 1.75rem 1.5rem;
    }

    .record-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .record-stat {
        padding: 1.75rem 1rem;
    }

    .record-stat .stat-content h3 {
        font-size: 2rem;
    }

    .record-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .highlight-stat {
        font-size: 1.35rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 3rem 0 2.5rem;
    }

    .about-header h1 {
        font-size: 1.75rem;
    }

    .about-header p {
        font-size: 1rem;
    }

    .header-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .our-story,
    .mission-vision,
    .our-approach,
    .our-values,
    .our-team,
    .track-record {
        padding: 3rem 0;
    }

    .story-text h2 {
        font-size: 1.75rem;
    }

    .story-text .lead {
        font-size: 1.05rem;
    }

    .story-quote {
        padding: 1.25rem 1.5rem;
    }

    .story-quote p {
        font-size: 1.1rem;
    }

    .visual-stat {
        padding: 1rem 0.75rem;
    }

    .visual-stat-icon {
        width: 40px;
        height: 40px;
    }

    .visual-stat h3 {
        font-size: 1.5rem;
    }

    .mv-card {
        padding: 1.75rem;
    }

    .mv-icon {
        width: 55px;
        height: 55px;
    }

    .mv-icon i {
        font-size: 1.35rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .approach-number {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem 1rem;
    }

    .value-icon {
        width: 55px;
        height: 55px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .team-avatar i {
        font-size: 1.35rem;
    }

    .team-card-body h3 {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }

    .team-card-body p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .record-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .record-stat {
        padding: 1.25rem 0.75rem;
        border-radius: 14px;
    }

    .record-stat .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }

    .record-stat .stat-icon i {
        font-size: 1.1rem;
    }

    .record-stat .stat-content h3 {
        font-size: 1.5rem;
    }

    .record-stat .stat-content p {
        font-size: 0.7rem;
    }

    .record-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .highlight-card {
        padding: 1.25rem 1rem;
    }

    .highlight-card h4 {
        font-size: 0.7rem;
    }

    .highlight-stat {
        font-size: 1.15rem;
    }
}