:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c5a47e;
    --accent-color: #e4a838;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --dark-gray: #222;
    --medium-gray: #666;
    --light-gray: #999;
    --border-radius: 8px;
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--medium-gray);
    font-size: 16px;
}

/* Header Styles */
.main-header {
    background-color: rgba(26, 26, 26, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dil Seçenekleri */
.language-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-btn.active {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.lang-btn:hover {
    transform: scale(1.1);
}

/* Dil değiştirme bildirimi */
.language-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 2000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.language-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

/* Mobil Uyumlu Header */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .language-selector {
        margin-left: auto;
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    .language-selector {
        margin-right: 10px;
    }
    
    .lang-btn {
        width: 25px;
        height: 25px;
    }
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 3px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    margin: 0 15px;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Section */
.counter-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.counter-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.counter-text {
    font-size: 16px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 90px 0;
    background-color: var(--light-bg);
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(197, 164, 126, 0.05) 25%, transparent 25%, transparent 50%, rgba(197, 164, 126, 0.05) 50%, rgba(197, 164, 126, 0.05) 75%, transparent 75%, transparent);
    background-size: 60px 60px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-15px);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box i {
    font-size: 45px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background-color: rgba(197, 164, 126, 0.1);
    transition: var(--transition);
}

.feature-box:hover i {
    transform: rotateY(360deg);
    background-color: rgba(197, 164, 126, 0.2);
}

.feature-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Vehicles Section */
.vehicles {
    padding: 90px 0;
    position: relative;
    background-color: var(--white);
}

.vehicle-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-btn:hover::before {
    width: 100%;
}

.filter-btn.active {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.4);
}

.filter-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.4);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.6);
}

.filter-btn span {
    position: relative;
    z-index: 2;
}

.filter-btn-counter {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.filter-btn:hover .filter-btn-counter, 
.filter-btn.active .filter-btn-counter {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.vehicle-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
}

.vehicle-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vehicle-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    background-color: #f9f9f9;
}

.vehicle-card img:before {
    content: "Resim Yüklenemedi";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background-color: #f5f5f5;
    color: #666;
    text-align: center;
    line-height: 220px;
    font-size: 14px;
}

.vehicle-card:hover img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 25px;
    position: relative;
}

.vehicle-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.vehicle-year {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-size: 15px;
}

.vehicle-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.vehicle-details p {
    display: flex;
    align-items: center;
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 0;
}

.vehicle-details i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.vehicle-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vehicle-card .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 0;
    font-size: 14px;
}

.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover::before {
    opacity: 1;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 90px 0;
    background-color: var(--light-bg);
    position: relative;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)), url('https://source.unsplash.com/random/1920x1080/?luxury') no-repeat center/cover fixed;
}

