*,
*::before,
*::after {
    box-sizing: content-box;
}

/* Genel Ayarlar */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    padding-top: 60px;
}

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

/* Booking Bar */
.booking-bar {
    background-color: black;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 18px;
}

/* Location Group */
.location-group {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 13px;
    border-radius: 5px;
    flex: 2;
    gap: 10px;
    position: relative;
}

.location-group input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    padding: 15px;
    text-align: center;
}

.location-group-icon {
    font-size: 24px;
    color: gray;
    position: relative;
}

.location-group-icon::after {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background-color: gray;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Date Group */
.date-group {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 13px;
    border-radius: 5px;
    flex: 1;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.date-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    font-size: 14px; /* Label için uygun font boyutu */
    color: gray;
}

.date-group input {
    border: none;
    outline: none;
    font-size: 12px;
    width: 100%;
    padding: 15px;
    background-color: transparent; /* Arka planı şeffaf yaparak input'un kenarlığını kaldırıyoruz */
}
.return-date-group {
    opacity: 0.5;
    margin-top: 0; /* Yukarıdan boşluğu kaldırdık çünkü iki input yan yana olacak */
}

.date-group-icon {
    font-size: 20px;
    color: gray;
}

.date-group input[type="datetime-local"] {
    padding: 15px;
    font-size: 12px;
    width: 100%;
    background-color: transparent;
}


/* Search Button */
.search-button {
    background: linear-gradient(90deg, hsl(185, 64%, 51%) 0%, hsla(277, 74%, 24%, 1) 100%);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 17px;
    flex-shrink: 0;
    min-width: 220px;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search-button span {
    display: block;
    font-size: 24px;
}

.search-button small {
    font-size: 16px;
    display: block;
}

.search-button:hover {
    background: linear-gradient(90deg, hsla(277, 74%, 24%, 1) 0%, hsl(185, 64%, 51%) 100%);
}
/* Mobil Uyumlu Stil */
@media (max-width: 768px) {
    .booking-bar {
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        gap: 15px;
        width: 100%;
        background-color: black;
        border-radius: 15px;
    }
    

    .location-group {
        background-color: #f9f9f9;
        padding: 13px;
        border-radius: 5px;
        display: flex;
        flex-direction: column; /* Alınış ve varış noktalarının alt alta gelmesi için */
        align-items: flex-start;
        position: relative;
        width: 100%;
    }

    .location-group input {
        font-size: 17px;
        width: 100%; /* Tam genişlikte olacak şekilde ayarla */
        padding: 13px; /* Padding'deki yanlış boşluğu düzelttim */
        margin-bottom: 10px; /* İki input arasında boşluk */
    }

    .date-group {
        background-color: #f9f9f9;
        padding: 10px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        flex-direction: row; /* Tarih inputlarını yatayda hizala */
        justify-content: space-between;
    }

    .date-group .form-group {
        flex: 1;
        display: flex;
        background-color: #f2f2f2;
        padding: 15px; /* Daha yüksek yapmak için padding artırıldı */
        border-radius: 5px;
        align-items: center;
    }

    .date-group input {
        border: none;
        outline: none;
        font-size: 16px; /* Yazı boyutu artırıldı */
        width: 100%;
        padding: 15px; /* Tarih inputlarının yüksekliğini artırmak için padding artırıldı */
        text-align: center;
    }

    .date-group-icon {
        font-size: 18px;
        margin-right: 10px;
    }

    .search-button {
        background-color: #32c5d2;
        color: white;
        padding: 15px;
        font-size: 16px;
        border-radius: 5px;
        text-align: center;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .search-button span {
        font-size: 22px;
    }

    .search-button small {
        font-size: 20px;
    }

    .step-box {
        margin: 10px !important;
    }
}





/* Section Header */
.section-header {
    display: flex;
    margin-bottom: 20px;
}

.section-item {
    padding: 20px;
    cursor: pointer;
    background-color: #f2f2f2d6;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    text-align: center;
    width: 200px;
    position: relative;
}

.section-item.active {
    background: linear-gradient(90deg, hsla(185, 64%, 51%, 1) 0%, hsla(277, 74%, 24%, 1) 100%);
    color: white;
}

.section-item.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0A2647;
}
@media (max-width: 768px) {
    .section-item {
        width: 100%; /* Mobilde tam genişlikte */
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .section-item {
        font-size: 0.875rem; /* Küçük ekranlarda yazı boyutunu küçült */
        padding: 15px;
    }
}

/* Reservation Details */
.reservation-details{
    background-color: #f9f9f9;
    padding: 20px;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 50px;
    margin-right: 20px;
    height: fit-content;
    flex: 1;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.reservation-details h3 {
    margin-bottom: 15px;
    color: #333;
    border-left: 4px solid #0A2647;
    padding-left: 10px;
}

.reservation-time {
    font-weight: bold;
    margin-bottom: 20px;
}

.reservation-location {
    display: flex;
    align-items: flex-start;
}

.location-icon {
    margin-right: 15px;
    text-align: center;
}

.location-icon .start-point,
.location-icon .end-point {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #0A2647;
}

.location-icon .end-point {
    background-color: #1E88E5;
}

.location-icon .line {
    width: 2px;
    height: 60px;
    background-color: #ddd;
    margin: 5px 0;
}

.location-details {
    margin-bottom: 15px;
}

.reservation-duration {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Vehicle Options */
.vehicle-options {
    flex: 2;
    width: fit-content;
}

.vehicle-options h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #333;
}

.vehicle {
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.vehicle img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

.vehicle-details {
    text-align: center;
    flex: 1;
}

.vehicle-details h4 {
    margin-bottom: 10px;
    color: #333;
}

.vehicle-details p {
    margin: 5px 0;
    color: #555;
}

.vehicle-action button {
    background: linear-gradient(90deg, hsla(277, 74%, 24%, 1) 0%, hsl(185, 64%, 51%) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.vehicle-action button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, hsla(185, 64%, 51%, 1) 0%, hsla(277, 74%, 24%, 1) 100%);
    transition: all 0.2s ease;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.vehicle-action button:hover {
    background: linear-gradient(90deg, hsla(277, 74%, 24%, 1) 0%, hsl(185, 64%, 51%) 100%);
}



/* Esnek Düzen */
.selection-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Responsive Stil */
@media (max-width: 768px) {
    .selection-wrapper {
        flex-direction: column;
    }

    .vehicle {
        flex-direction: column;
        text-align: center;
    }

    .vehicle img {
        margin-bottom: 15px;
    }

    .vehicle-action {
        margin-top: 10px;
    }

    .reservation-location {
        flex-direction: column;
    }

    .location-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location-icon .line {
        height: 30px;
    }
}


/* Üst Menü (Top Bar) */
.top-bar {
    background-color: #000;
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}
/* Ana Menü (Main Navigation) */
.main-nav {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0; /* top-bar'ın altında boşluk bırakmamak için top: 0 yerine top: 50px ayarı yapıldı */
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-top: 35px; /* Top-bar'ın yüksekliği kadar boşluk bırakmak için margin-top eklendi */
}

.main-nav .logo img {
    height: 50px;
}

/* Menü */
.main-nav .menu {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.90rem;
}

.main-nav .menu li {
    margin-right: 20px;
}

.main-nav .menu li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.main-nav .menu li a:hover {
    color: #0A2647;
}

.main-nav .user-actions {
    display: flex;
    align-items: center;
}

.main-nav .user-actions a {
    color: black;
    text-decoration: none;
    margin-right: 20px;
}

.main-nav .user-actions a:last-child {
    background-color: #0A2647;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}
.main-nav .user-actions a:last-child:hover {
    background: linear-gradient(90deg, hsla(185, 64%, 51%, 1) 0%, hsla(277, 74%, 24%, 1) 100%);
    color: white;
}

/* Mobil Menü Butonu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Active durumu */
.menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active div:nth-child(2) {
    opacity: 0; /* Orta çubuğu gizle */
}

.menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



.menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;

}

.menu .submenu li a {
    padding: 10px;
    white-space: nowrap;
    border-bottom: 1px solid #000; /* Sadece alt kenar için border */
    margin-bottom: 1px; /* Alt boşluk, öğeleri birbirinden ayırmak için */
    display: block;
    background-color: #fff; /* Arka plan rengini beyaz yaptık */
}




.menu li:hover .submenu {
    display: block;
}

.menu .submenu li a:hover {
    background: linear-gradient(90deg, hsla(185, 64%, 51%, 1) 0%, hsla(277, 74%, 24%, 1) 100%);
    color: #fff;
}

/* Kenar Çubuğu (Sidebar) */
/* Sidebar stilleri */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #333;
    color: white;
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-left: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
}

/* Kapatma butonu stilleri */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.close-btn:hover {
    color: #f00;
}

.sidebar.active {
    left: 0;
}

/* Menü stilleri */
.sidebar .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.sidebar .menu li {
    margin-bottom: 20px;
}

.sidebar .menu li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    width: 100%;
    display: block;
    padding: 10px 20px;
}

/* Kullanıcı işlemleri */
.sidebar .user-actions {
    margin-top: auto;
    padding-bottom: 20px;
}

.sidebar .user-actions a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 10px 20px;
}


.menu .submenuu {
    list-style-type: none;
    padding-left: 15px;
    display: none; /* Alt menü başlangıçta gizli */
}

.menu .submenuu li a {
    padding: 5px;
    border-bottom: 1px solid #fff;
}

.dropdown a {
    cursor: pointer;
}

/* Mobil Uyumlu */
/* Mobil Cihazlar için (max-width: 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav .menu, .main-nav .user-actions {
        display: none;
    }

    /* Sidebar açıkken gösterilsin */
    .sidebar {
        display: block;
    }

    /* Menu açıldığında aktif menü görünümü */
    .menu-toggle.active + .main-nav .menu,
    .menu-toggle.active + .main-nav .user-actions {
        display: flex;
        flex-direction: column;
    }
}

/* Masaüstü ve Tablet Cihazlar için (min-width: 769px) */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .main-nav .menu {
        display: flex;
    }

    .main-nav .user-actions {
        display: flex;
    }

    .sidebar {
        display: none;
    }
}


/* Preloader */
#preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 9999;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader .spinner-border {
    width: 3rem;
    height: 3rem;
}


