/* ============ GLOBAL ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* ============ HERO + HEADER ============ */

.fleet-hero {
    position: relative;
    height: 60vh;
    background: url("image.png") center center / cover no-repeat;
    /* Eğer ayrı hero görselin yoksa:
       background: url("image.png") center center / cover no-repeat; yapabilirsin */
}

.fleet-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
}

.fleet-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 40px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dil switch */
.lang-switch {
    display: flex;
    gap: 12px;
}

.lang {
    color: #FFD500;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 14px;
}

.lang.active {
    text-decoration: underline;
}

/* Hamburger */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
}

/* Hero text */
.fleet-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 60px;
    color: #fff;
}

.fleet-hero-content h1 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fleet-hero-content p {
    max-width: 520px;
    font-size: 15px;
    opacity: 0.88;
}

/* ============ FULLSCREEN MENU ============ */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 200;
}

.menu-overlay.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #FFD500;
    background: none;
    font-size: 48px;
    border: none;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    text-align: center;
    font-size: 32px;
    line-height: 2.2;
    color: #fff;
}

/* ============ PAGE TITLE ============ */
.fleet-title {
    padding: 40px 40px 10px;
}

.fleet-title h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ============ FLEET CAR CARDS ============ */
.fleet-section {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* kartın kendisi */
.fleet-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    background: radial-gradient(circle at top left, #252525 0%, #111 55%, #050505 100%);
    color: #fff;
    padding: 28px 30px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* dekoratif altın çizgi */
.fleet-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #ffd500, #ffb300);
}

/* görsel tarafı */
.fleet-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.fleet-img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.07);
    filter: brightness(1.05);
}

/* fiyat etiketi */
.fleet-price-badge {
    position: absolute;
    right: 18px;
    bottom: 16px;
    background: rgba(0,0,0,0.85);
    color: #ffd500;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* bilgi tarafı */
.fleet-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fleet-type {
    font-size: 26px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fleet-tagline {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 14px;
}

/* özellikler listesi */
.fleet-spec-list {
    list-style: none;
    margin-bottom: 14px;
}

.fleet-spec-list li {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.fleet-spec-list i {
    margin-right: 6px;
    color: #ffd500;
}

/* açıklama */
.fleet-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin-top: 10px;
}

/* buton */
.fleet-btn {
    margin-top: 18px;
    align-self: flex-start;
    padding: 10px 28px;
    border-radius: 999px;
    border: 1.5px solid #ffd500;
    background: transparent;
    color: #ffd500;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fleet-btn:hover {
    background: #ffd500;
    color: #000;
    transform: translateY(-2px);
}

/* ============ FLEET GALLERY ============ */
.fleet-gallery {
    background: #111;
    color: #fff;
    padding: 60px 40px 80px;
    text-align: center;
}

.fleet-gallery h2 {
    font-size: 22px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.fleet-gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fleet-gallery-grid img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0.9);
}

.fleet-gallery-grid img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .fleet-hero-content {
        padding: 0 22px 40px;
    }

    .fleet-header {
        padding: 18px 22px;
    }

    .fleet-section {
        width: 94%;
        gap: 40px;
    }

    .fleet-card {
        grid-template-columns: 1fr;
        padding: 22px 20px 24px;
    }

    .fleet-info {
        margin-top: 10px;
    }

    .fleet-btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .fleet-title {
        padding: 30px 20px 10px;
    }

    .fleet-gallery {
        padding: 50px 20px 60px;
    }
}



/* ====== STATS SECTION ====== */

.stats-section {
    background: #ffd500;
    padding: 90px 40px;      /* biraz küçüldü */
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

/* Box Style */
.stat-box {
    border: 1.5px solid #222;
    padding: 28px 18px;      /* eskisinden daha kompakt */
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: #000;
}

/* Icon */
.stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    color: #111;
}

.stat-icon i {
    display: inline-block;
}

/* Number */
.stat-number {
    font-size: 34px;
    font-weight: 700;
    margin: 4px 0;
    color: #000;
}

/* Label */
.stat-label {
    font-size: 14px;
    letter-spacing: 0.10em;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 70px 20px;
    }

    .stat-box {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 28px;
    }
}





/* ====== FOOTER ====== */

.footer {
    background: #0a0a0a;
    padding: 80px 40px 40px;
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

/* Logo */
.footer-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffd500;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 260px;
}

/* Titles */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd500;
    letter-spacing: 0.1em;
}

/* Quick links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #ffd500;
    padding-left: 6px;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 14px;
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #ffd500;
    font-size: 16px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-inner {
        gap: 30px;
    }

    .footer-desc {
        max-width: 100%;
    }
}
.menu-list a {
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    transition: 0.25s ease;
    letter-spacing: 0.12em;
}

.menu-list a:hover {
    color: #ffd500;
}

/* Aktif (bulunulan sayfa) */
.menu-list a.active {
    color: #ffd500;
    font-weight: 600;
}

/* Daha güzel görünmesi için LI'ları düzenledim */
.menu-list li {
    margin: 8px 0;
    list-style: none;
}
