body {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f9f9f9;
    box-sizing: border-box;
    color: #333;
}
nav {
    width: 100%;
    height: 70px;
    background-color: white;
    border-bottom: 1px solid #FF8C42;
    position: fixed;
    z-index: 5000;
}
header {
    width: 100%;
    padding-top: 71px;
    background-image: url("../imgs/antalya.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section {
    width: 100%;
    padding-bottom: 40px;
}
footer {
    width: 100%;
    min-height: 80px;
    background-color: white;
    color: white;
    border-top: 1px solid #FF8C42;
}
.menubar_logo {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menubar_logo a {
    display: block; /* Linki blok seviyesinde yapıyoruz */
    height: 100%; /* Linkin yüksekliğini %100 yapıyoruz, böylece içeriği doğru şekilde sığdırıyoruz */
}
.menubar_logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* Oranı koruyarak resmin sığmasını sağlıyoruz */
}
.menubar_pages {
    text-align: right;
}
.mesafe-bilgi-banner {
    width: 100%;
    background-color: #e8f0fe;
    color: #1a237e;
    padding: 10px 20px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.mesafe-sonuc-wrapper {
    width: 100%;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
}

.mesafe-sonuc-container {
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 24px 28px;
    box-sizing: border-box;
}

.mesafe-sonuc-baslik {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    color: #2d3748;
}

.mesafe-sonuc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.mesafe-sonuc-item {
    font-size: 15px;
    background-color: #f1f5f9;
    padding: 14px 18px;
    border-radius: 8px;
}

.mesafe-sonuc-item strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2d3748;
}

.mkn-form-wrapper {
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.mkn-form-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 30px;
}

.mkn-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.mkn-field-group {
    display: flex;
    flex-direction: column;
}

.mkn-field-label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

.mkn-input, .mkn-select, .mkn-textarea {
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    background-color: #f9fafb;
    color: #2d3748;
    transition: all 0.2s ease;
}

.mkn-input:focus,
.mkn-select:focus,
.mkn-textarea:focus {
    border-color: #FF8C42;
    background-color: #fff;
    outline: none;
}

.mkn-textarea {
    resize: vertical;
    min-height: 90px;
}

.mkn-submit-btn {
    margin-top: 30px;
    width: 100%;
    padding: 14px;
    background-color: #FF8C42;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    border: 1px solid white;
}

.mkn-submit-btn:hover {
    background-color: white;
    border: 1px solid #FF8C42;
    color: #333;
}

.vehicle-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
    margin-top: 20px;
}

.vehicle-option {
    position: relative;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.3s ease;
    background: #f9f9f9;
}

.vehicle-option img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.vehicle-option input[type="radio"] {
    display: none;
}

.vehicle-option.selected {
    border-color: #FF8C42;
    background-color: #FFF4EC;
}

.vehicle-details {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #333;
}

.payment-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 40px;
}
.payment-form-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
.payment-form-label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #555;
}
.payment-form-input,
.payment-form-select,
.payment-form-button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
}
.payment-form-button {
    background-color: #FF8C42;
    color: white;
    font-size: 16px;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: 1px solid white;;
}
.payment-form-button:hover {
    background-color: white;
    border: 1px solid #FF8C42;
    color: #333;
}
.payment-creditcard-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 8px;
}
.payment-hidden {
    display: none;
}

.aboutus-grid-container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Başlık Alanı */
.aboutus-grid-header {
    text-align: center;
    margin-bottom: 50px;
}

.aboutus-grid-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.aboutus-grid-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Kart Alanı */
.aboutus-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Kart */
.aboutus-grid-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* İkon */
.aboutus-grid-icon {
    font-size: 3.5rem;
    color: #FF8C42;
    margin-bottom: 20px;
}

/* Kart İçeriği */
.aboutus-grid-card-body {
    padding: 0 10px;
}

.aboutus-grid-card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.aboutus-grid-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.fleet-main-container {
    width: 100%;
    margin: 0 auto;
}

