 /* Reset ve Temel Stiller */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Segoe UI', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #fafafa;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        /* Renk Değişkenleri - Logo Renkleri */
:root {
    --primary: #1a1a1a;
    --primary-dark: #111111;
    --secondary: #d4af37;  /* Daha zengin altın rengi */
    --secondary-light: #f4d03f;
    --accent: #2c3e50;
    --light: #f8f9fa;
    --grey: #e9ecef;
    --dark-grey: #495057;
    --section-spacing: 50px; /* Section arası boşluk değişkeni */
    --card-radius: 20px; /* Card kenar yuvarlaklığı */
        }
        
        /* Header Stili - Modern ve Şık */
        header {
            background-color: var(--primary);
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            height: 80px;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            height: 70px;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
        }
        
        .logo {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 101;
        }
        
        .logo img {
            height: 40px;
            transition: all 0.3s ease;
        }
        
        header.scrolled .logo img {
            height: 35px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 101;
            position: relative;
            width: 30px;
            height: 30px;
        }
        
        .mobile-menu-btn span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 2px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .mobile-menu-btn span:nth-child(1) {
            top: 6px;
        }
        
        .mobile-menu-btn span:nth-child(2), .mobile-menu-btn span:nth-child(3) {
            top: 14px;
        }
        
        .mobile-menu-btn span:nth-child(4) {
            top: 22px;
        }
        
        .mobile-menu-btn.open span:nth-child(1) {
            top: 14px;
            width: 0%;
            left: 50%;
        }
        
        .mobile-menu-btn.open span:nth-child(2) {
            transform: rotate(45deg);
        }
        
        .mobile-menu-btn.open span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        .mobile-menu-btn.open span:nth-child(4) {
            top: 14px;
            width: 0%;
            left: 50%;
        }
        
        nav {
            height: 100%;
        }
        
        nav ul {
            display: flex;
            height: 100%;
        }
        
        nav ul li {
            margin-left: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: white;
            display: flex;
            align-items: center;
            height: 100%;
            position: relative;
            letter-spacing: 0.5px;
        }
        
        nav ul li:after {
            content: '';
            position: absolute;
            bottom: 25px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        nav ul li:hover:after {
            width: 100%;
        }
        
        nav ul li:hover {
            color: var(--secondary);
        }
        
        .header-buttons {
            display: flex;
            align-items: center;
        }
        
        .btn {
            padding: 10px 24px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            box-shadow: 0 4px 15px rgba(201, 168, 92, 0.3);
        }
        
        .btn-primary:hover {
            background-color: #b69649;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 92, 0.4);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--secondary);
            color: var(--secondary);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        /* Mobile Menu - Yeniden Tasarlanmış */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100vh;
            background-color: var(--primary);
            padding: 90px 30px 40px;
            box-shadow: -5px 0 30px rgba(0,0,0,0.3);
            z-index: 100;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-nav-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
        }
        
        .mobile-nav-header img {
            height: 30px;
        }
        
        .mobile-nav ul {
            display: flex;
            flex-direction: column;
            margin-bottom: 25px;
        }
        
        .mobile-nav ul li {
            margin-bottom: 5px;
        }
        
        .mobile-nav ul li a {
            display: block;
            padding: 12px 15px;
            color: white;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav ul li a:hover, 
        .mobile-nav ul li a:active {
            background-color: rgba(255,255,255,0.1);
            color: var(--secondary);
        }
        
        .mobile-nav .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }
        
        .mobile-nav .mobile-buttons .btn {
            padding: 12px 20px;
            font-size: 0.95rem;
            border-radius: 8px;
            width: 100%;
        }
        
        .mobile-contact {
            background-color: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 12px;
            margin-top: 15px;
        }
        
        .mobile-contact h4 {
            font-size: 1.05rem;
            margin-bottom: 15px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mobile-contact h4:before {
            content: '✉';
            font-size: 0.9rem;
        }
        
        .mobile-contact p {
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mobile-contact p:before {
            content: '•';
            color: var(--secondary);
        }
        
        .mobile-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .mobile-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: white;
            font-size: 0.9rem;
        }
        
        .mobile-social a:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550355291-bbee04a92027?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 5%;
            position: relative;
        }
        
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }
        
        .hero-text {
            flex: 1;
            max-width: 550px;
        }
        
        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Booking Form */
        .booking-form {
            flex: 1;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            max-width: 400px;
            color: var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .booking-form h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .booking-form h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--dark-grey);
        }
        
        .form-group select, .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--grey);
            border-radius: 4px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 15px;
        }
        
        .form-group select:focus, .form-group input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 2px rgba(201, 168, 92, 0.2);
            background-color: white;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .booking-form .btn-primary {
            width: 100%;
            padding: 14px;
            margin-top: 10px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Fleet Section - Kaydırılabilir - Section Arası Boşluk Ayarlandı */
        .fleet-section {
            padding: var(--section-spacing) 0;
            background-color: var(--light);
            overflow: hidden;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 5%;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-header p {
            color: var(--dark-grey);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .carousel-container {
            position: relative;
            padding: 0 5%;
            margin-bottom: 20px;
        }
        
        .carousel-wrapper {
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            scroll-behavior: smooth;
            padding: 10px 0;
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        }
        
        .carousel-wrapper::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .cars-container {
            display: flex;
            gap: 25px;
            padding: 5px;
            /* Ortalama kaldırıldı - justify-content: center; */
        }
        
        .car-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            width: 300px;
            min-width: 300px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }
        
        .car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .car-badge {
            position: absolute;
            top: 15px;
            left: -35px;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 5px 30px;
            transform: rotate(-45deg);
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 1;
            width: 120px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .car-image {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .car-image:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        }
        
        .car-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .car-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .car-specs {
            font-size: 0.9rem;
            color: var(--dark-grey);
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .car-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: var(--dark-grey);
            background-color: #f5f5f5;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        .feature i {
            margin-right: 5px;
            color: var(--secondary);
        }
        
        .car-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: flex-end;
        }
        
        .car-price span {
            font-size: 0.9rem;
            font-weight: normal;
            margin-left: 5px;
            color: var(--dark-grey);
        }
        
        .car-card .btn {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .carousel-nav:hover {
            background-color: var(--secondary);
        }
        
        .carousel-nav.prev {
            left: 20px;
        }
        
        .carousel-nav.next {
            right: 20px;
        }
        
        /* About Section - Yeni Tasarım - Section Arası Boşluk Ayarlandı */
        .about-section {
            padding: var(--section-spacing) 0;
            overflow: hidden;
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            position: relative;
        }
        
        .about-slider {
            position: relative;
            overflow: hidden;
        }
        
        .about-slide {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-image-container {
            flex: 1;
            max-width: 500px;
            position: relative;
        }
        
        .about-image-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary);
            z-index: 1;
        }
        
        .about-image {
            position: relative;
            z-index: 2;
            width: 100%;
            display: block;
        }
        
        .about-content {
            flex: 1;
            padding-right: 20px;
        }
        
        .about-title {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .about-subtitle {
            font-size: 1.1rem;
            color: var(--dark-grey);
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .about-description {
            font-size: 1rem;
            color: var(--dark-grey);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .about-pagination {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .about-pagination-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .about-pagination-dot.active {
            background-color: var(--secondary);
        }
        
        .about-pagination-text {
            font-size: 0.9rem;
            color: var(--dark-grey);
            margin-left: 5px;
        }
        
        .btn-gold {
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(201, 168, 92, 0.3);
        }
        
        .btn-gold:hover {
            background-color: #b69649;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 92, 0.4);
        }
        
        /* Horizontal Search Form - Section Arası Boşluk Ayarlandı - Card Şeklinde Oval Kenarlı */
        .horizontal-search-section {
            padding: 0 5%;
            margin-top: var(--section-spacing);
        }
        
        .horizontal-search {
            background-color: var(--primary);
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: var(--card-radius);
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .horizontal-search:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }
        
        .horizontal-search-container {
            position: relative;
            z-index: 1;
        }
        
        .horizontal-search-form {
            display: flex;
            align-items: flex-end;
            gap: 15px;
        }
        
        .horizontal-search-form .form-group {
            margin-bottom: 0;
            flex: 1;
        }
        
        .horizontal-search-form .form-group label {
            color: white;
            margin-bottom: 8px;
        }
        
        .horizontal-search-form .btn-primary {
            height: 48px;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0;
            white-space: nowrap;
            border-radius: 24px;
        }
        
        .horizontal-search-form select, .horizontal-search-form input {
            border-radius: 24px;
        }
        
        /* Call to Action - Section Arası Boşluk Ayarlandı - Card Şeklinde Oval Kenarlı */
        .cta-section-wrapper {
            padding: 0 5%;
            margin-top: var(--section-spacing);
        }
        
        .cta-section {
            padding: 60px 40px;
            background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            border-radius: var(--card-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            pointer-events: none;
        }
        
        /* Safari için background-attachment: fixed sorunu çözümü */
        @supports (-webkit-overflow-scrolling: touch) {
            .cta-section {
                background-attachment: scroll;
            }
        }
        
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-container h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-container p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .cta-buttons .btn {
            border-radius: 24px;
            padding: 12px 30px;
        }
        
        /* Footer - Section Arası Boşluk Ayarlandı */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 5% 30px;
            margin-top: var(--section-spacing);
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li:hover {
            opacity: 1;
            padding-left: 5px;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .hero-text {
                text-align: center;
                margin-bottom: 0;
            }
            
            .booking-form {
                width: 100%;
                max-width: 450px;
            }
            
            .about-slide {
                flex-direction: column;
                gap: 30px;
            }
            
            .about-image-container {
                max-width: 100%;
                width: 100%;
            }
            
            .about-content {
                padding-right: 0;
                text-align: center;
            }
            
            .about-pagination {
                justify-content: center;
            }
            
            .horizontal-search-form {
                flex-wrap: wrap;
            }
            
            .horizontal-search-form .form-group {
                min-width: calc(50% - 10px);
            }
            
            .horizontal-search-form .btn-primary {
                margin-top: 15px;
                width: 100%;
            }
            
            .horizontal-search {
                padding: 30px 20px;
            }
            
            .cta-section {
                padding: 50px 25px;
            }
            
            /* Mobil cihazlarda section arası boşlukları azalt */
            :root {
                --section-spacing: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .header-buttons {
                display: none;
            }
            
            .hero {
                padding: 40px 15px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-header {
                padding: 0 15px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .carousel-container {
                padding: 0;
            }
            
            .carousel-nav {
                display: none;
            }
            
            .car-card {
                min-width: 260px;
                width: 260px;
            }
            
            /* Mobil görünümde kartları sola dayalı tut */
            .cars-container {
                padding: 5px 15px;
                /* Ortalama kaldırıldı - justify-content: center; */
            }
            
            /* Mobil görünümde araç özelliklerini daha küçük göster */
            .car-features {
                gap: 6px;
            }
            
            .feature {
                padding: 3px 6px;
                font-size: 0.75rem;
            }
            
            .about-container {
                padding: 0 15px;
            }
            
            .about-title {
                font-size: 1.6rem;
            }
            
            .horizontal-search-form .form-group {
                min-width: 100%;
            }
            
            .horizontal-search {
                padding: 25px 15px;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
            
            .cta-container h2 {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 250px;
            }
            
            .footer-column {
                min-width: 100%;
            }
            
            /* Daha küçük ekranlarda section arası boşlukları daha da azalt */
            :root {
                --section-spacing: 30px;
                --card-radius: 15px; /* Mobil için daha küçük radius */
            }
        }
        
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .booking-form {
                padding: 20px 15px;
            }
            
            .booking-form h3 {
                font-size: 1.3rem;
            }
            
            .car-card {
                min-width: 240px;
                width: 240px;
            }
            
            .car-image {
                height: 150px;
            }
            
            .car-name {
                font-size: 1.1rem;
            }
            
            .car-specs {
                font-size: 0.8rem;
            }
            
            .car-price {
                font-size: 1.3rem;
            }
            
            /* Mobil görünümde araç özelliklerini daha da küçült */
            .car-features {
                gap: 4px;
                margin-bottom: 10px;
            }
            
            .feature {
                padding: 2px 5px;
                font-size: 0.7rem;
                border-radius: 3px;
            }
            
            .feature i {
                margin-right: 3px;
                font-size: 0.7rem;
            }
            
            /* Araç detayları kısmını daha kompakt hale getir */
            .car-details {
                padding: 15px;
            }
            
            .car-name {
                margin-bottom: 5px;
            }
            
            .car-specs {
                margin-bottom: 10px;
            }
            
            .car-price {
                margin-bottom: 10px;
            }
            
            .about-title {
                font-size: 1.4rem;
            }
            
            .about-subtitle {
                font-size: 1rem;
            }
            
            .cta-container h2 {
                font-size: 1.5rem;
            }
            
            .cta-container p {
                font-size: 0.9rem;
            }
            
            /* En küçük ekranlarda section arası boşlukları minimuma indir */
            :root {
                --section-spacing: 25px;
            }
        }
        
        /* Çok küçük ekranlar için ek optimizasyonlar (320px civarı) */
        @media (max-width: 360px) {
            .car-features {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 3px;
            }
            
            .feature {
                padding: 2px 3px;
                font-size: 0.65rem;
                white-space: nowrap;
                justify-content: center;
            }
            
            .feature i {
                margin-right: 2px;
                font-size: 0.65rem;
            }
            
            .car-card {
                min-width: 220px;
                width: 220px;
            }
            
            .car-details {
                padding: 12px;
            }
            
            .car-name {
                font-size: 1rem;
            }
        }
        
        /* Touch Cihazlar için Özel Optimizasyonlar */
        @media (hover: none) {
            .car-card:hover {
                transform: none;
                box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            }
            
            nav ul li:hover:after {
                width: 0;
            }
            
            .footer-column ul li:hover {
                padding-left: 0;
            }
        }
        
        /* Mobil kaydırma sorunu için çözüm */
        .carousel-wrapper {
            touch-action: pan-x;
        }
        
        /* Kaydırma sırasında sayfa kaydırmayı engelleme */
        .carousel-wrapper.dragging {
            pointer-events: none;
        }