.testimonial-slider {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    flex: 0 0 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 350px;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
    display: block !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(197, 164, 126, 0.2);
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.testimonial-card:hover::after {
    width: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    font-weight: 500;
    min-height: 100px;
}

.testimonial-text::after {
    content: '\201D';
    font-family: Georgia, serif;
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 80px;
    color: rgba(197, 164, 126, 0.2);
    line-height: 0;
    z-index: -1;
}

.testimonial-author {
    margin-top: 30px;
    position: relative;
    padding-top: 15px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.testimonial-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.testimonial-author .vehicle-info {
    font-size: 14px;
    color: var(--secondary-color);
    padding: 3px 10px;
    background-color: rgba(197, 164, 126, 0.1);
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.testimonial-date {
    font-size: 12px;
    color: var(--medium-gray);
    position: absolute;
    right: 25px;
    bottom: 25px;
}

@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 90%;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.brands-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-width: 120px;
    max-height: 60px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.7;
}

.footer-section p i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--white);
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .counter-item {
        min-width: 160px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .counter-container {
        gap: 20px;
    }
    
    .counter-item {
        min-width: 140px;
        padding: 15px;
    }
    
    .counter-icon {
        font-size: 32px;
    }
    
    .counter-number {
        font-size: 30px;
    }
    
    .vehicle-card img {
        height: 180px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .counter-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .counter-item {
        min-width: 100%;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
    .sales-card {
        min-width: 240px;
        flex: 0 0 240px;
    }
    
    .sales-img {
        height: 160px;
    }
}

/* Ripple Effect */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Card Animation Styles */
.card-visible {
    animation: cardAppear 0.5s forwards;
}

.card-fade-in {
    animation: cardFadeIn 0.5s forwards;
}

.card-fade-out {
    animation: cardFadeOut 0.3s forwards;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* Site Intro Animation */
.site-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000, #111111);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    animation: fadeOutIntro 0.3s ease forwards 1.5s;
}

@keyframes fadeOutIntro {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

.intro-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    animation: slideUp 0.3s ease forwards 0.1s;
    position: relative;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.intro-text {
    font-family: 'Raleway', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin: 0 0 15px;
    background: linear-gradient(90deg, var(--secondary-color), #ffffff, var(--secondary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards 0.2s, textGlow 1.5s ease infinite 0.3s;
    position: relative;
}

.intro-tagline {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards 0.4s, borderFlash 1.5s ease infinite 0.5s;
    color: var(--white);
    padding: 5px 0;
    position: relative;
}

.intro-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
    animation: lineExpand 0.8s ease forwards 0.6s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 0 5px rgba(197, 164, 126, 0.3);
        background-position: 0% center;
    }
    50% { 
        text-shadow: 0 0 30px rgba(197, 164, 126, 0.8);
        background-position: 100% center; 
    }
    100% { 
        text-shadow: 0 0 5px rgba(197, 164, 126, 0.3);
        background-position: 0% center;
    }
}

@keyframes borderFlash {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.9); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
}

@keyframes lineExpand {
    0% { width: 0; }
    100% { width: 180px; }
}

/* Son Satışlarımız Bölümü */
.recent-sales {
    padding: 90px 0;
    background-color: var(--white);
    position: relative;
}

.sales-slider-wrapper {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.sales-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 20px 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox için */
    -ms-overflow-style: none; /* IE ve Edge için */
}

.sales-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera için */
}

.sales-card {
    min-width: 280px;
    flex: 0 0 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    transform: translateZ(0);
    border-bottom: 3px solid transparent;
}

.sales-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--secondary-color);
}

.sales-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sales-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sales-card:hover .sales-img img {
    transform: scale(1.1);
}

.sales-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.sales-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.customer-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.vehicle-detail {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 500;
    background-color: rgba(197, 164, 126, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

.customer-location {
    font-size: 13px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.customer-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 12px;
}

.slider-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
    pointer-events: none;
}

.prev-sale, .next-sale {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    pointer-events: auto;
}

.prev-sale:hover, .next-sale:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sales-card {
        min-width: 260px;
        flex: 0 0 260px;
    }
    
    .sales-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .sales-card {
        min-width: 240px;
        flex: 0 0 240px;
    }
    
    .sales-img {
        height: 160px;
    }
}

/* WhatsApp Hızlı İletişim Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 95px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: ripple-whatsapp 1.5s infinite;
}

/* Yol Tarifi Butonu */
.directions-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: pulse-directions 2s infinite;
}

.directions-button:hover {
    transform: scale(1.1);
    background-color: #3367D6;
}

.directions-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #4285F4;
    z-index: -1;
    animation: ripple-directions 1.5s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ripple-whatsapp {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes pulse-directions {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(66, 133, 244, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
    }
}

@keyframes ripple-directions {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* Mobil cihazlar için butonları alt alta göster */
@media (max-width: 576px) {
    .whatsapp-button {
        bottom: 95px;
        right: 25px;
    }
}

/* Footer Harita Bölümü */
.map-section {
    flex: 0 0 100%;
    margin-top: 20px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 15px;
}

.map-buttons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.map-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--secondary-color);
    font-size: 14px;
}

@media (min-width: 992px) {
    .map-section {
        flex: 0 0 40%;
        margin-top: 0;
    }
    
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-section:not(.map-section) {
        flex: 1 0 30%;
    }
}

/* Tüm Araçlar Sayfası Stilleri */
.page-title {
    padding: 90px 0 50px;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('https://source.unsplash.com/random/1920x600/?luxury,cars') no-repeat center/cover;
    color: var(--white);
    text-align: center;
}

.page-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* İki Sütunlu Düzen */
.vehicles-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    position: relative;
}

