* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0f14;
    color: #e8edf2;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   HEADER
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;

    padding: 25px 0;

    border-bottom: 1px solid #1d2933;

    background: rgba(10, 16, 21, 0.92);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #9ba8b4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

nav a:hover {
    color: #ffffff;
}


/* =========================
   LANGUAGE
========================= */

.language {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 10px;
}

.language button {
    background: none;
    border: none;
    color: #71808d;
    font-size: 12px;
    cursor: pointer;
    padding: 3px;
}

.language button:hover {
    color: #ffffff;
}

.language span {
    color: #394650;
    font-size: 11px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 89px);

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(7, 12, 17, 0.90) 0%,
            rgba(7, 12, 17, 0.60) 40%,
            rgba(7, 12, 17, 0.20) 100%
        ),
        url("images/hero.jpeg");

    background-size: 100% auto;
    background-position: center 60%;
    background-repeat: no-repeat;
}

.eyebrow {
    color: #6f8292;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

h1 {
    font-size: clamp(56px, 7vw, 92px);
    line-height: 0.95;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -3px;
}

h2 {
    font-size: 25px;
    font-weight: 400;
    color: #9ba8b4;
    margin-bottom: 25px;
}

.intro {
    max-width: 550px;
  color: #F1F3F5;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 130px;
    padding: 13px 22px;

    border-radius: 4px;
    text-decoration: none;

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;

    transition: all 0.25s ease;
}

.btn.primary {
    background: #e8edf2;
    color: #0a0f14;
    border: 1px solid #e8edf2;
}

.btn.primary:hover {
    background: transparent;
    color: #e8edf2;
    transform: translateY(-2px);
}

.btn.secondary {
    background: rgba(10, 15, 20, 0.45);
    color: #e8edf2;
    border: 1px solid rgba(232, 237, 242, 0.35);
    backdrop-filter: blur(6px);
}

.btn.secondary:hover {
    border-color: #e8edf2;
    background: rgba(232, 237, 242, 0.08);
    transform: translateY(-2px);
}


/* =========================
   ABOUT
========================= */

.about {
    position: relative;

    padding: 140px 0;

    border-top: 1px solid #1d2933;

    overflow: hidden;
}

.about .container {
    max-width: 1200px;
}

.about-grid {
    display: grid;

    grid-template-columns: 35% 65%;

    align-items: start;
}

.about-heading {
    padding-right: 60px;
}

.section-label {
    color: #6f8292;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 22px;
}

.about-heading h2 {
    color: #e8edf2;

    font-size: clamp(44px, 4.5vw, 64px);

    line-height: 1.03;

    font-weight: 500;

    letter-spacing: -2px;

    margin: 0;
}

.about-heading h2 span {
    color: #71808d;
}

.about-content {
    max-width: 680px;

    padding-left: 20px;
}

.about-content p {
    color: #9ba8b4;

    font-size: 17px;

    line-height: 1.85;

    margin-bottom: 30px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about::after {
    content: "AK";

    position: absolute;

    right: -35px;
    bottom: -70px;

    font-size: 300px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: -20px;

    color: rgba(232, 237, 242, 0.018);

    pointer-events: none;

    user-select: none;
}


/* =========================
   EXPERIENCE
========================= */

.experience {
    padding: 150px 0;

    border-top: 1px solid #1d2933;
}

.experience .container {
    max-width: 1000px;
}

.experience-title {
    color: #e8edf2;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    letter-spacing: -2px;

    margin: 0 0 90px;
}

.experience-list {
    border-left: 1px solid #293640;

    display: flex;

    flex-direction: column;

    gap: 150px;
}

.experience-item {
    position: relative;

    padding-left: 50px;

    margin: 0;
}

.experience-date {
    position: absolute;

    left: -18px;
    top: 0;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0a0f14;

    border: 1px solid #394650;

    color: #71808d;

    font-size: 11px;

    letter-spacing: 1px;

    z-index: 2;
}

.experience-content {
    max-width: 760px;
}

.experience-content h3 {
    color: #e8edf2;

    font-size: 27px;

    font-weight: 500;

    margin-bottom: 8px;

    letter-spacing: -0.5px;
}

.experience-content h4 {
    color: #9ba8b4;

    font-size: 17px;

    font-weight: 400;

    margin-bottom: 8px;
}

.experience-location {
    display: block;

    color: #6f8292;

    font-size: 12px;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.experience-period {
    display: block;

    color: #e8edf2;

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.5px;

    margin-bottom: 25px;

    line-height: 1.7;
}

.experience-content p {
    color: #71808d;

    font-size: 16px;

    line-height: 1.85;

    margin: 0;
}


/* =========================
   EXPERIENCE IMAGES
========================= */

.experience-images {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 35px;

    max-width: 820px;

    align-items: start;
}

.experience-images img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    display: block;

    border: 1px solid #26333d;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease;
}

.experience-images img:hover {
    transform: translateY(-4px);

    border-color: #71808d;

    opacity: 0.9;
}


/* =========================
   TEK FOTOĞRAFLI DENEYİM
========================= */

.experience-item:last-child .experience-images {
    grid-template-columns:
        minmax(0, 650px);
}

.experience-item:last-child .experience-images img {
    width: auto;

    max-width: 100%;

    max-height: 500px;

    height: auto;

    object-fit: contain;
}


/* =========================
   CURSOR PLANE
========================= */

.cursor-plane {
    position: fixed;

    width: 55px;

    height: auto;

    left: 0;
    top: 0;

    pointer-events: none;

    z-index: 9999;

    transform:
        translate(-50%, -50%);

    filter:
        brightness(0)
        invert(1);
}


/* =========================
   PLANE TRAIL
========================= */

#planeTrail {
    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 9998;
}

.trail-dot {
    position: fixed;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        rgba(220, 235, 245, 0.7);

    box-shadow:
        0 0 10px
        rgba(180, 220, 255, 0.8);

    pointer-events: none;

    animation:
        trailFade 1.2s ease-out forwards;
}

@keyframes trailFade {

    0% {
        opacity: 0.8;

        transform:
            scale(1);
    }

    100% {
        opacity: 0;

        transform:
            scale(0.2);
    }

}


/* =========================
   PROJECTS
========================= */

.projects {
    padding: 140px 0;

    border-top: 1px solid #1d2933;
}

.projects .container {
    max-width: 1000px;
}

.projects-title {
    color: #e8edf2;

    font-size: clamp(42px, 5vw, 64px);

    font-weight: 500;

    letter-spacing: -2px;

    margin: 0 0 80px;
}

.projects-list {
    border-left: 1px solid #293640;
}

.project-item {
    position: relative;

    padding-left: 50px;
}

.project-item:not(:last-child) {
    margin-bottom: 80px;
}


/* =========================
   PROJECT NUMBER
========================= */

.project-date {
    position: absolute;

    left: -18px;
    top: 0;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #0a0f14;

    border: 1px solid #394650;

    color: #71808d;

    font-size: 11px;

    letter-spacing: 1px;

    z-index: 2;
}


/* =========================
   PROJECT CONTENT
========================= */

.project-content {
    max-width: 760px;
}

.project-content h3 {
    color: #e8edf2;

    font-size: 27px;

    font-weight: 500;

    margin-bottom: 8px;

    letter-spacing: -0.5px;
}

.project-content h4 {
    color: #9ba8b4;

    font-size: 17px;

    font-weight: 400;

    margin-bottom: 8px;
}

.project-location {
    display: block;

    color: #6f8292;

    font-size: 12px;

    letter-spacing: 1.5px;

    margin-bottom: 25px;
}

.project-content p {
    color: #71808d;

    font-size: 16px;

    line-height: 1.85;

    margin: 0;
}

.project-link {
    display: inline-block;

    margin-top: 25px;

    color: #9fb7c2;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 0.5px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.project-link:hover {
    color: #ffffff;

    transform:
        translateX(4px);
}


/* =========================
   PROJECT IMAGES
   HANGAR
========================= */

.project-images {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 35px;

    max-width: 820px;

    align-items: start;
}

.project-images img {
    width: 100%;

    height: 230px;

    object-fit: cover;

    object-position: center;

    display: block;

    border: 1px solid #26333d;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease;
}

.project-images img:hover {
    transform:
        translateY(-4px);

    border-color: #71808d;

    opacity: 0.9;
}


/* =========================
   MOTIVO
========================= */

.projects-list >
.project-item:nth-child(2)
.project-images {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 30px;

    max-width: 520px;

    align-items: start;
}

.projects-list >
.project-item:nth-child(2)
.project-images img {

    width: 100%;

    height: auto;

    max-width: 160px;

    object-fit: contain;

    object-position: top center;

    display: block;

    margin: 0 auto;

    border: 1px solid #26333d;

    background: transparent;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease;
}

.projects-list >
.project-item:nth-child(2)
.project-images img:hover {

    transform:
        translateY(-4px);

    border-color: #71808d;

    opacity: 0.9;
}


/* =========================
   AVIATION FLIGHT DISPLAY
========================= */

#aviationOverlay {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(19, 36, 47, 0.94),
            rgba(3, 8, 12, 0.98)
        );

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

