/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #FF8A00;
    --primary-dark: #E67A00;
    --secondary-color: #121212;
    --text-dark: #1A1A1A;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-gray: #B3B3B3;
    --white: #FFFFFF;
    --bg-dark: #121212;
    --gradient-dark: linear-gradient(145deg, #121212, #1a1a1a);
    --gradient-orange: linear-gradient(145deg, #FF8A00, #E67A00);
    --transition: all 0.3s ease;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

/* Header ve Navigasyon */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 138, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 90px;
    transition: all 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 248, 0.9));
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.1);
}

.logo-image {
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
}

.logo-text {
    display: none;
}

.logo-top {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.logo-bottom {
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
}

.nav-links a:hover {
    color: #ff6b00;
    background: linear-gradient(145deg, rgba(255, 138, 0, 0.08), rgba(255, 138, 0, 0.12));
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #ff6b00;
    background: linear-gradient(145deg, rgba(255, 138, 0, 0.12), rgba(255, 138, 0, 0.15));
    font-weight: 600;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    margin-top: -70px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 138, 0, 0.2), rgba(18, 18, 18, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideDown 1s ease;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF8A00;
    -webkit-text-fill-color: #FF8A00;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number i {
    font-size: 2.5rem;
    color: #FF8A00;
}

.stat-text {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--gradient-dark);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.95), var(--bg-dark));
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 138, 0, 0.1);
    color: var(--text-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Popular Cars Section */
.popular-cars {
    padding: 6rem 2rem;
    background: var(--gradient-dark);
    position: relative;
}

.popular-cars::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--secondary-color));
}

.section-title {
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.car-slider {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 1400px;
    margin: 0 auto;
}

.car-slider::-webkit-scrollbar {
    height: 8px;
}

.car-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.car-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.car-card {
    flex: 0 0 auto;
    width: 350px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    scroll-snap-align: start;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 138, 0, 0.1);
    position: relative;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 138, 0, 0.2);
    border-color: var(--primary-color);
}

.car-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--white);
    padding: 1.5rem;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.08);
}

.car-info {
    padding: 2rem;
    background: var(--white);
    position: relative;
    text-align: center;
}

.car-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.car-info p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.car-info .btn-outline {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.car-info .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--gradient-dark);
    position: relative;
    color: var(--white);
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-dark));
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-content .btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    border-radius: 50px;
    background: var(--gradient-orange);
    border: none;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.2);
}

.cta-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.3);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Mobil Responsive Tasarım */
@media screen and (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    /* Mobile menu styles */
    .mobile-menu-btn {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 9999999 !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
        padding: 8px !important;
        border-radius: 5px !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
    }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 70% !important;
        height: 100vh !important;
        background-color: #fff !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        transition: 0.5s !important;
        z-index: 9999 !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links li {
        margin: 15px 0 !important;
    }
    
    header.header, header, .wrap-header {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .nav {
        justify-content: flex-end !important;
    }
    
    .araclarimiz-page .mobile-menu-btn {
        background-color: rgba(255, 255, 255, 0.9) !important;
    }

    /* Hero Section Responsive Styles */
    .hero {
        height: auto !important;
        min-height: 100vh !important;
        margin-top: 0 !important;
        padding: 90px 15px 30px !important;
        background-attachment: scroll !important;
        display: flex !important;
        align-items: flex-start !important;
        padding-top: 120px !important;
    }

    .hero::before {
        background: radial-gradient(circle at center, rgba(255, 138, 0, 0.2), rgba(18, 18, 18, 0.5)) !important;
    }

    .hero-content {
        padding: 1rem !important;
        max-width: 100% !important;
        margin-top: 20px !important;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
        opacity: 1 !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        align-items: center !important;
        max-width: 350px !important;
        margin: 0 auto 2rem !important;
    }

    .btn {
        width: 100% !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        display: block !important;
        text-align: center !important;
    }

    .hero-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 1.5rem !important;
        border-radius: 10px !important;
        max-width: 350px !important;
        margin: 2rem auto 0 !important;
    }

    .stat-item {
        width: 100% !important;
        padding: 0.5rem !important;
    }

    .stat-number {
        font-size: 2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .stat-text {
        font-size: 0.9rem !important;
    }

    .stat-number i {
        font-size: 2rem !important;
    }

    /* Features Section Responsive Styles */
    .feature-card {
        min-width: 100% !important;
    }

    .car-slider {
        gap: 1rem;
    }

    .car-card {
        width: 280px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* İletişim sayfası için ikon düzeltmeleri */
    .info-item {
        align-items: flex-start !important;
    }

    .info-item i {
        min-width: 40px !important;
        height: 40px !important;
        margin-top: 5px !important;
        font-size: 1rem !important;
    }

    .info-item i.fa-map-marker-alt {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding-left: 1px !important;
        padding-top: 1px !important;
    }

    .info-content {
        flex: 1 !important;
    }

    .info-content h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem !important;
    }

    .info-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* İletişim sayfası genel düzenlemeler */
    .contact-container {
        padding: 0 20px !important;
    }

    .contact-info, 
    .contact-form {
        padding: 1.5rem !important;
    }

    .map-container {
        padding: 0 20px !important;
    }

    .map-container iframe {
        height: 300px !important;
    }

    .form-group label {
        font-size: 0.9rem !important;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem !important;
        font-size: 0.9rem !important;
    }

    .submit-btn {
        width: 100% !important;
        padding: 0.8rem !important;
    }
}

/* Tablet Responsive Tasarım */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-stats {
        gap: 30px;
    }

    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 30px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

header.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 138, 0, 0.1);
    height: 90px;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Biz Kimiz Sayfası Stilleri */
.about-section {
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient-dark);
}

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

.about-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.about-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 138, 0, 0.1);
}

.about-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-item p {
    color: var(--text-light);
}

.about-mission {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 138, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-mission:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-mission h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--white);
}

.about-mission p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 4rem 1rem 2rem;
    }
    
    .about-content h1 {
        font-size: 2rem;
    }
    
    .about-item {
        min-width: 100%;
    }
    
    .about-mission {
        padding: 2rem;
    }
}

/* Footer Styles */
footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 2rem 1rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    margin: 0;
    transition: all 0.3s ease;
    padding: 0;
}

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

.social-links i {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Araçlarımız Sayfası Stilleri */
.vehicles-hero {
    height: 40vh;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 70px;
}

.vehicles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 138, 0, 0.2), rgba(18, 18, 18, 0.2));
    z-index: 1;
}

.vehicles-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vehicles-content {
    padding: 4rem 2rem;
    background: var(--secondary-color);
}

.wrap-header {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.nav-menu > li > a {
    color: #333;
    font-weight: 500;
}

.nav-menu > li > a:hover {
    color: #ff6b00;
}

.nav-menu > li.active > a {
    color: #ff6b00;
}

/* Burger menüyü kaldır */
.burger {
    display: none !important;
}

/* Add some space below the fixed header */
main {
    margin-top: 90px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 10000;
    position: fixed;
    right: 20px;
    top: 20px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
} 