.vehicles-grid-container {
    flex: 1;
    min-width: 0;
    flex-basis: calc(70% - 15px);
}

.sidebar-filters {
    flex-basis: calc(30% - 15px);
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f1f1f1;
}

.sidebar-filters::-webkit-scrollbar {
    width: 6px;
}

.sidebar-filters::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar-filters::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.filter-sidebar-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-header {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-header:hover {
    background-color: #2a2a2a;
}

.filter-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.filter-toggle-icon i {
    font-size: 14px;
    color: var(--secondary-color);
}

/* Arama ve Filtreleme Bölümü */
.search-filter-container {
    background-color: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.search-box input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.15);
}

.search-box button {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    width: 46px;
    height: 46px;
    border-radius: 50%;
    right: 3px;
    box-shadow: 0 3px 10px rgba(197, 164, 126, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: var(--primary-color);
}

.advanced-filters {
    color: var(--primary-color);
}

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

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.filter-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.15);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.filter-apply-btn, .filter-reset-btn {
    flex: 1;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.filter-apply-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

.filter-apply-btn:hover {
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.3);
    transform: translateY(-2px);
}

.filter-reset-btn {
    background-color: #f1f1f1;
    color: var(--medium-gray);
}

.filter-reset-btn:hover {
    background-color: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

/* Araç Listesi Bölümü */
.vehicles-list-section {
    padding: 0 0 60px;
    background-color: var(--light-bg);
}

.filter-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    background-color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.results-count {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
}

.results-count span {
    color: var(--secondary-color);
    font-weight: 700;
}

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

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    background-color: var(--light-bg);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    border: 1px solid #ddd;
}

.filter-tag i {
    color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tag i:hover {
    color: var(--primary-color);
}

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

.vehicle-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vehicle-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.vehicle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #f9f9f9;
}

.vehicle-card:hover .vehicle-card-img img {
    transform: scale(1.1);
}

.vehicle-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 15px;
    z-index: 2;
}

.vehicle-card-badge.featured {
    background-color: var(--secondary-color);
}

.vehicle-card-badge.sale {
    background-color: #e74c3c;
}

.vehicle-card-content {
    padding: 20px;
}

.vehicle-name {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.vehicle-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.vehicle-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
    margin-bottom: 20px;
}