#aviationOverlay.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================
   AVIATION PANEL
========================= */

.aviation-panel {
    position: relative;

    width: min(1100px, 92vw);

    padding: 28px 38px 24px;

    background: #061016;

    border: 1px solid #263b47;

    box-shadow:
        0 0 60px rgba(0, 0, 0, 0.55),
        inset 0 0 40px rgba(20, 80, 100, 0.04);

    color: #b7d8e7;

    font-family:
        "Courier New",
        monospace;
}


/* =========================
   CLOSE
========================= */

.aviation-close {
    position: absolute;

    top: 14px;
    right: 16px;

    width: 36px;
    height: 36px;

    border: 1px solid #304955;

    background: transparent;

    color: #7fa9ba;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.aviation-close:hover {
    background: #13242d;

    color: #ffffff;

    border-color: #6c9aac;
}


/* =========================
   AVIATION TOP
========================= */

.aviation-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 20px;

    border-bottom: 1px solid #1b303b;
}

.aviation-top > div:first-child {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.aviation-label {
    font-size: 11px;

    letter-spacing: 4px;

    color: #6f9bad;
}

.aviation-top strong {
    font-size: 14px;

    letter-spacing: 2px;

    color: #d5e8ef;
}

.flight-status {
    color: #65c58b;

    font-size: 12px;

    letter-spacing: 2px;
}


/* =========================
   FLIGHT DATA
========================= */

.flight-data {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    margin: 18px 0;

    background: #1c3039;

    border: 1px solid #1c3039;
}

.flight-data-item {
    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #08141b;
}

.flight-data-item span {
    color: #638d9f;

    font-size: 11px;

    letter-spacing: 2px;
}

.flight-data-item strong {
    color: #d8edf4;

    font-size: 21px;

    letter-spacing: 1px;

    min-width: 62px;

    text-align: right;
}

.flight-data-item small {
    color: #557887;

    font-size: 9px;
}


/* =========================
   MAIN DISPLAY
========================= */

.flight-display {
    position: relative;

    width: 100%;

    height: 500px;

    overflow: hidden;

    border: 1px solid #213943;

    background: #071219;
}


/* =========================
   SKY
========================= */

.sky {
    position: absolute;

    inset: 0 0 50% 0;

    background:
        linear-gradient(
            to bottom,
            #07151d 0%,
            #0b1e28 55%,
            #173542 100%
        );
}


/* =========================
   GROUND
========================= */

.ground {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 50%;

    background:
        linear-gradient(
            to bottom,
            #101e23 0%,
            #091217 100%
        );
}


/* =========================
   HORIZON
========================= */

.horizon-line {
    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    height: 1px;

    background:
        rgba(139, 190, 207, 0.35);

    box-shadow:
        0 0 15px
        rgba(90, 150, 170, 0.15);
}


/* =========================
   FLIGHT GRID
========================= */

.flight-grid {
    position: absolute;

    inset: 50% 0 0;

    overflow: hidden;

    perspective: 500px;
}

.flight-grid::before {
    content: "";

    position: absolute;

    inset: -80% -20% 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 79px,
            rgba(83, 133, 148, 0.13) 80px
        );

    transform:
        perspective(500px)
        rotateX(58deg);

    transform-origin:
        center top;
}

