/* about.css - Specific styles for the About Us page, building upon styles.css */

.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    overflow: hidden;
    text-align: center;
}

.ah-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ah-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.7) contrast(1.1);
}

.ah-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 16, 29, 0.4) 0%, #08101d 100%);
}

.ah-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ah-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 20%, var(--gold-bright) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ah-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Mission Section */
.mission {
    padding: 80px 5%;
    background: var(--bg);
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ms-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ms-val {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold-bright);
    line-height: 1;
}

.ms-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.mc-card svg {
    margin-bottom: 16px;
}

.mc-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.mc-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Fleet Section */
.fleet {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fg-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fg-item:hover img {
    transform: scale(1.05);
}

.fg-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.fg-overlay h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.fg-overlay p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Responsive Updates */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero {
        min-height: 60vh;
    }

    .mission-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}