/* Page Header */
.page-header {
    height: 400px;
    background-image: url('../assets/images/hero-ship.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: calc(var(--utility-bar-height) + var(--header-height));
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(26, 58, 138, 0.85) 100%);
}

.header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.breadcrumb span {
    color: var(--secondary-color);
    font-weight: 500;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Story Section */
.story-section {
    padding: 30px 0 60px;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.story-stats .stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.story-stats .stat .text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(232, 25, 33, 0.4);
}

.image-badge span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e3f2fd 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(232, 25, 33, 0.1), rgba(74, 105, 189, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    transform: scale(1.1);
}

.mission-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Journey Section */
.journey-section {
    padding: 60px 0;
    background: var(--light-bg);
    overflow: hidden;
}

/* Vertical Timeline */
.timeline-vertical {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    /* Compact padding */
}

/* Center Line */
.timeline-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    transform: translateX(-1px);
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    clear: both;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Dot on Line */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 3px var(--white);
    /* White ring */
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary-color);
    box-shadow: 0 0 0 5px rgba(232, 25, 33, 0.2);
}

/* Date Bubble */
.timeline-date {
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 3;
}

/* Content Box */
.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-content.left {
    float: left;
    text-align: right;
}

.timeline-content.right {
    float: right;
    text-align: left;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Arrows */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 6px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-content.left::before {
    right: -10px;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-content.right::before {
    left: -10px;
    border-width: 8px 10px 8px 0;
    border-color: transparent var(--white) transparent transparent;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Global Section */
.global-section {
    padding: 60px 0;
    background-image: url('../assets/images/hero-plane.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.global-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.global-section .container {
    position: relative;
    z-index: 2;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.global-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.global-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.cert-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cert-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cert-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #e3f2fd 0%, var(--light-bg) 100%);
    padding: 50px 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1.05rem;
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image {
        order: -1;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 768px) {
    .page-header {
        height: 350px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .story-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .story-stats {
        flex-direction: column;
        gap: 20px;
    }

    .image-badge {
        bottom: -15px;
        left: 20px;
        padding: 20px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .global-stat {
        flex-direction: column;
        text-align: center;
    }
}