.flight-grid::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 38px,
            rgba(83, 133, 148, 0.10) 39px
        );

    transform:
        perspective(500px)
        rotateX(58deg);

    transform-origin:
        center top;
}


/* =========================
   FLIGHT PATH
========================= */

.flight-path {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0.28;
}

.flight-path path {
    fill: none;

    stroke: #7daab9;

    stroke-width: 2;

    stroke-dasharray:
        8 10;

    animation:
        pathMove 3s linear infinite;
}

@keyframes pathMove {

    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -36;
    }

}


/* =========================
   ANIMATED AIRCRAFT
   PNG
========================= */

#animatedAircraft {
    position: absolute;

    left: 10%;
    top: 20%;

    width: 90px;

    z-index: 20;

    transform:
        translate(-50%, -50%);

    transform-origin: center center;

    filter:
        drop-shadow(
            0 0 10px
            rgba(210, 235, 245, 0.35)
        );

    pointer-events: none;
}

#animatedAircraft img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;
}


/* =========================
   DESTINATION
========================= */

#destinationStation {
    position: absolute;

    right: 7%;
    bottom: 11%;

    z-index: 15;

    display: flex;

    align-items: center;

    gap: 12px;
}

.station-line {
    width: 80px;
    height: 1px;

    background: #668b99;
}