/* Bar Container */
.bar-container {
    position: relative;
    margin-top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    background-image: url('../img/slider-002.webp'); /* Arka plan için görsel ekledik */
    background-size: cover; /* Görselin tüm alanı kaplaması için */
    background-position: center; /* Görseli ortala */
    padding: 50px; /* İç boşluk ekledik */
    border-radius: 5px; /* Hafif köşeleri yuvarlat */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif bir gölge ekleyerek katman hissi ver */
    color: white; /* Arka plan koyuysa, metin rengini beyaz yap */
}


.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

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

.footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-support,
.footer-phone,
.footer-apps {
    flex: 1;
    margin: 10px 10px;
    text-align: center;
}

.footer-support i,
.footer-phone i,
.footer-apps i {
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
    color: #0056b3;
}

.footer-support p,
.footer-phone p,
.footer-apps .app-links {
    margin-top: 10px;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links {
    flex: 1;
    margin: 10px 10px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.social-icons a {
    margin: 0 10px;
    color: #fff;
    font-size: 20px;
}

.tursab-info {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.tursab-info img {
    max-height: 40px;
    margin-right: 10px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .footer-top, .footer-middle, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-support,
    .footer-phone,
    .footer-apps {
        margin: 15px 0;
    }

    .footer-links {
        margin: 20px 0;
    }

    .social-icons {
        margin-bottom: 20px;
    }

    .tursab-info {
        flex-direction: column;
        text-align: center;
    }
}
.about-us {
    background-color: #f9f9f9;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

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

.about-us h1, .about-us h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.about-us p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.about-us ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
    margin-bottom: 20px;
}

.about-us ul li {
    margin-bottom: 10px;
}

.about-us a {
    color: #007bff;
    text-decoration: none;
}

.about-us a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-us h1, .about-us h2 {
        font-size: 24px;
    }

    .about-us p, .about-us ul {
        font-size: 16px;
    }
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
h4,h5 {
    background: linear-gradient(90deg, hsla(185, 64%, 51%, 1) 0%, hsla(277, 74%, 24%, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
/* Genel Stil Ayarları */
.container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Grid Sistem */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px; /* Kolonlar arasında boşluk yaratmak için negatif marjin */
}

.col {
    padding: 10px;
    box-sizing: border-box;
}

/* Kartlar için Stil */
.card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img-top {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Responsive Grid */
@media (max-width: 576px) {
    .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 993px) {
    .col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
a {
    color: white; /* Beyaz renk */
    text-decoration: none; /* Altı çizili olmasın */
}


a:hover {
    text-decoration: underline; /* Hover durumunda altı çizili */
}

/* İletişim Formu Stili */
/* Genel stil */
.contact-form {
    display: none;
    flex-direction: column; /* İçerik dikeyde hizalanacak */
    align-items: center; /* İçerik yatayda ortalanacak */
    justify-content: center; /* İçerik dikeyde ortalanacak */
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f9f9f9;
    padding: 20px;
    box-sizing: border-box;
    width: auto; /* İçerik kadar genişlik */
    height: auto; /* İçerik kadar yükseklik */
    max-width: 100%; /* Geniş ekranlarda taşmayı engeller */
}

.contact-form input[type="text"],
.contact-form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact-form select {
    height: 45px;
    background-color: #fff;
    cursor: pointer;
}

.contact-form button[type="submit"],
.contact-form button[type="button"] {
    padding: 10px 15px;
    margin-top: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-form button[type="button"] {
    background-color: #ff4d4d;
}

.contact-form button[type="submit"]:hover {
    background-color: #0A2647;
}

.contact-form button[type="button"]:hover {
    background-color: #c82333;
}

.contact-form label {
    margin-top: 10px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form button {
    margin-bottom: 15px;
}

/* Responsive: 768px ve daha küçük ekranlar için */
@media (max-width: 768px) {
    .contact-form {
        position: relative;
        width: auto;
        padding: 15px;
        max-width: 90%; /* Genişliği içeriğe göre ayarla */
        max-height: 90%; /* Yüksekliği içeriğe göre ayarla */
    }

    .contact-form input[type="text"],
    .contact-form select {
        padding: 8px;
        font-size: 14px;
    }

    .contact-form button[type="submit"],
    .contact-form button[type="button"] {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Responsive: 480px ve daha küçük ekranlar için */
@media (max-width: 480px) {
    .contact-form {
        position: relative;
        width: auto; /* Tam genişlik yerine içeriğe göre genişlik */
        padding: 10px;
        max-width: 100%; /* Tam ekran genişliğine yaklaşması için */
        max-height: 90%; /* Tam ekran yüksekliğini geçmesin */
    }

    .contact-form input[type="text"],
    .contact-form select {
        padding: 6px;
        font-size: 12px;
    }

    .contact-form button[type="submit"],
    .contact-form button[type="button"] {
        padding: 6px 8px;
        font-size: 12px;
    }
}
/* Vehicle Action Button Stil */
.vehicle-action button {
    background: linear-gradient(90deg, hsla(277, 74%, 24%, 1) 0%, hsl(185, 64%, 51%) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vehicle-action button:hover {
    background: linear-gradient(90deg, hsla(277, 74%, 24%, 1) 0%, hsl(185, 64%, 51%) 100%);
}

/* Araç Divi Responsive Ayarı */
.vehicle {
    position: relative;
}

@media (max-width: 768px) {
    .vehicle {
        flex-direction: column;
    }
}
/* Talebiniz Alındı Sayfası Stilleri */
.confirmation-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 100px auto;  /* Sayfayı ortalamak için */
}

.confirmation-container h1 {
    color: #0A2647;
    margin-bottom: 20px;
}

.confirmation-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.confirmation-container ul {
    list-style-type: none;
    padding: 0;
}

.confirmation-container ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.confirmation-container ul li strong {
    color: #0A2647;
}

.back-home {
    background-color: #0A2647;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: #003B8E;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .confirmation-container {
        padding: 20px;
    }

    .confirmation-container h1 {
        font-size: 24px;
    }

    .confirmation-container p {
        font-size: 16px;
    }

    .confirmation-container ul li {
        font-size: 14px;
    }

    .back-home {
        font-size: 14px;
        padding: 10px 20px;
    }
}
/* Checkmark Animasyonu */
.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    margin: 20px auto;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 10px #4CAF50;
    }
}

.confirmation-container {
    text-align: center;
    margin-top: 50px;
}

.confirmation-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.confirmation-container ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.confirmation-container ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.back-home {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-home:hover {
    background-color: #0056b3;
}
.swap-icon {
    position: relative;
    right: 5px;
    top: 50%;
    transform: translateY(-0%);
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

/* Mobilde swap icon görünmesin */
@media (max-width: 768px) {
    .swap-icon {
        display: none !important;
    }
}
.step-box {
    background: linear-gradient(90deg, hsla(212, 35%, 58%, 1) 0%, hsla(218, 32%, 80%, 1) 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.866);
}

.step-box i {
    font-size: 40px;
    margin-bottom: 10px;
}

.step-box h4 {
    margin-top: 10px;
    color: black !important;

}
.info-box-wrapper {
    display: flex;
    justify-content: center; /* Yatayda ortalama */
    align-items: center; /* Dikeyde ortalama */
    gap: 20px;
}

/* Her bir bilgi kutusu */
.info-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

/* İkon stilleri */
.info-box i {
    font-size: 24px;
    color: #666;
}

/* Başlık stilleri */
.info-box h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

/* Paragraf stilleri */
.info-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Mobilde alt alta sıralama */
@media (max-width: 768px) {
    .info-box-wrapper {
        flex-direction: column; /* Mobilde alt alta sıralama */
        gap: 15px; /* Daha küçük boşluk */
    }
    
    .info-box {
        width: 100%; /* Genişlik tam olur */
        justify-content: flex-start; /* Mobilde sola hizala */
    }
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;  /* Yatayda ortalama */
    align-items: center;       /* Dikeyde ortalama */
    height: 100%;   
}

.vehicle-feature {
    background-color: #e6f4ea;
    color: #28a745;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1 1 calc(50% - 10px);
}

/* Küçük ekranlarda (mobilde) esnek düzen */
@media (max-width: 768px) {
    .vehicle-feature {
        flex: 1 1 100%; /* Tüm kutuları alt alta yerleştirir */
    }
}

.vehicle-info {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.vehicle-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f4f4f4;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.vehicle-info i {
    font-size: 18px;
    color: #0A2647; /* İkon rengi */
}

/* Hover efekti */
.vehicle-info p:hover {
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}
.vehicle-price {
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    color: #333;
    display: inline-block;
    margin: 5px 0;
}

.vehicle-price i {
    margin-left: 2px;
    margin-right: 2px;
    color: #007bff; /* Lira simgesi için mavi rengi */
}

.vehicle-price span {
    font-size: 14px;
    color: #666;
}
/*.vehicle-images-slider { //eski slider kodları
    display: flex;
    flex-direction: row; /* Görsellerin yatay olarak dizilmesini sağlar 
    overflow-x: auto;
    max-width: 300px; /* Slider genişliğini sınırla 
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    gap: 10px; /* Görseller arasında boşluk bırakır 
}

.vehicle-images-slider img {
    max-width: 300px;
    border-radius: 8px;
    object-fit: cover;
    scroll-snap-align: start;
}

*/

.vehicle-images-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-images-slider {
    display: flex;
    overflow: hidden;
    max-width: 300px; /* Slider genişliğini ayarlayın */
    position: relative;
}

.vehicle-images-slider img {
    width: 100%;
    max-width: 300px;
    display: none; /* Başlangıçta tüm resimleri gizleyin, sadece aktif olan görünecek */
    border-radius: 8px;
}

.vehicle-images-slider img.active {
    display: block; /* Sadece aktif olan resmi göster */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}
/* Genel Stil (Aynı Kalacak) */

/* Sidebar Wrapper */
/* Sidebar İçin */
.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Arka planı yarı şeffaf yaparak tüm ekranı kapla */
    z-index: 1001;
    transition: left 0.3s ease;
    display: flex;
    justify-content: center; /* Ortalamak için */
    align-items: center; /* Dikeyde ortalamak için */
}
/* Sidebar İçerik */
.sidebar-content {
    width: 100%; /* Tam ekranı kaplasın */
    height: 100%; /* Yüksekliği %100 yaparak tüm ekranı kapla */
    background-color: #fff;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* İçerikleri üste hizala */
    overflow-y: auto; /* İçerik çok olduğunda kaydırılabilir olsun */
}
.sidebar-content .close-btn {
    font-size: 24px;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/*  Input Alanı */
.sidebar-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Kalkış Noktası Başlığı */
.sidebar-header {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    margin-bottom: 10px;
    text-align: left;
}

/* Öneri Listesi Sidebar'da */
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    display: none; /* Gizlenmiş halde */
}

.suggestions-list.active {
    display: block; /* Aktif olduğunda görünür hale getir */
}

/* Öneri Listesi Elemanları */
.suggestions-list li {
    display: flex;
    padding: 10px;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    border: 1px solid #ccc; /* Kenarlık ekle */
    border-radius: 5px; /* Kenarları yuvarla */
    margin-bottom: 10px; /* Her öğe arasında boşluk bırak */
}

.suggestions-list li i {
    font-size: 24px;
    color: #555;
    padding-right: 10px; /* Çizgi ve ikon arasında boşluk */
    border-right: 1px solid #ccc; /* İkonun sağ tarafına çizgi ekle */
}

.suggestions-list li:hover {
    background-color: #f0f0f0; /* Hover sırasında arka plan rengini değiştir */
    border-color: #0A2647; /* Hover sırasında kenarlık rengini değiştir */
    border-right-color: #0A2647; /* Hover sırasında çizgi rengini değiştir */
}


.suggestions-list li i {
    font-size: 24px;
    color: #0A2647;
}

/* Adres bilgileri iki satır olacak şekilde */
.suggestions-list li .main-text {
    font-weight: bold;
    font-size: 16px;
    color: #0A2647;
}

.suggestions-list li .secondary-text {
    font-size: 12px;
    color: #777;
}


/* Masaüstü İçin Liste Input'un Altında */
@media (min-width: 769px) {
    .location-group {
        position: relative;
    }

    .suggestions-list {
        position: absolute;
        top: 100%; /* Inputun hemen altında */
        left: 0;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        z-index: 1000;
    }

    .suggestions-list.active {
        display: block;
    }
}

/* Mobil İçin Sidebar ve Öneri Listesi */
@media (max-width: 768px) {
    .sidebar-wrapper {
        justify-content: flex-end;
    }

    .sidebar-content {
        width: 100%;
        z-index: 1002;
    }

    .suggestions-list {
        position: static;
        max-height: 300px;
        width: 100%;
    }

    .suggestions-list li {
        flex-direction: row;
        gap: 10px;
    }
}
.clear-btn {
    background-color: #ff4d4d;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.clear-btn:hover {
    background-color: #ff6666;
}
.label-clickable {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.date-group-icon {
    margin-right: 8px;
}

input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
/* Konfeti animasyonu için */
@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 30px;
    background-color: red;
    opacity: 0.7;
    animation: confetti-fall 5s linear infinite;
}

.confetti:nth-child(2n) {
    background-color: yellow;
}

.confetti:nth-child(3n) {
    background-color: blue;
}

.confetti:nth-child(4n) {
    background-color: green;
}

.confetti:nth-child(5n) {
    background-color: orange;
}

.confetti:nth-child(6n) {
    background-color: purple;
}

.confetti:nth-child(odd) {
    animation-duration: 4s;
}

.confetti:nth-child(even) {
    animation-duration: 6s;
}

.confetti:nth-child(1) { left: 10%; animation-delay: 0s; }
.confetti:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.confetti:nth-child(3) { left: 30%; animation-delay: 1s; }
.confetti:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.confetti:nth-child(5) { left: 50%; animation-delay: 2s; }
.confetti:nth-child(6) { left: 60%; animation-delay: 2.5s; }
.confetti:nth-child(7) { left: 70%; animation-delay: 3s; }
.confetti:nth-child(8) { left: 80%; animation-delay: 3.5s; }
.confetti:nth-child(9) { left: 90%; animation-delay: 4s; }
.confetti:nth-child(10) { left: 100%; animation-delay: 4.5s; }
/* WhatsApp Icon Floating */
/* WhatsApp Icon Floating */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* Telefon ikonunun üzerine gelecek şekilde ayarlandı */
    left: 10px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-float i {
    margin-top: 16px;
}

.whatsapp-float:hover {
    background-color: #20b954;
}

/* Telefonla Arama Butonu */
.phone-call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px; /* WhatsApp ikonunun altına yerleştirildi */
    left: 10px; 
    background-color: #007bff;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.phone-call-float i {
    margin-top: 16px;
}

.phone-call-float:hover {
    background-color: #0056b3;
}

/* Mobil için optimize */
@media (max-width: 768px) {
    .whatsapp-float, .phone-call-float {
        width: 60px;
        height: 60px;
        font-size: 35px;
    }

    .whatsapp-float i, .phone-call-float i {
        margin-top: 12px;
    }

    .whatsapp-float {
        bottom: 100px; /* Telefon ikonunun üstünde yer alacak */
        left: 13px;
    }

    .phone-call-float {
        bottom: 30px;
        left: 13px;
    }
}
.lokasyon-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 110px;
}

/* Lokasyon kartı */
.lokasyon {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s ease;
}

.lokasyon:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Resim stili */
.lokasyon img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

/* İçerik stili */
.lokasyon-content {
    flex: 1;
}

.lokasyon-content h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.lokasyon-content p {
    font-size: 16px;
    color: #555;
}

/* Responsive düzenler */
@media (max-width: 768px) {
    /* Tablet ve daha küçük ekranlar için */
    .lokasyon {
        flex-direction: column;
        align-items: flex-start;
    }

    .lokasyon img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .lokasyon-content h2 {
        font-size: 22px;
    }

    .lokasyon-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Mobil cihazlar için */
    .lokasyon {
        padding: 15px;
    }

    .lokasyon img {
        width: 100%;
        height: auto;
    }

    .lokasyon-content h2 {
        font-size: 20px;
    }

    .lokasyon-content p {
        font-size: 13px;
    }
}
.emergency-button {
    background-color: red;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    animation: blink 1s infinite;
    transition: background-color 0.5s ease;
  }

  .emergency-button:hover {
    background-color: darkred;
  }

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