/* Başlık Alanı */
.fleet-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-title {
    font-size: 3rem;
    color: #555;
    margin-bottom: 15px;
}

.fleet-subtitle {
    font-size: 1.2rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

/* Kartlar Alanı */
.fleet-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Kart Yapısı */
.fleet-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

/* Araç Görseli */
.fleet-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Kart İçerik */
.fleet-card-content {
padding: 20px;
text-align: center;
}

.fleet-card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.fleet-card-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

/* İkonlar Alanı */
.fleet-card-icons {
    font-size: 0.95rem;
    color: #FF8C42;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.fleet-card-icons i {
    margin-right: 5px;
}

.services-main-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* Başlık Alanı */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Kartlar Alanı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Servis Kartı */
.services-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* İkon */
.services-icon {
    font-size: 3rem;
    color: #FF8C42;
    margin-bottom: 20px;
}

/* Kart Başlık */
.services-card-title {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 10px;
}

/* Kart Açıklama */
.services-card-description {
    font-size: 1rem;
    color: #555;
}

.faq-main-wrapper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Başlık Alanı */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* SSS Listesi */
.faq-list {
    display: grid;
    gap: 20px;
}

/* Soru Alanı */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Soru Başlığı */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.4rem;
    color: #333;
}

/* Açılır İkon */
.faq-icon {
    font-size: 1.2rem;
    color: #FF8C42;
    transition: transform 0.3s ease;
}

/* Cevap Alanı */
.faq-answer {
    margin-top: 15px;
    font-size: 1rem;
    color: #555;
    display: none;
}

/* Açılmış hali için */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.contact-main-wrapper {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Başlık Alanı */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #555;
}

/* Grid Yapısı */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Kartlar */
.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

/* İkon */
.contact-icon {
    font-size: 2.5rem;
    color: #FF8C42;
    margin-bottom: 15px;
}

/* Kart Başlık ve Detay */
.contact-card-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card-detail {
    font-size: 1rem;
    color: #555;
}

.payment-banktransfer-section,
.payment-creditcard-section {
    margin-top: 20px;
}

.payment-banktransfer-box {
    background-color: #f1f8ff;
    border: 1px solid #cce5ff;
    padding: 20px;
    border-radius: 8px;
}