.station-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #73d29a;

    box-shadow:
        0 0 15px
        rgba(115, 210, 154, 0.8);

    animation:
        stationPulse 1.5s ease-in-out infinite;
}

@keyframes stationPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.65;
    }

    50% {
        transform: scale(1.5);

        opacity: 1;
    }
}

.station-info {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.station-info strong {
    font-size: 12px;

    letter-spacing: 2px;

    color: #d8edf4;
}

.station-info span {
    font-size: 9px;

    letter-spacing: 1px;

    color: #628594;
}


/* =========================
   FLIGHT GUIDANCE
========================= */

.flight-guidance {
    position: absolute;

    top: 18px;
    left: 20px;

    z-index: 30;

    display: flex;

    gap: 8px;

    align-items: center;

    font-size: 10px;

    letter-spacing: 1px;
}

.flight-guidance span {
    color: #577985;
}

.flight-guidance strong {
    color: #69cb91;
}


/* =========================
   AIRCRAFT STATUS
========================= */

.aircraft-status {
    position: absolute;

    right: 20px;
    top: 18px;

    z-index: 30;

    display: flex;

    gap: 22px;
}

.aircraft-status div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.aircraft-status span {
    color: #577985;

    font-size: 9px;

    letter-spacing: 1px;
}

.aircraft-status strong {
    color: #c5e1ea;

    font-size: 11px;
}


/* =========================
   AVIATION BOTTOM
========================= */

.aviation-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 18px;

    color: #668b99;

    font-size: 10px;

    letter-spacing: 1px;
}

