body {
    font-family: "Roboto", sans-serif !important;
    font-style: normal;
}

header .container-fluid {
    padding: 10px 0 10px 0;
    border-bottom: 2px solid #831f82;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #333;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: #f8f9fa;
    color: #831f82;
}

.navbar-nav .nav-link.active {
    color: #831f82;
    font-weight: 600;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #f8f9fa !important;
    color: #831f82 !important;
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.custom-toggler-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background-color: #831f82;
    transition: all 0.3s ease;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #831f82;
    transition: all 0.3s ease;
}

.custom-toggler-icon::before {
    transform: translateY(-10px);
}

.custom-toggler-icon::after {
    transform: translateY(10px);
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
    transform: rotate(-45deg);
}

.quick-reservation-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    padding: 10px 15px;
}

@media (max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        top: 80px;
        right: 0;
        width: 300px;
        background-color: #fff;
        box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 10px 0 0 10px;
        z-index: 1000;
        /* Başlangıçta sağda gizli durumda */
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0) !important;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
    }

    .dropdown-menu {
        width: 100%;
        background-color: #f8f9fa;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 5px;
        padding: 10px;
    }

    .dropdown-item {
        border-radius: 5px;
        padding: 10px 15px;
    }

    .mobile-quick-reservation {
        margin-top: 20px;
        width: 100%;
    }

    .desktop-quick-reservation {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .navbar-collapse {
        transform: none !important;
        transition: none !important;
    }

    .mobile-quick-reservation {
        display: none;
    }

    .desktop-quick-reservation {
        display: block;
    }
}

/* Hero Bölümü */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: white;
    text-align: center;
    margin-bottom: 85px;
}

.slogan-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slogan-subtitle {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.brand-color {
    color: #831f82;
}

@media (max-width: 768px) {
    .slogan-title {
        font-size: 2.5rem;
    }

    .slogan-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 60px 0;
    }
}

/* Form */
.booking-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    position: relative;
    margin-top: -100px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control-lg {
    height: 60px;
}

.input-group-text {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #831f82;
}

.form-control,
.form-select {
    border: 1px solid #ddd !important;
    height: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: #831f82 !important;
    box-shadow: none !important;
}

.location-select .form-select {
    padding-right: 30px;
}

.search-btn {
    background-color: #831f82;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #6a1868;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 31, 130, 0.3);
}

/* Tarih inputunun kendi ikonunu kaldır */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

input[type="date"] {
    position: relative;
}

/* Yeni WhatsApp Bölümü Stilleri */
.whatsapp-container {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 18px 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.whatsapp-logo {
    font-size: 2rem;
    margin-right: 15px;
}

.whatsapp-support {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background-color: #F8F9FA;
    border-bottom: 1px solid #E9ECEF;
}

.support-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #128C7E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.support-info {
    flex-grow: 1;
}

.support-name {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: #212529;
}

.support-status {
    color: #25D366;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
}