.payment-banktransfer-title {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.payment-banktransfer-text {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
}

.payment-banktransfer-warning {
    font-size: 0.95rem;
    color: #d9534f;
    margin-top: 10px;
}
.reservation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.reservation-item {
    background: white;
    border-left: 6px solid #FF8C42;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reservation-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.reservation-item p {
    font-size: 1em;
    margin: 6px 0;
    color: #555;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    color: white;
    font-weight: bold;
}

.badge.onayli {
    background-color: #28a745;
}

.badge.beklemede {
    background-color: #ffc107;
    color: #212529;
}

.badge.iptal {
    background-color: #dc3545;
}

.button-group {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    display: inline-block;
}

button {
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #FF8C42;
    color: white;
}

.btn-primary:hover {
    background-color: #e07b39;
}

.btn-success {
    background-color: #28a745; /* canlı yeşil */
    color: #fff;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-danger {
    background-color: #FF5E5B;
    color: white;
}

.btn-danger:hover {
    background-color: #d94b4a;
}

.rezervasyon-kapsayici {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 35px 40px;
}

.rezervasyon-baslik {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
}

.rezervasyon-satir {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.etiket {
    font-weight: 600;
    color: #555;
}

.deger {
color: #333;
}

.durum-rozet {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
    color: white;
}

.rezervasyon-butonlar {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.input-sade {
    width: 100%;
    max-width: 400px;
    padding: 5px 7px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-sade:focus {
    border-color: #FF8C42;
    box-shadow: 0 0 0 2px rgba(255, 140, 66, 0.2);
}
.pagination-container {
    display: grid;
    place-items: center;
    padding: 20px 0;
}

.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.3s;
    background-color: #f9f9f9;
}

.pagination a:hover {
    background-color: #eee;
    border-color: #bbb;
}

.pagination a.active {
    background-color: #FF8C42;
    color: white;
    border-color: #FF8C42;
}

.pagination a.prev,
.pagination a.next {
    font-weight: bold;
}
.whatsapp-float, .telegram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.telegram-float {
    right: 90px; /* WhatsApp'ın solunda */
    background-color: #0088cc;
}
.whatsapp-float {
    right: 20px;
}
.whatsapp-float:hover, .telegram-float:hover {
    transform: scale(1.1);
}

@media only screen and (min-width: 1280px) {
    /* Masaüstü Stilleri */
    .menubar_display {
        display: grid;
        width: 1240px;
        margin: auto;
        grid-template-columns: 70px 1150px;
        grid-gap: 20px;
    }
    
    .menubar_pages_desktopmenu {
        list-style-type: none;
        margin: 0;
        padding: 0;
        line-height: 70px;
        float: right;
    }

    .menubar_pages_desktopmenu a li {
        display: inline-block;
        color: #333;
        font-size: 16px;
        float: left;
        margin-left: 20px;
        transition: 200ms ease-in-out;
    }

    .menubar_pages_desktopmenu a:hover li {
        color: #FF8C42;
    }

    .menubar_pages_mobilemenu {
        display: none;
    }

    .menubar_pages_mobilemenu_contents {
        display: none;
    }

    header {
        height: 500px;
    }

    .header_content {
        width: 1240px;
        margin: auto;
    }

    .banner {
        width: 100%;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 10px;
    }

    .banner img {
        width: 30%;
        height: auto;
        max-height: 100%;
        border-radius: 10px;
    }

    .banner .text {
        width: 70%;
        padding: 20px;
        font-size: 54px;
        font-weight: bold;
        text-shadow: 1px 1px 2px black;
        text-align: center;
    }

    .reservation_area {
        width: 1240px;
        margin: auto;
        padding-top: 20px;
    }

    .tur-planlama-kutusu {
        display: grid;
        width: 100%;
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        padding-bottom: 20px;
    }

    .tur-planlama-kutusu > div { /* Input'ları saran div'ler için */
        position: relative;
    }

    .tur-planlama-kutusu input,
    .tur-planlama-kutusu button,
    .tur-planlama-kutusu select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-sizing: border-box;
    }

    .tur-planlama-kutusu button {
        background-color: #FF8C42;
        color: white;
        border: none;
        cursor: pointer;
        transition: 300ms ease-in-out;
    }

    .tur-planlama-kutusu button:hover {
        background-color: #333;
    }

    .tur-planlama-kutusu input:focus,
    .tur-planlama-kutusu select:focus {
        outline: none;
        border-color: #FF8C42;
    }

    #harita {
        width: 100%;
        height: 200px;
        border-radius: 3px;
    }

    .oneriler-listesi {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        box-sizing: border-box;
        z-index: 2000;
        max-height: 200px;
        overflow-y: auto;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .oneriler-listesi li {
        padding: 10px;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .oneriler-listesi li:hover {
        background-color: #f0f0f0;
    }

    .services {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .service-card i {
        font-size: 40px;
        color: #FF8C42;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 16px;
        color: #777;
        line-height: 1.6;
    }

    .vehicles {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .vehicle-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .vehicle-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .vehicle-card h3 {
        font-size: 24px;
        color: #333;
        text-align: center;
        padding: 20px;
        background-color: #FF8C42;
        color: white;
        margin: 0;
    }

    .vehicle-card p {
        font-size: 16px;
        color: #777;
        text-align: center;
        padding: 15px;
    }

    .routes {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
  
    .route-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
  
    .route-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
  
    .route-card h3 {
        background-color: #FF8C42;
        color: white;
        margin: 0;
        padding: 16px;
        font-size: 20px;
        text-align: center;
    }
  
    .route-card p {
        padding: 15px;
        font-size: 15px;
        color: #555;
        text-align: center;
    }

    .footer_wrapper {
        height: auto; /* Veya parent container yüksekliği kadar */
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer_in {
        width: 1240px;
        margin: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1279px) {
    /* Tabletler ve Diğer Orta Boyutlu Cihaz Stilleri */
    .menubar_display {
        display: grid;
        width: calc(100% - 40px);
        margin: auto;
        grid-template-columns: 70px 1fr;
        grid-gap: 20px;
    }

    .menubar_pages_desktopmenu {
        display: none;
    }

    /* Burger icon */
    .menubar_pages_mobilemenu {
        font-size: 20px;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 5001;
    }
    
    /* Mobile menu content */
    .menubar_pages_mobilemenu_contents {
        position: fixed;
        top: 71px;
        left: -40%;
        width: 40%;
        height: calc(100vh - 71px); /* Ekranın tamamını kapsayacak şekilde ayarlandı */
        background-color: #FF8C42;
        transition: left 400ms ease-in-out;
        z-index: 5001;
        overflow-y: auto;
    }
    
    .menubar_pages_mobilemenu_contents ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    .menubar_pages_mobilemenu_contents li {
        padding: 15px;
        text-align: center;
    }
    
    .menubar_pages_mobilemenu_contents a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    
    /* Menu open state */
    .menubar_pages_mobilemenu_contents.open {
        left: 0;
    }

    header {
        height: 400px;
    }

    .header_content {
        width: calc(100% - 40px);
        margin: auto;
    }

    .banner {
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 10px;
    }

    .banner img {
        width: 30%;
        height: auto;
        max-height: 100%;
        border-radius: 10px;
    }

    .banner .text {
        width: 70%;
        padding: 20px;
        font-size: 34px;
        font-weight: bold;
        text-shadow: 1px 1px 2px black;
        text-align: center;
    }

    .reservation_area {
        width: calc(100% - 40px);
        margin: auto;
        padding-top: 20px;
    }

    .tur-planlama-kutusu {
        display: grid;
        width: 100%;
        gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        padding-bottom: 20px;
    }

    .tur-planlama-kutusu > div { /* Input'ları saran div'ler için */
        position: relative;
    }

    .tur-planlama-kutusu input,
    .tur-planlama-kutusu button,
    .tur-planlama-kutusu select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-sizing: border-box;
    }

    .tur-planlama-kutusu button {
        background-color: #FF8C42;
        color: white;
        border: none;
        cursor: pointer;
        transition: 300ms ease-in-out;
    }

    .tur-planlama-kutusu button:hover {
        background-color: #333;
    }

    .tur-planlama-kutusu input:focus,
    .tur-planlama-kutusu select:focus {
        outline: none;
        border-color: #FF8C42;
    }

    #harita {
        width: 100%;
        height: 200px;
        border-radius: 3px;
    }

    .oneriler-listesi {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        box-sizing: border-box;
        z-index: 2000;
        max-height: 200px;
        overflow-y: auto;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .oneriler-listesi li {
        padding: 10px;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .oneriler-listesi li:hover {
        background-color: #f0f0f0;
    }

    .services {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .service-card i {
        font-size: 40px;
        color: #FF8C42;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 16px;
        color: #777;
        line-height: 1.6;
    }

    .vehicles {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .vehicle-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .vehicle-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .vehicle-card h3 {
        font-size: 24px;
        color: #333;
        text-align: center;
        padding: 20px;
        background-color: #FF8C42;
        color: white;
        margin: 0;
    }

    .vehicle-card p {
        font-size: 16px;
        color: #777;
        text-align: center;
        padding: 15px;
    }

    .routes {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
  
    .route-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
  
    .route-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
  
    .route-card h3 {
        background-color: #FF8C42;
        color: white;
        margin: 0;
        padding: 16px;
        font-size: 20px;
        text-align: center;
    }
  
    .route-card p {
        padding: 15px;
        font-size: 15px;
        color: #555;
        text-align: center;
    }

    .footer_wrapper {
        height: auto; /* Veya parent container yüksekliği kadar */
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer_in {
        width: calc(100% - 40px);
        margin: auto;
    }
}

@media only screen and (max-width: 767px) {
    /* Mobil Cihaz Stilleri */
    .menubar_display {
        display: grid;
        width: calc(100% - 40px);
        margin: auto;
        grid-template-columns: 70px 1fr;
        grid-gap: 20px;
    }

    .menubar_pages_desktopmenu {
        display: none;
    }

    /* Burger icon */
    .menubar_pages_mobilemenu {
        font-size: 20px;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 5001;
    }
    
    /* Mobile menu content */
    .menubar_pages_mobilemenu_contents {
        position: fixed;
        top: 71px;
        left: -40%;
        width: 40%;
        height: calc(100vh - 71px); /* Ekranın tamamını kapsayacak şekilde ayarlandı */
        background-color: #FF8C42;
        transition: left 400ms ease-in-out;
        z-index: 5001;
        overflow-y: auto;
    }
    
    .menubar_pages_mobilemenu_contents ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    .menubar_pages_mobilemenu_contents li {
        padding: 15px;
        text-align: center;
    }
    
    .menubar_pages_mobilemenu_contents a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    
    /* Menu open state */
    .menubar_pages_mobilemenu_contents.open {
        left: 0;
    }

    header {
        height: 280px;
    }

    .header_content {
        width: calc(100% - 40px);
        margin: auto;
    }

    .banner {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 10px;
    }

    .banner img {
        width: 40%;
        height: auto;
        max-height: 100%;
        border-radius: 10px;
    }

    .banner .text {
        width: 60%;
        padding: 20px;
        font-size: 30px;
        font-weight: bold;
        text-shadow: 1px 1px 2px black;
        text-align: center;
    }

    .reservation_area {
        width: calc(100% - 40px);
        margin: auto;
        padding-top: 20px;
    }

    .tur-planlama-kutusu {
        display: grid;
        width: 100%;
        gap: 20px;
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .tur-planlama-kutusu > div { /* Input'ları saran div'ler için */
        position: relative;
    }

    .tur-planlama-kutusu input,
    .tur-planlama-kutusu button,
    .tur-planlama-kutusu select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-sizing: border-box;
    }

    .tur-planlama-kutusu button {
        background-color: #FF8C42;
        color: white;
        border: none;
        cursor: pointer;
        transition: 300ms ease-in-out;
    }

    .tur-planlama-kutusu button:hover {
        background-color: #333;
    }

    .tur-planlama-kutusu input:focus,
    .tur-planlama-kutusu select:focus {
        outline: none;
        border-color: #FF8C42;
    }

    #harita {
        width: 100%;
        height: 200px;
        border-radius: 3px;
    }

    .oneriler-listesi {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        box-sizing: border-box;
        z-index: 2000;
        max-height: 200px;
        overflow-y: auto;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .oneriler-listesi li {
        padding: 10px;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .oneriler-listesi li:hover {
        background-color: #f0f0f0;
    }

    .services {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .service-card i {
        font-size: 40px;
        color: #FF8C42;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 16px;
        color: #777;
        line-height: 1.6;
    }

    .vehicles {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .vehicle-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .vehicle-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .vehicle-card h3 {
        font-size: 24px;
        color: #333;
        text-align: center;
        padding: 20px;
        background-color: #FF8C42;
        color: white;
        margin: 0;
    }

    .vehicle-card p {
        font-size: 16px;
        color: #777;
        text-align: center;
        padding: 15px;
    }

    .routes {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
  
    .route-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
  
    .route-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
  
    .route-card h3 {
        background-color: #FF8C42;
        color: white;
        margin: 0;
        padding: 16px;
        font-size: 20px;
        text-align: center;
    }
  
    .route-card p {
        padding: 15px;
        font-size: 15px;
        color: #555;
        text-align: center;
    }

    .footer_wrapper {
        height: auto; /* Veya parent container yüksekliği kadar */
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer_in {
        width: calc(100% - 40px);
        margin: auto;
    }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    /* Yan Çevrilmiş Mobil Cihaz Stilleri */
    .menubar_display {
        display: grid;
        width: calc(100% - 40px);
        margin: auto;
        grid-template-columns: 70px 1fr;
        grid-gap: 20px;
    }

    .menubar_pages_desktopmenu {
        display: none;
    }

    /* Burger icon */
    .menubar_pages_mobilemenu {
        font-size: 20px;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 5001;
    }
    
    /* Mobile menu content */
    .menubar_pages_mobilemenu_contents {
        position: fixed;
        top: 71px;
        left: -40%;
        width: 40%;
        height: calc(100vh - 71px); /* Ekranın tamamını kapsayacak şekilde ayarlandı */
        background-color: #FF8C42;
        transition: left 400ms ease-in-out;
        z-index: 5001;
        overflow-y: auto;
    }
    
    .menubar_pages_mobilemenu_contents ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    .menubar_pages_mobilemenu_contents li {
        padding: 15px;
        text-align: center;
    }
    
    .menubar_pages_mobilemenu_contents a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    
    /* Menu open state */
    .menubar_pages_mobilemenu_contents.open {
        left: 0;
    }

    header {
        height: 280px;
    }

    .header_content {
        width: calc(100% - 40px);
        margin: auto;
    }

    .banner {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 10px;
    }

    .banner img {
        width: 40%;
        height: auto;
        max-height: 100%;
        border-radius: 10px;
    }

    .banner .text {
        width: 60%;
        padding: 20px;
        font-size: 30px;
        font-weight: bold;
        text-shadow: 1px 1px 2px black;
        text-align: center;
    }

    .reservation_area {
        width: calc(100% - 40px);
        margin: auto;
        padding-top: 20px;
    }

    .tur-planlama-kutusu {
        display: grid;
        width: 100%;
        gap: 20px;
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    .tur-planlama-kutusu > div { /* Input'ları saran div'ler için */
        position: relative;
    }

    .tur-planlama-kutusu input,
    .tur-planlama-kutusu button,
    .tur-planlama-kutusu select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-sizing: border-box;
    }

    .tur-planlama-kutusu button {
        background-color: #FF8C42;
        color: white;
        border: none;
        cursor: pointer;
        transition: 300ms ease-in-out;
    }

    .tur-planlama-kutusu button:hover {
        background-color: #333;
    }

    .tur-planlama-kutusu input:focus,
    .tur-planlama-kutusu select:focus {
        outline: none;
        border-color: #FF8C42;
    }

    #harita {
        width: 100%;
        height: 200px;
        border-radius: 3px;
    }

    .oneriler-listesi {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        width: 100%;
        background-color: white;
        border: 1px solid #ccc;
        box-sizing: border-box;
        z-index: 2000;
        max-height: 200px;
        overflow-y: auto;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .oneriler-listesi li {
        padding: 10px;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .oneriler-listesi li:hover {
        background-color: #f0f0f0;
    }

    .services {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .service-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .service-card i {
        font-size: 40px;
        color: #FF8C42;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 16px;
        color: #777;
        line-height: 1.6;
    }

    .vehicles {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .vehicle-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .vehicle-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .vehicle-card h3 {
        font-size: 24px;
        color: #333;
        text-align: center;
        padding: 20px;
        background-color: #FF8C42;
        color: white;
        margin: 0;
    }

    .vehicle-card p {
        font-size: 16px;
        color: #777;
        text-align: center;
        padding: 15px;
    }

    .routes {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
  
    .route-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
  
    .route-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
  
    .route-card h3 {
        background-color: #FF8C42;
        color: white;
        margin: 0;
        padding: 16px;
        font-size: 20px;
        text-align: center;
    }
  
    .route-card p {
        padding: 15px;
        font-size: 15px;
        color: #555;
        text-align: center;
    }

    .footer_wrapper {
        height: auto; /* Veya parent container yüksekliği kadar */
        padding-top: 20px;
        padding-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer_in {
        width: calc(100% - 40px);
        margin: auto;
    }
}