.aviation-bottom strong {
    color: #a8cad6;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .cursor-plane,
    #planeTrail {
        display: none;
    }

    /* HEADER */

    header {
        padding: 20px 0;
    }

    nav {
        gap: 14px;
    }

    nav a {
        font-size: 12px;
    }

    .language {
        gap: 4px;

        margin-left: 4px;
    }


    /* HERO */

    .hero {
        min-height:
            calc(100vh - 73px);

        background-size: cover;

        background-position:
            center center;
    }

    h1 {
        font-size:
            clamp(48px, 14vw, 70px);
    }

    h2 {
        font-size: 21px;
    }

    .intro {
        font-size: 16px;

        max-width: 100%;
    }


    /* HERO BUTTONS */

    .hero-buttons {
        flex-wrap: wrap;

        gap: 10px;
    }

    .btn {
        min-width: 115px;

        padding:
            12px 18px;
    }


    /* ABOUT */

    .about {
        padding: 90px 0;
    }

    .about .container {
        width: 88%;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-heading {
        padding-right: 0;
    }

    .section-label {
        font-size: 10px;

        letter-spacing: 2.5px;

        margin-bottom: 18px;
    }

    .about-heading h2 {
        font-size: 46px;

        line-height: 1;

        letter-spacing: -1.5px;
    }

    .about-content {
        max-width: 100%;

        padding-left: 0;
    }

    .about-content p {
        font-size: 16px;

        line-height: 1.8;

        margin-bottom: 27px;
    }

    .about::after {
        font-size: 180px;

        right: -20px;

        bottom: -30px;
    }


    /* EXPERIENCE */

    .experience {
        padding: 100px 0;
    }

    .experience .container {
        width: 88%;
    }

    .experience-title {
        font-size: 42px;

        margin-bottom: 65px;
    }

    .experience-list {
        gap: 90px;
    }

    .experience-item {
        padding-left: 30px;
    }

    .experience-date {
        left: -16px;

        width: 32px;
        height: 32px;
    }

    .experience-content {
        max-width: 100%;
    }

    .experience-content h3 {
        font-size: 22px;
    }

    .experience-content h4 {
        font-size: 15px;
    }

    .experience-location {
        font-size: 11px;

        margin-bottom: 12px;
    }

    .experience-period {
        font-size: 12px;

        margin-bottom: 22px;
    }

    .experience-content p {
        font-size: 15px;

        line-height: 1.8;
    }


    /* EXPERIENCE IMAGES */

    .experience-images {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 30px;

        max-width: 100%;
    }

    .experience-images img {
        width: 100%;

        height: auto;

        object-fit: contain;
    }

    .experience-item:last-child
    .experience-images {
        grid-template-columns: 1fr;
    }

    .experience-item:last-child
    .experience-images img {
        width: auto;

        max-width: 100%;

        max-height: none;

        height: auto;
    }


    /* =========================
       PROJECTS MOBILE
    ========================= */

    .projects {
        padding: 90px 0;
    }

    .projects .container {
        width: 88%;
    }

    .projects-title {
        font-size: 42px;

        margin-bottom: 60px;
    }

    .project-item {
        padding-left: 30px;
    }

    .project-content {
        max-width: 100%;
    }

    .project-content h3 {
        font-size: 22px;
    }

    .project-content h4 {
        font-size: 15px;
    }

    .project-location {
        font-size: 11px;

        margin-bottom: 20px;
    }

    .project-content p {
        font-size: 15px;

        line-height: 1.8;
    }


    /* =========================
       HANGAR MOBILE
    ========================= */

    .projects-list >
    .project-item:first-child
    .project-images {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin-top: 25px;

        max-width: 100%;
    }

    .projects-list >
    .project-item:first-child
    .project-images img {

        width: 100%;

        height: 190px;

        object-fit: cover;

        object-position: center;
    }


    /* =========================
       MOTIVO MOBILE
    ========================= */

    .projects-list >
    .project-item:nth-child(2)
    .project-images {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin-top: 25px;

        max-width: 100%;
    }

    .projects-list >
    .project-item:nth-child(2)
    .project-images img {

        width: 100%;

        max-width: 115px;

        height: auto;

        object-fit: contain;

        object-position: top center;

        margin: 0 auto;

        border-radius: 2px;
    }


    /* PROJECT SPACING */

    .project-item:not(:last-child) {
        margin-bottom: 60px;
    }


    /* =========================
       AVIATION MOBILE
    ========================= */

    #aviationOverlay {
        padding: 12px;
    }

    .aviation-panel {
        width: 100%;

        padding:
            20px 14px 16px;
    }

    .aviation-top {
        padding-right: 35px;
    }

    .flight-data {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .flight-data-item {
        min-height: 60px;
    }

    .flight-data-item strong {
        font-size: 17px;

        min-width: 50px;
    }

    .flight-display {
        height: 430px;
    }

    #animatedAircraft {
        width: 70px;
    }

    .aircraft-status {
        gap: 10px;

        right: 12px;
    }

    .flight-guidance {
        left: 12px;
    }

    #destinationStation {
        right: 5%;

        bottom: 9%;
    }

    .station-line {
        width: 35px;
    }

    .station-info strong {
        font-size: 9px;
    }

    .station-info span {
        font-size: 7px;
    }

    .aviation-bottom {
        font-size: 8px;
    }
}