.whatsapp-cta {
    padding: 20px 25px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text {
    color: #495057;
    max-width: 70%;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-icon {
    font-size: 1.4rem;
}


/* Ana bölümler */
.feature-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.corporate-values {
    padding: 50px 0;
    background-color: #fff;
}

/* Özellik kartları */
.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #f5f5f5;
}

.feature-icon i {
    font-size: 30px;
    color: #831f82;
}

.feature-title {
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

/* İstatistik bölümü */
.stats-section {
    padding: 60px 0;
    background-color: #831f82;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 18px;
    font-weight: 400;
}

/* Araç kategorileri */
.car-categories {
    padding: 60px 0;
}

.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.category-title {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Kurumsal değerler */
.value-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-card:hover {
    background-color: #831f82;
    color: white;
}

.value-card:hover .value-icon i {
    color: white;
}

.value-icon {
    margin-bottom: 20px;
    height: 60px;
    /* Fixed height for icons */
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 40px;
    color: #831f82;
    transition: all 0.3s ease;
}

.value-title {
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 50px;
    /* Ensures title areas are consistent */
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-values .row {
    display: flex;
    flex-wrap: wrap;
}

.corporate-values .col-lg-3 {
    display: flex;
    margin-bottom: 30px;
}

.section-title-other {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.section-title-other:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #831f82;
}

/* CTA Bölümü */
.cta-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.cta-btn {
    background-color: #831f82;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #6a1868;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(131, 31, 130, 0.3);
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .stat-number {
        font-size: 32px;
    }

    .stat-title {
        font-size: 16px;
    }
}

/* Araç Filomuz Carousel Stili */
.fleet-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.car-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-img-container {
    overflow: hidden;
    position: relative;
}

.car-img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.car-details {
    padding: 20px;
}

.car-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.car-specs {
    margin-top: 10px;
}

#carFleetCarousel .carousel-control-prev,
#carFleetCarousel .carousel-control-next {
    width: 5%;
    opacity: 0.8;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

#carFleetCarousel .carousel-indicators button {
    background-color: #6a1868;
}

#carFleetCarousel .carousel-item {
    padding-bottom: 20px;
}

/* Tüm Filoyu Göster kartı stili */
.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    height: 100%;
}

.view-all-content {
    padding: 30px 20px;
}

.view-all-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.view-all-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.view-all-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.view-all-card .btn {
    background-color: white;
    color: #dc3545;
    border: none;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.view-all-card .btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    transition: ease 1s;
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #bb22ba;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #831f82;
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 18px;
}

.footer-links a:before {
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 12px;
    color: #bb22ba;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 22px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    color: #bb22ba;
    margin-right: 12px;
    font-size: 18px;
}

.contact-info li span {
    color: #ccc;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    height: 45px;
    color: #fff;
}

.newsletter-form .btn {
    background-color: #831f82;
    border-color: #831f82;
}

.newsletter-form .btn:hover {
    background-color: #6a1868;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    margin-bottom: 0;
    color: #aaa;
    text-align: left;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-bottom-links li {
    display: inline-block;
    margin-left: 15px;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-bottom-links {
        text-align: center;
        margin-top: 10px;
    }

    .copyright {
        text-align: center;
    }
}

.search-results-header {
    padding: 15px 0;
}

.search-info {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

.search-highlight {
    font-weight: 600;
    color: #dc3545;
}

.search-modify-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.search-modify-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

/* Araç Filomuz Sayfası Özel Stilleri */
.fleet-page-container {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.page-title {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.filter-sidebar {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #6a1868;
    padding-bottom: 10px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #555;
}

.car-list-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.car-image-container {
    height: 100%;
    padding: 10px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.car-details {
    padding: 20px;
}

.car-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.car-spec {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.car-spec i {
    margin-right: 8px;
}

.price-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #6a1868;
}

.reservation-btn {
    background-color: #6a1868;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.2s ease;
}

.reservation-btn:hover {
    background-color: #831f82;
}

.filter-price-slider {
    width: 100%;
    margin-top: 10px;
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}

.filter-checkbox {
    margin-bottom: 10px;
}

.apply-filter-btn {
    background-color: #6a1868;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
}

.apply-filter-btn:hover {
    background-color: #831f82;
}

@media (max-width: 991px) {
    .filter-sidebar {
        margin-bottom: 30px;
        position: static;
    }
}

/* Kiralama Noktaları Sayfası Özel Stilleri */
.locations-page-container {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.page-title {
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.locations-search {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.search-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.location-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.location-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.location-details {
    padding: 20px;
}

.location-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.location-address {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.location-address i {
    margin-right: 10px;
    color: #6a1868;
    font-size: 18px;
    margin-top: 3px;
}

.location-contact {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.location-contact i {
    margin-right: 10px;
    color: #6a1868;
    font-size: 16px;
}

.location-hours {
    display: flex;
    align-items: center;
    color: #555;
    margin-bottom: 15px;
}

.location-hours i {
    margin-right: 10px;
    color: #6a1868;
    font-size: 16px;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.location-feature {
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.location-btn {
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.view-map-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    transition: background-color 0.2s ease;
}

.view-map-btn:hover {
    background-color: #e0e0e0;
    color: #333;
}

.pick-reservation-btn {
    background-color: #6a1868;
    color: white;
    border: none;
    transition: background-color 0.2s ease;
}

.reservation-btn:hover {
    background-color: #831f82;
    color: white;
}

/* Tab Stilleri */
.location-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    margin: 0 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: #6a1868;
    color: white;
    border-color: #6a1868;
}

.tab-btn:hover:not(.active) {
    background-color: #f8f9fa;
}

/* Harita İçin */
.map-container {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .location-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .location-actions {
        flex-direction: column;
    }
}

.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 1.5rem 1.5rem 0;
}

.modal-body {
    padding: 1rem 1.5rem;
}

.modal-footer {
    padding: 0 1.5rem 1.5rem;
}

.alert-light {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
}

.success-icon i {
    animation: successPulse 1s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

.reservation-alert {
    z-index: 1050 !important;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 10px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.date-input {
    background-color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.date-input::-moz-calendar-picker-indicator {
    opacity: 0;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.form-control {
    justify-content: flex-start;
    display: flex !important;
}

.input-group .form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-group .date-input {
    border-left: 0;
}

@media (max-width: 768px) {
    .date-input {
        text-align: left !important;
        -webkit-appearance: none;
        -moz-appearance: textfield;
    }
    
    .date-input::-webkit-outer-spin-button,
    .date-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .date-input::-webkit-datetime-edit {
        padding: 0;
        text-align: left;
    }
    
    .date-input::-webkit-datetime-edit-fields-wrapper {
        padding: 0;
    }
    
    .date-input::-webkit-datetime-edit-text {
        color: #495057;
        padding: 0 2px;
    }
    
    .date-input::-webkit-datetime-edit-month-field,
    .date-input::-webkit-datetime-edit-day-field,
    .date-input::-webkit-datetime-edit-year-field {
        color: #495057;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    /* Input group içindeki tarih inputları için özel stil */
    .input-group .date-input {
        padding-left: 8px;
        font-size: 16px; /* iOS'ta zoom'u önlemek için */
    }
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #495057;
}

.car-card-compact {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    padding: 20px;
}

.car-img-container-compact {
    overflow: hidden;
    position: relative;
}

.car-img-compact {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.car-details-compact {
    padding: 15px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-title-compact {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.2;
}

.car-specs-compact .badge {
    font-size: 0.7rem;
    padding: 3px 6px;
}

.price-section-compact {
    margin-top: auto;
}

.daily-price-compact {
    font-size: 0.85rem;
}

.total-price-compact {
    font-size: 1rem;
}

.rental-summary-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #dee2e6;
}

.summary-item {
    text-align: center;
    padding: 10px;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
}

.form-section-title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.booking-form-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 20px;
    }
    
    .car-card-compact {
        margin-bottom: 15px;
    }
    
    .car-details-compact {
        padding: 12px;
    }
    
    .rental-summary-card {
        padding: 15px;
    }
    
    .summary-item {
        margin-bottom: 15px;
    }
}

.search-btn {
    background-color: #831f82;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background-color: #6a1868;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 31, 130, 0.3);
    color: white;
}

.search-btn:active {
    transform: translateY(0);
}