/* Global Styles */
:root {
    --primary-color: #CFAE50; /* Daha sofistike bir Gold tonu */
    --primary-dark: #9E7D2E; /* Daha derin ve lüks bir koyu altın */
    --primary-light: #F1D98F; /* Daha soft ve zarif bir açık altın */
    --secondary-color: #6a7580; /* Daha koyu ve şık bir gri ton */
}

body {
    padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global Link Styles */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

/* Filter Icon Styles */
.filter-toggle-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.filter-toggle-icon.desktop {
    display: inline-block;
}

.filter-toggle-icon.mobile {
    display: none;
}

@media (max-width: 991px) {
    .filter-toggle-icon.desktop {
        display: none;
    }

    .filter-toggle-icon.mobile {
        display: inline-block;
    }
}

/* Modern Minimal Header Styles */
.navbar {
    background: #1a1a1a !important;
    padding: 20px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    color: white;
    height: 80px;

}

.navbar > .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
}


@media screen and (max-width: 768px) {
  .navbar-brand {
      max-width: 50%;
      width: 50%;
  }
  body{
    display: block;
    position: relative;
    width:100%;
    overflow-x: hidden;
  }
}



.nav-link {
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover {
    color: #fff !important;
    opacity: 1;
}

.nav-link.active {
    color: var(--primary-color) !important;
    opacity: 1;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Dropdown Styles */
.dropdown-menu {
    background: #1a1a1a;
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    color: white;
}

.dropdown-item {
    color: #fff !important;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.dropdown-item:hover {
    background: #2a2a2a;
    color: #fff !important;
    opacity: 1;
}

.dropdown-item.active {
    background: #2a2a2a;
    color: var(--primary-color) !important;
    opacity: 1;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #1a1a1a;
        border-radius: 12px;
        padding: 20px;
        position: fixed;
        width: 100%;
        left: 0;
        top: 79px;
        border-radius: 0;
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: #2a2a2a;
    }

    .dropdown-menu {
        background: #2a2a2a;
        margin-top: 5px;
        padding: 5px;
    }

    .dropdown-item {
        padding: 12px 15px;
    }

    .dropdown-item:hover {
        background: #333;
    }

    .navbar {
        padding: 15px 20px;
    }
}

/* Header Button */
.navbar .btn-primary {
    background: var(--primary-color);
    color: #000 !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;

    padding: 8px 20px;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background: #b18d24;
    transform: translateY(-2px);
}

.navbar .btn-primary:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15%;
    margin-bottom: 150px; /* Filtreleme alanı ile mesafe */
}

.hero-slide {
    width: 100%;

}

.slide-content {
    color: black;
}

.pre-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;

    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Search Form Styles */