@media (max-width: 480px) {

    .flight-display {
        height: 380px;
    }

    .aircraft-status {
        top: 55px;
    }

    .flight-guidance {
        top: 55px;
    }

    .aviation-bottom {
        gap: 8px;
    }

    #animatedAircraft {
        width: 60px;
    }
}
/* =========================================================
   MOBILE INDEX NAVIGATION
========================================================= */

.mobile-nav-trigger {
    display: none;
}

.mobile-nav-panel {
    display: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    header {
        position: sticky;
        top: 0;
        padding: 17px 0;
        z-index: 1000;
    }

    header .container {
        position: relative;
    }

    /*
       Mobilde normal linkleri gizliyoruz.
       Dil seçici header'da kalıyor.
    */

    nav {
        gap: 0;
    }

    nav > a {
        display: none;
    }

    .language {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-left: 0;
    }

    .language button {
        font-size: 11px;
        padding: 3px;
    }

    .language span {
        font-size: 10px;
    }


    /* INDEX BUTTON */

    .mobile-nav-trigger {
        display: flex;

        align-items: center;
        gap: 9px;

        height: 38px;
        padding: 0 12px;

        border: 1px solid #30404a;
        background: rgba(8, 14, 19, 0.8);

        color: #a8b8c2;

        cursor: pointer;

        font-family:
            "Courier New",
            monospace;

        font-size: 10px;
        letter-spacing: 2px;

        transition:
            border-color .25s ease,
            background .25s ease,
            color .25s ease;
    }

    .mobile-nav-trigger:active {
        transform: scale(.97);
    }

    .mobile-nav-trigger:hover {
        border-color: #6f9bad;
        color: #ffffff;
    }


    /* 2x2 MODERN ICON */

    .nav-trigger-icon {
        width: 16px;
        height: 16px;

        display: grid;

        grid-template-columns: repeat(2, 5px);
        grid-template-rows: repeat(2, 5px);

        gap: 3px;
    }

    .nav-trigger-icon i {
        display: block;

        width: 5px;
        height: 5px;

        border: 1px solid #7896a5;

        transition:
            background .25s ease,
            border-color .25s ease;
    }

    .mobile-nav-trigger:hover
    .nav-trigger-icon i {
        background: #7896a5;
        border-color: #7896a5;
    }


    /* PANEL */

    .mobile-nav-panel {
        position: absolute;

        top: calc(100% + 12px);
        right: 18px;

        width: min(250px, calc(100vw - 36px));

        padding: 10px;

        display: flex;
        flex-direction: column;

        background: rgba(6, 13, 18, .97);

        border: 1px solid #293c47;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, .45);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform:
            translateY(-8px)
            scale(.98);

        transform-origin: top right;

        transition:
            opacity .22s ease,
            visibility .22s ease,
            transform .22s ease;

        z-index: 1100;
    }

    .mobile-nav-panel.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform:
            translateY(0)
            scale(1);
    }


    /* PANEL LABEL */

    .mobile-nav-label {
        padding: 12px 14px 10px;

        font-family:
            "Courier New",
            monospace;

        font-size: 8px;
        letter-spacing: 3px;

        color: #628294;

        border-bottom: 1px solid #1d2d36;
    }


    /* PANEL LINKS */

    .mobile-nav-panel a {
        display: grid;

        grid-template-columns: 34px 1fr;

        align-items: center;

        min-height: 48px;

        padding: 0 14px;

        color: #a9b6be;

        font-size: 23px;

        border-bottom: 1px solid #17252d;

        transition:
            color .2s ease,
            background .2s ease,
            padding-left .2s ease;
    }

    .mobile-nav-panel a:last-child {
        border-bottom: 0;
    }

    .mobile-nav-panel a span {
        font-family:
            "Courier New",
            monospace;

        font-size: 14px;
        letter-spacing: 1px;

        color: #597787;
    }

    .mobile-nav-panel a:hover {
        color: #ffffff;

        background: #0b161d;

        padding-left: 18px;
    }


    /*
       Hero'nun mevcut mobil ayarları
       aynen devam ediyor.
    */

    .hero {
        min-height: calc(100vh - 73px);
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .mobile-nav-trigger {
        height: 36px;
        padding: 0 10px;
    }

    .nav-trigger-label {
        font-size: 9px;
        letter-spacing: 1.7px;
    }

    .language {
        gap: 3px;
    }

    .language button {
        font-size: 10px;
    }
}
/* =========================
   FOOTER
========================= */

