* {
    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 STİLİ) ============ */

.fleet-hero.contact-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 ============ */

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

/* ============ CONTACT SECTION ============ */

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
}

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

.contact-info h2 {
    font-size: 28px;
    margin: 10px 0 16px;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Info detayları */

.contact-details {
    margin: 18px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-detail-item i {
    font-size: 20px;
    margin-top: 2px;
    color: #ffd500;
}

.contact-detail-item h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

/* Info not kutusu */

.contact-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fffdf0;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.contact-note i {
    color: #d1a93b;
    margin-top: 3px;
}

/* Form kısmı */

.contact-form-wrap {
    background: #111;
    color: #fff;
    padding: 24px 24px 26px;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

.form-title {
    font-size: 18px;
    margin-bottom: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group.full-width {
    flex-basis: 100%;
}

label {
    font-size: 13px;
    opacity: 0.9;
}

input,
select,
textarea {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 9px 11px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

textarea {
    resize: vertical;
}

/* Submit butonu */

.contact-submit-btn {
    margin-top: 8px;
    width: 100%;
    padding: 11px 18px;
    border-radius: 999px;
    border: none;
    background: #ffd500;
    color: #111;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background: #ffb800;
    transform: translateY(-1px);
}

/* ============ STATS (FLEET STİLİ) ============ */

.stats-section {
    background: #ffd500;
    padding: 60px 40px 70px;
}

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

.stat-box {
    background: #111;
    color: #fff;
    padding: 22px 18px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.stat-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ============ FOOTER (FLEET STİLİ) ============ */

.footer {
    background: #111;
    color: #fff;
    padding: 40px 40px 20px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,0.8fr) minmax(0,0.9fr);
    gap: 30px;
}

.footer-logo {
    font-size: 22px;
    letter-spacing: 0.2em;
}

.footer-desc {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-title {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact i {
    margin-right: 6px;
    color: #ffd500;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
    .fleet-hero-content {
        padding: 0 22px 60px;
    }

    .hero-header.fleet-header {
        padding: 20px 22px;
    }

    .contact-section {
        padding: 50px 22px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .stats-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer {
        padding: 32px 22px 18px;
    }
}
.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;
}
/* ====== 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;      /* kompakt tasarım */
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04); /* hafif şeffaf */
    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;
    }
}