.search-wrapper {
    margin-top: -75px;
    z-index: 3;
    position: relative;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.search-form {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.search-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.search-form label {
    display: block;
    color: #808080;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.custom-input {
    width: 100%;
    height: 54px;
    background: #2a2a2a;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    padding: 0 20px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.custom-input:hover {
    background: #333;
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #333;
}

/* Date ve Time input için özel stiller */
input[type="date"].custom-input,
input[type="time"].custom-input {
    padding-right: 20px;
}

/* Select için özel stiller */
select.custom-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23808080' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    padding-right: 45px;
}

/* Search Button Styles */
.search-btn {
    width: 100%;
    height: 54px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 29px;
    text-transform: uppercase;
}

.search-btn:hover {
    background: #b18d24;
    transform: translateY(-2px);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn i {
    font-size: 1rem;
}

/* Placeholder Color */
.custom-input::placeholder {
    color: #808080;
}

/* Calendar Icon Color */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    opacity: 0.7;
    cursor: pointer;
}

/* Input Focus Indicator */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.form-group:focus-within::after {
    width: calc(100% - 30px);
}

@media (max-width: 768px) {
    .search-form {
        padding: 20px;
        border-radius: 12px;
    }

    .custom-input {
        height: 50px;
        font-size: 0.9rem;
    }

    .search-btn {
        height: 50px;
        margin-top: 15px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar > .container {
        padding: 0 15px;
    }

    .navbar-brand {
        margin-right: 0;

    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .btn {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .search-form {
        padding: 1rem;
    }

    .search-btn {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px; /* Mobilde üstten boşluk arttı */
        justify-content: flex-start; /* İçeriği üstten başlat */
    }

    .hero-content-wrapper {
        padding: 0 5%;
        margin-bottom: 50px;
        text-align: center;
    }

    .search-container {
        padding: 0 5%;
        margin-top: auto; /* Arama formunu alta it */
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pre-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    /* Sadece mobil cihazlar için stiller */
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
}

.dropdown-item {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

/* Fleet Section Styles */
.fleet-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.more-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Fleet Card Styles */
.car-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.car-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.car-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.car-card-link:hover .car-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.car-image {
    position: relative;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-details {
    padding: 1.5rem;
}

.car-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.car-model {
    color: #666;
    margin-bottom: 1rem;
}

.car-features {
    display: flex;
    justify-content: space-between;
    color: #666;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* AOS için ek stil */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Plan Visit Section Styles */
.plan-visit-section {
    padding: 80px 0;
    background-color: #333;
    color: #fff;
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid #fff;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.visit-image {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }

    .timeline-dot {
        left: -24px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-card {
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    transition: all 0.3s ease;
}

.service-overlay h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.service-card:hover {
    color: #fff;
    text-decoration: none;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.4));
}

@media (max-width: 768px) {
    .service-card {
        height: 250px;
    }

    .service-overlay h3 {
        font-size: 1.1rem;
    }
}

/* Trip Features Styles - Güncelleme */
.trip-features {
    padding: 80px 0;
    background-color: #fff;
}

/* Ana sayfa feature-item'ları için özel stil */
.trip-features .feature-item {
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    display: block !important; /* Diğer feature-item stillerini override etmek için */
}

.trip-features .feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
}

.trip-features .feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.trip-features .feature-item:hover .feature-icon {
    background-color: var(--primary-color);
}

.trip-features .feature-item:hover .feature-icon i {
    color: #fff;
}

.trip-features .feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.trip-features .feature-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Tour Detail sayfasındaki feature-item için özel stil */
.booking-features .feature-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
    padding: 0;
    text-align: left;
}

.booking-features .feature-item i {
    color: var(--primary-color);
    width: 20px;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 30px;
    }

    .feature-item h3 {
        font-size: 1.25rem;
    }
}

/* Footer Styles - Güncelleme */
.footer {
    background-color: #333;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact-info {  /* contact-info -> footer-contact-info olarak değişti */
    background: transparent; /* Arka plan rengini kaldırdık */
    padding: 0; /* Padding'i sıfırladık */
    border-radius: 0; /* Border radius'u kaldırdık */
    box-shadow: none; /* Box shadow'u kaldırdık */
}

.footer-contact-info .info-item {  /* Footer'daki info-item için özel stiller */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info .info-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: auto;
}

.footer-contact-info .info-item p,
.footer-contact-info .info-item a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-contact-info .info-item a:hover {
    color: var(--primary-color);
}

/* Copyright Styles */
.copyright {
    background-color: #222;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.8);
}

.copyright-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.copyright-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }

    .copyright-links {
        justify-content: center;
        margin-top: 10px;
    }

    .copyright .text-md-end {
        text-align: center !important;
    }

    .copyright .col-md-6:first-child {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* WhatsApp Button - Eğer varsa */
.whatsapp-btn {
    background: var(--primary-color);
}

.whatsapp-btn:hover {
    background: var(--primary-dark);
}

/* Navbar */
.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Service Detail Styles */
.service-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.service-hero h1 {
    color: #fff;
    position: relative;
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-content {
    padding: 80px 0;
}

.service-description h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.service-description .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--primary-color);
}

.cta-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h4 {
    margin-bottom: 1.5rem;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.other-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-services li {
    margin-bottom: 1rem;
}

.other-services a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.other-services a:hover {
    background: rgba(212, 175, 55, 0.1);
}

.other-services img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

@media (max-width: 768px) {
    .service-hero {
        height: 300px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* Fleet Detail Styles */
.fleet-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.fleet-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.fleet-hero .container {
    position: relative;
    z-index: 1;
    color: #fff;
}

.fleet-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.fleet-content {
    padding: 80px 0;
}

/* Gallery Styles */
.vehicle-gallery {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.swiper {
    width: 100%;
    border-radius: 10px;
}

.swiper.mainSwiper{
    border-radius: 0 !important;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Vehicle Features */
.vehicle-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.vehicle-features h3 {
    margin-bottom: 1.5rem;
}

/* Other Vehicles List */
.other-vehicles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-vehicles li {
    margin-bottom: 1rem;
}

.other-vehicles a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.other-vehicles a:hover {
    background: rgba(212, 175, 55, 0.1);
}

.other-vehicles img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

.vehicle-info {
    display: flex;
    flex-direction: column;
}

.vehicle-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.vehicle-type {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .fleet-hero {
        height: 300px;
    }

    .fleet-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .vehicle-features {
        padding: 1.5rem;
    }
}

/* Tours Page Styles */
.tours-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.tours-hero-slider {
    height: 500px;
    width: 100%;
}

.tours-hero .swiper-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0;
}

.tours-hero .container {
    padding: 0 40px;
    color: #fff;
    margin-bottom: 200px;
    margin-left: 75px;
}

.tours-hero .swiper-button-next,
.tours-hero .swiper-button-prev {
    color: #fff;
}

.tours-hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.tours-hero .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .tours-hero-slider,
    .tours-hero .swiper-slide {
        height: 400px;
    }

    .tours-hero .container {
        padding: 0 20px;

    }
}

/* Filter Styles */
.tours-filter {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.form-check {
    margin-bottom: 10px;
}

.price-range {
    padding: 10px 0;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

/* Tour Card Styles */
.tour-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tour-image {
    position: relative;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.tour-content {
    padding: 20px;
}

.tour-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.tour-price .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tour-price .per {
    font-size: 0.9rem;
    color: #666;
}

/* Pagination Styles */
.pagination .page-link {
    color: var(--primary-color) !important;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .tours-filter {
        position: static !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .tours-hero {
        height: 300px;
    }

    .tour-image {
        height: 200px;
    }
}

/* Tour Card Link Styles - Güncelleme */
.tour-card-link {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}

.tour-card-link:hover,
.tour-card-link:focus,
.tour-card-link:active {
    color: inherit !important;
    text-decoration: none !important;
}

/* Pagination Link Styles - Güncelleme */
.pagination .page-link {
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.pagination .page-item.active .page-link {
    color: #fff !important;
}

/* Footer Link Styles - Güncelleme */
.footer-links a,
.copyright-links a,
.social-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.footer-links a:hover,
.copyright-links a:hover {
    color: var(--primary-color) !important;
}

/* Navbar Link Styles - Güncelleme */
.navbar-nav .nav-link {
    color: inherit !important;
    text-decoration: none !important;
}

.dropdown-item {
    color: inherit !important;
    text-decoration: none !important;
}

/* Other Vehicles Link Styles - Güncelleme */
.other-vehicles a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Tour Detail Styles */
.tour-detail-hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-bottom: 50px;
}

.tour-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 10px 0;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.tour-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.tour-detail-content {
    padding: 80px 0;
}

/* Gallery Styles */
.tour-gallery {
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Tour Description Styles */
.tour-description h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--primary-color);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-item .time {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-item h4 {
    margin-bottom: 5px;
}

/* Sidebar Styles */
.tour-sidebar {
    position: sticky;
    top: 100px;
}

.booking-widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.price-box {
    text-align: center;
    margin-bottom: 20px;
}

.price-box .price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-box .per {
    font-size: 1rem;
    color: #666;
}

.booking-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.feature-item i {
    color: var(--primary-color);
    width: 20px;
}

.other-tours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.other-tour-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.other-tour-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.other-tour-item img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

.tour-info {
    flex: 1;
}

.tour-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.tour-info .price {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 991px) {
    .tour-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .tour-detail-hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .tour-highlights {
        gap: 10px;
    }

    .tour-highlights span {
        font-size: 0.9rem;
    }

    .swiper-slide img {
        height: 300px;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.contact-hero .hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-content {
    padding: 80px 0;
}

/* Contact Info Styles */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 24px;
}

.info-item .info-content {
    flex: 1;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #666;
}

.info-item a {
    color: #666;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

textarea.form-control {
    height: auto;
}

.form-select {
    height: 50px;
}

/* Map Styles */
.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-content {
        padding: 40px 0;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .map-container {
        height: 350px;
    }
}

/* Policy Page Styles */
.policy-hero {
    background-color: #f8f9fa;
    padding: 100px 0 50px;
    margin-top: 80px;
    text-align: center;
}

.policy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content {
    padding: 80px 0;
}

/* Sidebar Styles */
.policy-sidebar {
    position: sticky;
    top: 100px;
}

.policy-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav li {
    margin-bottom: 10px;
}

.policy-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 5px;
    color: #666;
    transition: all 0.3s ease;
}

.policy-nav a i {
    color: var(--primary-color);
    width: 20px;
}

.policy-nav li.active a {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    font-weight: 500;
}

.policy-nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

/* Policy Text Styles */
.policy-text {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    color: #666;
}

@media (max-width: 991px) {
    .policy-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .policy-hero {
        padding: 60px 0 30px;
    }
}

@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-text {
        padding: 20px;
    }
}

.hero, .heroSwiper, .hero-image, .swiper-slide, .swiper-slide img {
    border-radius: 0 !important;
}

.btn-pr{
    background: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    color: #000;
}


footer{
  max-width: 100%;
}
