/* =========================================================
   FILOMUZ — GALERİ SAYFASI
   ========================================================= */

.fleet-page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #070f2d url('../assets/images/fleet/fleet-01.jpg') center 42% / cover no-repeat;
}

.fleet-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,10,32,.94) 0%, rgba(5,10,32,.68) 48%, rgba(5,10,32,.28) 100%);
}

.fleet-page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 70px;
}

.fleet-page-hero .eyebrow {
    margin-bottom: 18px;
}

.fleet-page-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.04em;
}

.fleet-page-hero h1 span {
    color: rgba(255,255,255,.42);
}

.fleet-page-hero-content > p:last-child {
    max-width: 560px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.8;
}

.fleet-gallery-section {
    padding: 100px 0 120px;
    background: #fff;
}

.fleet-gallery-heading {
    display: grid;
    grid-template-columns: minmax(160px, .7fr) minmax(0, 1.3fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 55px;
}

.fleet-gallery-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.04em;
    color: #07102d;
}

.fleet-gallery-heading h2 span {
    color: #9ca1ad;
}

.fleet-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fleet-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: pointer;
    background: #0a1230;
}

.fleet-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease, filter .5s ease;
}

.fleet-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4,8,26,.72) 100%);
    opacity: .7;
    transition: opacity .35s ease;
}

.fleet-gallery-item:hover img {
    transform: scale(1.035);
}

.fleet-gallery-item:hover::after {
    opacity: 1;
}

.fleet-gallery-number {
    position: absolute;
    left: 18px;
    bottom: 15px;
    z-index: 2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.fleet-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 80px;
    background: rgba(3,7,22,.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.fleet-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fleet-lightbox figure {
    max-width: min(1200px, 88vw);
    max-height: 90vh;
    margin: 0;
    text-align: center;
}

.fleet-lightbox figure img {
    display: block;
    max-width: 100%;
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.fleet-lightbox figcaption {
    margin-top: 12px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    letter-spacing: .16em;
}

.fleet-lightbox-close,
.fleet-lightbox-prev,
.fleet-lightbox-next {
    position: absolute;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.04);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
}

.fleet-lightbox-close { top: 28px; right: 28px; font-size: 30px; }
.fleet-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.fleet-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.fleet-lightbox-close:hover,
.fleet-lightbox-prev:hover,
.fleet-lightbox-next:hover {
    background: #d71920;
    border-color: #d71920;
}

.fleet-page-footer {
    padding: 25px 0;
    background: #070f2d;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

.fleet-page-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fleet-back-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.fleet-mobile-menu { display: none; }

@media (max-width: 850px) {
    .fleet-page-hero {
        min-height: 390px;
    }

    .fleet-page-hero-content {
        padding-top: 130px;
        padding-bottom: 55px;
    }

    .fleet-gallery-section {
        padding: 70px 0 80px;
    }

    .fleet-gallery-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 35px;
    }

    .fleet-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .fleet-mobile-menu {
        position: fixed;
        top: 88px;
        left: 0;
        width: 100%;
        z-index: 9998;
        display: none;
        flex-direction: column;
        padding: 10px 20px 20px;
        box-sizing: border-box;
        background: rgba(7,16,45,.98);
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: 1px solid rgba(255,255,255,.1);
        backdrop-filter: blur(18px);
    }

    .fleet-mobile-menu.active { display: flex; }

    .fleet-mobile-menu a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        color: rgba(255,255,255,.86);
        text-decoration: none;
        font-size: 15px;
    }

    .fleet-mobile-menu a:last-child { border-bottom: 0; }

    .fleet-lightbox {
        padding: 30px 14px;
    }

    .fleet-lightbox figure {
        max-width: 94vw;
    }

    .fleet-lightbox figure img {
        max-height: 78vh;
    }

    .fleet-lightbox-prev,
    .fleet-lightbox-next {
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .fleet-lightbox-prev { left: 24px; }
    .fleet-lightbox-next { right: 24px; }

    .fleet-page-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .fleet-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fleet-gallery-item {
        aspect-ratio: 3 / 2;
    }

    .fleet-page-hero {
        min-height: 350px;
        background-position: 62% center;
    }

    .fleet-page-hero-overlay {
        background: linear-gradient(90deg, rgba(5,10,32,.93), rgba(5,10,32,.55));
    }

    .fleet-page-hero h1 {
        font-size: 43px;
    }
}

body.fleet-lightbox-open { overflow: hidden; }
