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

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* Menü açıkken scroll kapansın */
body.no-scroll {
    overflow: hidden;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* HEADER */
.hero-header {
    position: relative;
    z-index: 3;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switch {
    display: flex;
    gap: 12px;
    font-size: 14px;
    text-transform: uppercase;
}

.lang {
    color: #ccc;
    text-decoration: none;
}

.lang.active {
    color: #ffd54a;
}

/* HAMBURGER */
.menu-btn {
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 0.22em;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 14px;
}

/* FULLSCREEN SLIDE MENU */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.90);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* SLIDE + FADE başlangıç */
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 99;
}

.menu-overlay.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

/* KAPATMA BUTONU (X) */
.close-btn {
    position: absolute;
    top: 28px;
    right: 35px;
    font-size: 45px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* MENU LİSTESİ */
.menu-list {
    list-style: none;
    text-align: center;
}

.menu-list li {
    font-size: 32px;
    margin: 16px 0;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.menu-list li:first-child {
    color: #d2b47c;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Mobil */
@media (max-width: 768px) {
    .hero-header {
        padding: 16px 20px;
    }

    .menu-list li {
        font-size: 26px;
    }

    .close-btn {
        right: 20px;
        top: 20px;
    }
}





/* ====== FLEET SECTION ====== */

.fleet-section {
    background: #ffd500; /* sarı */
    padding: 120px 40px;
    text-align: center;
}

.fleet-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    color: #111;
}

.fleet-subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 60px;
}

/* GRID */
.fleet-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.fleet-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.18);
}

.fleet-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 18px;
    background: #eee;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fleet-card h2 {
    font-size: 22px;
    font-weight: 600;
    color: #202020;
    letter-spacing: 0.05em;
}







/* ====== DESTINATIONS SECTION ====== */

.destinations-section {
    background: #111111;
    color: #ffffff;
    padding: 100px 40px;
}

.dest-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.dest-title {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
}

.dest-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #2a2a2a;
    font-size: 15px;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dest-item:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.dest-name {
    text-transform: uppercase;
    font-weight: 400;
}

.dest-discount {
    color: #ffd500;
    font-weight: 700;
    text-transform: uppercase;
}

/* Mobil ayarları */
@media (max-width: 768px) {
    .destinations-section {
        padding: 70px 20px;
    }

    .dest-title {
        font-size: 22px;
    }
}



/* ====== ABOUT SECTION ====== */

.about-section {
    background: #050505;
    color: #ffffff;
    padding: 110px 40px;
}

.about-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Sol metin */
.about-text h2 {
    font-size: 30px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 14px;
}

/* Sağ görsel */
.about-image {
    flex: 0 0 40%;
    max-width: 460px;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-inner {
        flex-direction: column-reverse; /* mobilde önce görsel, sonra yazı istersen 'column' yap */
        text-align: center;
    }

    .about-image {
        flex: none;
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 24px;
    }
}




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



/* ====== SERVICES SECTION ====== */

.services-section {
    background: #0e0e0e;
    color: #ffffff;
    padding: 110px 40px;
    text-align: center;
}

.services-title {
    font-size: 32px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.services-subtitle {
    opacity: 0.7;
    margin-bottom: 60px;
    font-size: 16px;
}

.services-inner {
    max-width: 1250px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* Card */
.service-card {
    background: #1c1c1c;
    padding: 35px 25px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #2d2d2d;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.45);
    border-color: #ffd500;
}

/* Icon */
.service-icon {
    font-size: 38px;
    color: #ffd500;
    margin-bottom: 16px;
}

/* Titles */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

.service-card p {
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.5;
}

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

    .services-title {
        font-size: 26px;
    }

    .service-card {
        padding: 28px 20px;
    }
}
/* ====== FLEET BANNER ====== */

.fleet-banner {
    position: relative;
    width: 100%;
    height: 350px;

    /* GÖRSEL index.html ile aynı klasörde olacak */
    background: url("fleet-banner.png") center center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleet-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    transition: 0.3s ease;
}

.fleet-banner:hover .fleet-banner-overlay {
    background: rgba(0,0,0,0.35);
}

.fleet-banner-text {
    position: relative;
    z-index: 2;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    color: #ffd500;
    max-width: 900px;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .fleet-banner {
        height: 260px;
    }

    .fleet-banner-text {
        font-size: 20px;
        line-height: 1.4;
    }
}







/* ====== FAQ SECTION ====== */

.faq-section {
    background: #0d0d0d;
    padding: 110px 40px;
    color: #fff;
}

.faq-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Sol görsel */
.faq-image {
    flex: 0 0 45%;
}

.faq-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 16px 30px rgba(0,0,0,0.45);
}

