/* About Page Specific Styles - Organic Aviation Edition */

/* 1. Font Definitions */
.font-orbitron {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* 2. Premium Inner Banner */
.inner-banner {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.inner-banner .container {
    position: relative;
    z-index: 5;
    
}

.inner-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #EF7721;
}

.bc-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
}

.breadcrumb .active {
    color: #EF7721;
    font-weight: 500;
}


/* 3. Company Detail Section (Asymmetric Stack Layout) */
.about-company-detail {
    background-color: #ffffff;
}

.company-detail-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.company-tagline {
    font-size: 20px;
    font-weight: 700;
    color: #EF7721;
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 4px solid #EF7721;
    padding-left: 20px;
}

.company-paragraphs p {
    font-size: 15px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.company-paragraphs p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* 整合一体化数据看板样式 (对标首页 About 风格) */
.company-stats-bar {
    display: flex;
    gap: 40px;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #eee;
}

.stat-item-box {
    display: flex;
    flex-direction: column;
}

.stat-number-text {
    font-size: 38px;
    font-weight: 800;
    color: #EF7721;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-unit {
    font-size: 18px;
    margin-left: 2px;
}

.stat-label-text {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}


/* 4. About Overlapping Image Stack (Replicated from Homepage About) */
.about-image-stack {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}

.image-main {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-main img {
    width: 100%;
    display: block;
}

.image-sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    z-index: 3;
    border: 8px solid #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-sub img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    left: -30px;
    top: 50px;
    z-index: 4;
    background: #EF7721;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(239, 119, 33, 0.3);
}

.experience-badge.right-badge {
    left: auto;
    right: -30px;
}

.exp-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
}


/* 5. Flight Navigation Pillars Section (Asymmetric Advantages Style) */
.about-culture-pillars {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.culture-pillars-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.culture-pillars-left {
    position: sticky;
    top: 120px;
}

.culture-quote {
    margin: 35px 0 0;
    padding: 0;
    border: none;
}

.quote-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 跑道流线装饰 */
.runway-decorator {
    position: relative;
    margin-top: 45px;
    height: 40px;
}

.runway-line {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #EF7721 50%, transparent 50%);
    background-size: 15px 1px;
    opacity: 0.5;
}

.aircraft-dot {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #EF7721;
    border-radius: 50%;
    box-shadow: 0 0 10px #EF7721;
}


/* 6. Staggered Culture Card Layout (Consistent with Homepage Advantages) */
.culture-pillars-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.culture-pillar-card {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.pillar-icon-circle {
    flex: 0 0 60px;
    height: 60px;
    background: #fdf2e9;
    color: #EF7721;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(239, 119, 33, 0.05);
}

.pillar-content-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.pillar-content-info p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* 核心优势风格悬浮位移特效 */
.culture-pillar-card:hover {
    transform: translateX(10px);
    border-color: #EF7721;
    box-shadow: 0 5px 20px rgba(239, 119, 33, 0.08);
}

.culture-pillar-card:hover .pillar-icon-circle {
    background: #EF7721;
    color: #fff;
    border-color: #EF7721;
    box-shadow: 0 8px 18px rgba(239, 119, 33, 0.2);
}


/* 7. Responsive Breakpoints Handled Organically */
@media (max-width: 1200px) {
    .company-detail-inner {
        gap: 40px;
    }
    .culture-pillars-inner {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .inner-banner {
        height: 260px;
    }
    .inner-banner h1 {
        font-size: 34px;
    }
    .company-detail-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-stack {
        max-width: 550px;
        margin: 0 auto;
    }
    .culture-pillars-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .culture-pillars-left {
        position: relative;
        top: 0;
    }
    .runway-decorator {
        display: none;
    }
}

@media (max-width: 576px) {
    .inner-banner {
        height: 220px;
    }
    .inner-banner h1 {
        font-size: 28px;
    }
    .company-stats-bar {
        flex-direction: column;
        gap: 25px;
        padding-top: 25px;
    }
    .about-image-stack {
        padding-bottom: 30px;
        padding-right: 30px;
    }
    .image-sub {
        width: 180px;
    }
    .experience-badge {
        padding: 15px;
        top: 20px;
        right: -15px;
    }
    .exp-num {
        font-size: 32px;
    }
    .exp-text {
        font-size: 10px;
    }
    .culture-pillar-card {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }
    .pillar-icon-circle {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
    }
}