.site-footer {
    border-top: 1px solid #1d2933;
    background: #0a0f14;
    padding: 28px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #9ba8b4;
    font-size: 13px;
}

.footer-mark {
    color: #e8edf2;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-center {
    color: #586673;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-right {
    color: #586673;
    font-size: 12px;
}
@media (max-width: 768px) {

    .site-footer {
        padding: 24px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-center {
        order: 3;
        font-size: 10px;
    }

}
/* =========================
   AVIATION FLOAT BUTTON
========================= */

.aviation-float {
    position: absolute;
    top: 180px;
    right: 5%;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 15px;

    background: rgba(10, 15, 20, 0.45);
    border: 1px solid rgba(232, 237, 242, 0.25);
    border-radius: 3px;

    color: #c7d0d8;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 1.5px;

    cursor: pointer;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.aviation-plane {
    font-size: 18px;
    display: inline-block;

    transition: transform 0.35s ease;
}

.aviation-float:hover {
    color: #ffffff;
    border-color: rgba(232, 237, 242, 0.55);
    background: rgba(10, 15, 20, 0.7);
    transform: translateY(-2px);
}

.aviation-float:hover .aviation-plane {
    transform: translateX(5px) rotate(-4deg);
}
@media (max-width: 768px) {

    .aviation-float {
        top: 158px;
        right: 20px;

        padding: 9px 12px;
        font-size: 10px;
    }

    .aviation-plane {
        font-size: 16px;
    }

}


/* =========================================================
   AIRCRAFT EXPLORE FLOAT BUTTON
========================================================= */

.aircraft-explore-float {
    position: absolute;

    top: 115px;
    right: 5%;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 8px 13px 8px 9px;

    color: #c7d0d8;
    text-decoration: none;

    background: rgba(10, 15, 20, 0.45);
    border: 1px solid rgba(232, 237, 242, 0.22);

    border-radius: 3px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.aircraft-explore-float img {
    width: 34px;
    height: 34px;

    object-fit: contain;

    filter:
        grayscale(100%)
        brightness(1.15);

    transition:
        transform 0.5s ease,
        filter 0.3s ease;
}

.aircraft-explore-float span {
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.aircraft-explore-float b {
    font-size: 16px;
    font-weight: 400;

    transition: transform 0.3s ease;
}

.aircraft-explore-float:hover {
    color: #ffffff;
    border-color: rgba(232, 237, 242, 0.55);
    background: rgba(10, 15, 20, 0.7);
    transform: translateY(-2px);
}

.aircraft-explore-float:hover img {
    transform: rotate(20deg);
    filter:
        grayscale(0%)
        brightness(1);
}

.aircraft-explore-float:hover b {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .aircraft-explore-float {
        top: 105px;
        right: 20px;

        padding: 7px 11px 7px 8px;
    }

    .aircraft-explore-float img {
        width: 29px;
        height: 29px;
    }

    .aircraft-explore-float span {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .aircraft-explore-float b {
        font-size: 14px;
    }

}