/* Sağ SSS */
.faq-content {
    flex: 1;
}

.faq-title {
    font-size: 28px;
    color: #ffd500;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 10px;
}

/* Soru */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    padding: 5px 0;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #ffd500;
}

/* Cevap */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 10px 0;
    opacity: 0.85;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-inner {
        flex-direction: column;
    }

    .faq-image {
        flex: none;
        width: 100%;
    }
}






/* ====== BRAND HERO SECTION (SHORT VERSION) ====== */

.brand-hero {
    background: #ffd500;
    padding: 60px 20px;  /* 100px idi, artık daha kısa */
    text-align: center;
}

.brand-title {
    font-size: 48px;     /* 62px idi → daha kompakt */
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #000;
    margin-bottom: 12px; /* 20px idi */
}

/* Typing text */
.typing-wrapper {
    font-size: 18px;     /* daha küçük */
    font-weight: 600;
    color: #000;
    height: 28px;        /* bölüm daha kısa dursun diye */
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.typing-text {
    color: #000;
    font-weight: 600;
}

.typing-cursor {
    font-weight: 700;
    font-size: 24px;
    margin-left: 4px;
    color: #000;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
    .brand-hero {
        padding: 45px 15px;
    }
    .brand-title {
        font-size: 34px;
    }
    .typing-wrapper {
        font-size: 16px;
        height: 24px;
    }
}



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


/* ====== PRICE CALCULATOR SECTION (MAP, API-KEYLESS) ====== */

.price-section {
    background: #101010;
    color: #ffffff;
    padding: 100px 40px;
}

.price-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.price-title {
    font-size: 30px;
    letter-spacing: 0.16em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.price-subtitle {
    opacity: 0.7;
    font-size: 14px;
    max-width: 640px;
    margin-bottom: 26px;
}

/* Tabs */
.price-tabs {
    display: inline-flex;
    border: 1px solid #444;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 26px;
}

.price-tab-btn {
    border: none;
    background: transparent;
    color: #ccc;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.price-tab-btn.active {
    background: #ffd500;
    color: #000;
}

/* Layout */
.price-grid-map {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 32px;
}

/* Form card */
.price-card {
    background: #181818;
    border-radius: 14px;
    padding: 24px 22px 26px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 14px 26px rgba(0,0,0,0.45);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-row-inline {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label,
.form-col label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    opacity: 0.8;
}

.price-input {
    background: #101010;
    border-radius: 8px;
    border: 1px solid #333;
    padding: 10px 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.price-input:focus {
    border-color: #ffd500;
    box-shadow: 0 0 0 1px #ffd50033;
    background: #0a0a0a;
}

/* Button */
.calc-btn {
    margin-top: 4px;
    width: 100%;
    border: none;
    background: #ffd500;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-btn:hover {
    background: #ffe24e;
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.4);
}

/* Result */
.price-result {
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #101010;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffd500;
}

.price-note {
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.7;
    line-height: 1.6;
}

/* Map side */
.price-map-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    box-shadow: 0 14px 26px rgba(0,0,0,0.45);
    background: #050505;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

/* Distance overlay */
.map-distance {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(0,0,0,0.78);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.map-distance span {
    color: #ffd500;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1000px) {
    .price-section {
        padding: 80px 20px;
    }

    .price-grid-map {
        grid-template-columns: 1fr;
    }

    .price-map-wrapper {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .form-row-inline {
        flex-direction: column;
    }
}


/* ====== AUTOCOMPLETE LIST (PRICE FORM) ====== */

.autocomplete-wrapper {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background: #181818;
    border-radius: 10px;
    border: 1px solid #333;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 12px 24px rgba(0,0,0,0.65);
    display: none; /* JS ile açılacak */
    z-index: 30;
}

.autocomplete-item {
    padding: 8px 11px;
    font-size: 13px;
    border-bottom: 1px solid #262626;
    cursor: pointer;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #222;
    color: #ffd500;
}

.autocomplete-list::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 999px;
}