.detail-item {
    font-size: 14px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.view-details-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.view-details-btn i {
    transition: transform 0.3s ease;
}

.view-details-btn:hover i {
    transform: translateX(4px);
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a.active {
    background-color: var(--secondary-color);
    color: white;
}

.pagination a:hover:not(.active, .disabled) {
    background-color: var(--primary-color);
    color: white;
}

.pagination a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        padding: 80px 0 40px;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
    
    .advanced-filters {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .search-box-container {
        max-width: 100%;
        width: 100%;
    }
    
    .filter-quick-options {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-toggles {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .sort-group {
        width: 100%;
    }
    
    .sort-group select {
        flex: 1;
    }
    
    .filter-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .page-title h1 {
        font-size: 2rem;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-apply-btn, .filter-reset-btn {
        flex: 1;
        justify-content: center;
    }
}

/* Yeni Filtre Bölümü */
.filter-section {
    padding: 0 0 20px;
    background-color: var(--white);
    position: relative;
    margin-top: -20px;
    z-index: 10;
}

.filter-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.filter-row:last-child {
    border-bottom: none;
}

.top-filter {
    justify-content: space-between;
}

.search-box-container {
    flex: 1;
    max-width: 400px;
}

.search-box {
    display: flex;
    width: 100%;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--secondary-color);
}

.search-box button {
    padding: 0 25px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-color);
}

.filter-quick-options {
    display: flex;
    gap: 20px;
}

.checkbox-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-filter input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-filter input[type="checkbox"]:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-filter input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.checkbox-filter label {
    font-size: 14px;
    cursor: pointer;
}

.filter-toggles {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: var(--light-bg);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-toggle-btn:hover, .filter-toggle-btn.active {
    background-color: var(--secondary-color);
    color: white;
}

.filter-toggle-btn i {
    font-size: 12px;
}

.view-toggle {
    display: flex;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.view-toggle button {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.view-toggle button.active {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.view-toggle button:hover {
    color: var(--secondary-color);
}

.advanced-filter-container {
    width: 100%;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.5s ease;
    max-height: 1000px;
    opacity: 1;
}

.advanced-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    position: relative;
}

.filter-group.full-width {
    grid-column: 1 / -1;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
}

.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    outline: none;
    transition: var(--transition);
}

.filter-group select:focus {
    border-color: var(--secondary-color);
}

.price-filter {
    padding-top: 0;
}

.range-slider {
    position: relative;
    width: 100%;
    margin: 10px 0 10px;
    padding: 20px 0;
    --min-value: 0%;
    --max-value: 100%;
    height: 20px;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    z-index: 5;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    cursor: pointer;
    pointer-events: auto;
    -webkit-appearance: none;
    margin-top: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
    transition: all 0.2s ease;
}

.range-slider input[type="range"]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.range-slider input[type="range"]:hover::-webkit-slider-thumb {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.range-slider input[type="range"]:hover::-moz-range-thumb {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.range-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    background: #e0e0e0;
    transform: translateY(-50%);
    border-radius: 5px;
    z-index: 1;
}

.range-slider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: var(--min-value);
    width: calc(var(--max-value) - var(--min-value));
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: translateY(-50%);
    border-radius: 5px;
    z-index: 2;
}

.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.range-values span {
    position: relative;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid rgba(197, 164, 126, 0.2);
    transition: all 0.3s ease;
}

.range-values span:hover {
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.2);
    transform: translateY(-2px);
}

/* Araç Grid Görünümleri */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

/* Büyük Grid */
.vehicles-grid.grid-large {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

/* Orta Grid */
.vehicles-grid.grid-medium {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Liste Görünümü */
.vehicles-grid.grid-list {
    grid-template-columns: 1fr;
    gap: 15px;
}

.vehicles-grid.grid-list .vehicle-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
}

.vehicles-grid.grid-list .vehicle-card-img {
    flex: 0 0 300px;
    height: 200px;
}

.vehicles-grid.grid-list .vehicle-card-content {
    flex: 1;
    padding: 20px 30px;
}

.vehicles-grid.grid-list .vehicle-details {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .vehicles-grid.grid-list .vehicle-card {
        flex-direction: column;
    }
    
    .vehicles-grid.grid-list .vehicle-card-img {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .vehicles-grid.grid-list .vehicle-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Form Elementleri için Estetik Fontlar */
input, select, textarea, button, .checkbox-filter label, .filter-btn, .filter-tag, option {
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.3px;
}

.filter-group label, .range-values span, .results-count {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 500;
}

.filter-apply-btn, .filter-reset-btn, .view-details-btn {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.range-values span {
    font-size: 15px;
    font-weight: 600;
}

.vehicle-price {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vehicle-details .detail-item {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-size: 13px;
}

/* Page Header with Breadcrumbs */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 60px;
    margin-bottom: 50px;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.page-title {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item {
    color: var(--light-gray);
    position: relative;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item:before {
    content: '/';
    margin-right: 10px;
    color: var(--light-gray);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Form Styles */
.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 25px;
    transition: var(--transition);
}

.filter-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-bg);
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--medium-gray);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(197, 164, 126, 0.2);
}

.price-range, .year-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range span, .year-range span {
    color: var(--medium-gray);
}

.full-width {
    width: 100%;
}

.mt-2 {
    margin-top: 10px;
}

/* Vehicle List Styles */
.vehicle-list-wrapper {
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.no-results {
    text-align: center;
    padding: 50px 20px;
    color: var(--medium-gray);
}

.no-results i {
    font-size: 60px;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.no-results p {
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .vehicle-filters .container {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
    
    .filter-wrapper {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .filter-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .price-range, .year-range {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-range span, .year-range span {
        display: none;
    }
}

/* Car Damage Selector Styles */
.vehicle-damage-selector {
    margin-bottom: 2rem;
    position: relative;
    border-radius: 12px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eaeaea;
}

.vehicle-image-container {
    position: relative;
    margin: 0 auto;
    max-width: 700px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.car-damage-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.damage-marker {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--secondary-color, #c5a47e);
    color: var(--secondary-color, #c5a47e);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.damage-marker:hover {
    transform: scale(1.25);
    background-color: var(--secondary-color, #c5a47e);
    color: white;
    box-shadow: 0 0 12px rgba(197, 164, 126, 0.5);
}

.damage-marker.selected {
    background-color: var(--secondary-color, #c5a47e);
    color: white;
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(197, 164, 126, 0.5);
}

.damage-marker.damaged {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.4);
}

.damage-marker.scratched {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #343a40;
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.4);
}

.damage-marker.dented {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
    box-shadow: 0 0 12px rgba(253, 126, 20, 0.4);
}

.damage-marker.replaced {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    box-shadow: 0 0 12px rgba(13, 110, 253, 0.4);
}

/* Marker positions - Updated for PNG car image */
.damage-marker[data-region="front-bumper"] {
    top: 20%;
    left: 50%;
}

.damage-marker[data-region="right-front-fender"] {
    top: 25%;
    left: 30%;
}

.damage-marker[data-region="left-front-fender"] {
    top: 25%;
    left: 70%;
}

.damage-marker[data-region="hood"] {
    top: 30%;
    left: 50%;
}

.damage-marker[data-region="roof"] {
    top: 50%;
    left: 50%;
}

.damage-marker[data-region="right-front-door"] {
    top: 45%;
    left: 25%;
}

.damage-marker[data-region="left-front-door"] {
    top: 45%;
    left: 75%;
}

.damage-marker[data-region="right-rear-door"] {
    top: 60%;
    left: 25%;
}

.damage-marker[data-region="left-rear-door"] {
    top: 60%;
    left: 75%;
}

.damage-marker[data-region="trunk"] {
    top: 70%;
    left: 50%;
}

.damage-marker[data-region="rear-bumper"] {
    top: 80%;
    left: 50%;
}

.damage-marker[data-region="right-rear-fender"] {
    top: 75%;
    left: 30%;
}

.damage-marker[data-region="left-rear-fender"] {
    top: 75%;
    left: 70%;
}

/* Damage Summary Styles */
#damage-list .badge {
    margin-left: 5px;
}

.damage-label-none {
    background-color: #6c757d;
}

.damage-label-scratch {
    background-color: #ffc107;
    color: #343a40;
}

.damage-label-dent {
    background-color: #fd7e14;
}

.damage-label-replaced {
    background-color: #0d6efd;
}

/* Custom tooltip style */
.tooltip .tooltip-inner {
    background-color: var(--secondary-color, #c5a47e);
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.tooltip .tooltip-arrow {
    border-top-color: var(--secondary-color, #c5a47e);
}

/* Part Detail Modal Styles */
#part-detail-modal .modal-dialog {
    max-width: 500px;
}

#part-detail-modal .modal-header {
    background: linear-gradient(135deg, var(--secondary-color, #c5a47e), var(--accent-color, #e4a838));
    color: white;
    border-bottom: none;
}

#part-detail-modal .btn-close {
    filter: brightness(0) invert(1);
}

#part-detail-modal .modal-body {
    padding: 1.5rem;
}

#part-detail-modal .part-image-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#part-detail-modal .part-image {
    max-height: 200px;
    transition: all 0.3s ease;
}

#part-detail-modal .part-image:hover {
    transform: scale(1.05);
}

#part-detail-modal .part-details h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-color, #333);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

#part-detail-modal .damage-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#part-detail-modal .form-check {
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

#part-detail-modal .form-check:hover {
    background-color: #f8f9fa;
    border-color: #eee;
}

#part-detail-modal .form-check-input:checked + .form-check-label {
    font-weight: 500;
}

#part-detail-modal .form-check-input:checked ~ .form-check {
    background-color: #f0f7ff;
    border-color: #d0e0ff;
}

#part-detail-modal .badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.65rem;
    border-radius: 4px;
}

#part-detail-modal small.text-muted {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    color: #6c757d;
}

#part-detail-modal .modal-footer {
    border-top: none;
    padding-top: 0;
}

#part-detail-modal .save-damage {
    background: linear-gradient(135deg, var(--secondary-color, #c5a47e), var(--accent-color, #e4a838));
    border: none;
    transition: all 0.3s ease;
}

#part-detail-modal .save-damage:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}