* {
    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 TARZI) ============ */

.fleet-hero {
    position: relative;
    height: 70vh;
    background: url("image.png") center center / cover no-repeat;
    /* istersen: background: url("image.png") center center / cover no-repeat; */
}

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

.hero-header.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;
}

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

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

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

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

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

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

.fleet-hero-content h1 {
    font-size: clamp(36px, 4.8vw, 60px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

/* ============ FULLSCREEN MENU (FLEET AYNI) ============ */

.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: 30px;
    line-height: 2.2;
    color: #fff;
}

/* ============ ABOUT SECTIONS ============ */

.about-section {
    padding: 70px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d1a93b;
}

.about-section h2 {
    font-size: 28px;
    margin: 10px 0 16px;
}

/* Intro */

.about-intro {
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
}

.intro-image {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.intro-text p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.intro-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.intro-card {
    background: #111;
    color: #fff;
    padding: 18px 18px 20px;
    border-radius: 14px;
}

.intro-card i {
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffd500;
}

.intro-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

/* Values */

.about-values {
    background: #fafafa;
}

.values-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.value-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px 18px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

/* Process */

.about-process {
    background: #111;
    color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
}

.process-text p {
    margin-top: 8px;
    line-height: 1.7;
    opacity: 0.9;
}

.process-steps {
    list-style: none;
}

.process-steps li {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.process-steps h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.process-steps p {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA */

.about-cta {
    background: #fffdf0;
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: start;
}

.cta-text p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.cta-highlight {
    font-weight: 600;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1.5px solid #111;
    text-decoration: none;
    color: #111;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cta-btn i {
    font-size: 14px;
}

.cta-box {
    background: #111;
    color: #fff;
    padding: 20px 22px 22px;
    border-radius: 14px;
}

.cta-box h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.cta-box ul {
    list-style: none;
}

.cta-box li {
    margin-bottom: 8px;
    font-size: 14px;
}

.cta-box i {
    color: #ffd500;
    margin-right: 6px;
}


/* ====== 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;
}
