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

:root {
    --primary-color: #ff3b15;
    --secondary-color: #FFD100;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 59, 21, 0.98), rgba(255, 45, 0, 0.98));
    box-shadow: 0 2px 15px rgba(255, 59, 21, 0.15);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.05);
}

.logo:hover img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    gap: 0.7rem;
    letter-spacing: 0.3px;
}

.nav-link i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-1px);
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link.active i {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-btn:hover span {
    background: var(--secondary-color);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .header-container {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        height: 42px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, rgba(255, 59, 21, 0.98), rgba(255, 45, 0, 0.98));
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 2px 15px rgba(255, 59, 21, 0.15);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1.2rem 1.5rem;
        border-radius: 0;
        justify-content: flex-start;
    }

    .nav-link i {
        width: 24px;
        text-align: center;
        margin-right: 0.5rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0.5rem 1rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-list {
        top: 60px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Main Content Margin Fix */
main {
    margin-top: 70px;
}

/* Slider Styles */
.slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: #ff2b00;
    transform: translateY(-3px);
    color: #fff;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .slider {
        min-height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slider-arrows {
        padding: 0 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-btn {
        padding: 0.8rem 1.5rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

.model-categories {
    margin-bottom: 3rem;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-btn {
    background: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.category-btn i {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.category-btn span {
    position: relative;
    z-index: 1;
}

.category-btn:hover,
.category-btn.active {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 59, 0, 0.2);
}

.category-btn:hover::before,
.category-btn.active::before {
    opacity: 1;
}

.category-btn:hover i,
.category-btn.active i {
    transform: scale(1.1);
}

.model-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.model-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.model-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #f8f9fa;
}

.model-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.model-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--secondary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
}

.model-card:hover .model-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.model-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.model-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.spec-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.model-card:hover .spec-item i {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.spec-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #fff;
    color: var(--primary-color);
}

.btn-discover i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.model-content {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.model-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.model-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .category-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .overlay-content {
        padding: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.5rem;
    }

    .model-specs {
        gap: 1.5rem;
        padding: 0.8rem;
    }

    .spec-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 60px 0;
    }
    
    .category-btn {
        width: calc(50% - 0.6rem);
        justify-content: center;
    }

    .model-content {
        padding: 1.5rem;
    }

    .model-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .category-btn {
        width: 100%;
    }
    
    .model-specs {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-discover {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth Scroll Styles */
[data-scroll-container] {
    height: auto;
    overflow: visible;
}

/* Remove Locomotive Scroll Styles */
.has-scroll-smooth {
    position: static;
}

/* Fix for AOS animations */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.aos-animate {
    pointer-events: all;
}

/* Fix for GSAP animations */
.gsap-marker-scroller-start,
.gsap-marker-scroller-end {
    display: none;
}

/* After Sales Section */
.after-sales {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.after-sales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 59, 21, 0.03), rgba(255, 209, 0, 0.03));
    z-index: 0;
}

.after-sales-image {
    position: relative;
    padding: 2rem;
}

.after-sales-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.after-sales-image:hover img {
    transform: scale(1.02);
}

.after-sales-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.after-sales-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
}

.after-sales-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.after-sales-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: rotate(-10deg);
}

.service-info {
    flex: 1;
}

.service-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-link:hover {
    color: #ff2b00;
}

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

@media (max-width: 992px) {
    .after-sales {
        padding: 60px 0;
    }

    .after-sales-content h2 {
        font-size: 2rem;
    }

    .after-sales-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .after-sales-content h2 {
        font-size: 1.8rem;
    }

    .service-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .model-categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .model-btn {
        width: calc(50% - 1rem);
        justify-content: center;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.02;
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-widget {
    margin-bottom: 30px;
    position: relative;
}

.footer-logo {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 90%;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff3b15 0%, #ff5e3a 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 2;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link:hover::before {
    opacity: 1;
}

.widget-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #ff3b15 0%, #ff5e3a 100%);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #ff3b15;
}

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

.footer-links a:hover i {
    transform: translateX(3px);
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-info li:hover {
    color: #fff;
}

.contact-info li i {
    color: #ff3b15;
    font-size: 1.1rem;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.contact-info li:hover i {
    transform: scale(1.1);
}

.contact-info li span {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff3b15 0%, #ff5e3a 100%);
    transition: width 0.3s ease;
}

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

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

@media (max-width: 992px) {
    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-widget {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
        gap: 20px;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }

    .widget-title {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .footer-widget {
        text-align: center;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: linear-gradient(45deg, rgba(255, 59, 21, 0.03), rgba(255, 209, 0, 0.03));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contact-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin: 2rem auto 0;
    max-width: 800px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.contact-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 59, 21, 0.03), rgba(255, 209, 0, 0.03));
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .info-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
    color: #000;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-info-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.form-content {
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    height: 55px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 59, 21, 0.1);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 1rem;
}

.contact-form button:hover {
    background: #ff2b00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 59, 21, 0.3);
}

.contact-form button i {
    transition: transform 0.4s ease;
}

.contact-form button:hover i {
    transform: translateX(5px) rotate(15deg);
}

.map-wrapper {
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Working Hours Section */
.working-hours-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.hours-content {
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 20px;
    height: 100%;
}

.hours-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.hours-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.hours-item .day {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.support-content {
    padding: 3rem;
    background: var(--primary-color);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.support-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.support-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.support-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
    position: relative;
}

.support-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.support-phone:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    color: #fff;
}

.support-phone i {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.support-phone:hover i {
    transform: rotate(-15deg);
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero .hero-title {
        font-size: 2.8rem;
    }

    .map-wrapper {
        margin-top: 2rem;
        min-height: 400px;
    }

    .support-content {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.2rem;
    }

    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .form-content {
        padding: 2rem;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .hours-content,
    .support-content {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-title {
        font-size: 2rem;
    }

    .contact-hero .hero-subtitle {
        font-size: 1rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-info-card h3 {
        font-size: 1.3rem;
    }

    .support-phone {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Dealer Page Styles */
.dealer-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: url('/images/iletisimarka.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.dealer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    display: block;
}

/* Arama Kartı */
.dealer-search {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.search-title p {
    color: #666;
    margin: 0;
}

.search-form {
    padding: 1rem 0;
}

.location-btn {
    height: 100%;
    min-height: 55px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: #ff2b00;
    transform: translateY(-2px);
}

/* Bayi Listesi */
.dealer-map-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.dealer-sidebar {
    height: 700px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
}

.filter-tab {
    flex: 1;
    background: transparent;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    transition: all 0.3s ease;
}

.filter-tab i {
    font-size: 1.2rem;
}

.filter-tab .count {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.filter-tab.active .count {
    background: rgba(255,255,255,0.2);
}

.dealer-list {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.dealer-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.dealer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.dealer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dealer-badge.service {
    background: var(--secondary-color);
    color: #000;
}

.dealer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.dealer-rating {
    margin-bottom: 1rem;
}

.dealer-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.dealer-rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.dealer-address {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.dealer-address i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.dealer-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature i {
    color: var(--primary-color);
}

.dealer-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.contact-btn {
    padding: 0.8rem;
    text-align: center;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8f9fa;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.contact-btn.call:hover {
    background: #28a745;
}

.contact-btn.route:hover {
    background: #17a2b8;
}

/* Harita */
.map-container {
    height: 700px;
    position: relative;
    background: #f8f9fa;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-loading {
    text-align: center;
}

.map-loading p {
    margin-top: 1rem;
    color: #666;
}

/* Destek Bölümü */
.dealer-support {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.support-content-wrapper {
    padding: 3rem;
    position: relative;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 59, 0, 0.2);
}

.support-badge i {
    font-size: 1.1rem;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.support-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.support-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.feature-link:hover {
    color: #ff2b00;
}

.chat-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chat-btn:hover {
    background: #ff2b00;
    transform: translateY(-2px);
}

.support-cta {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.cta-text h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.cta-text p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.support-phone {
    background: var(--secondary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.support-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 214, 0, 0.2);
    color: #000;
}

.support-image-wrapper {
    position: relative;
}

.support-image-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.support-stats {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

.support-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    flex: 1;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 992px) {
    .dealer-support {
        padding: 60px 0;
    }

    .support-title {
        font-size: 2rem;
    }

    .support-content-wrapper {
        padding: 2rem;
    }

    .support-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
    }

    .support-stats {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .support-features {
        grid-template-columns: 1fr;
    }

    .support-stats {
        grid-template-columns: 1fr;
    }

    .support-badges {
        flex-direction: column;
    }

    .feature-item {
        padding: 1rem;
    }
}

/* Bildirim Stilleri */
.location-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    animation: slideIn 0.3s ease forwards;
}

.location-notification.success i {
    color: #28a745;
}

.location-notification.error i {
    color: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .dealer-sidebar {
        height: 500px;
    }

    .map-container {
        height: 500px;
    }

    .filter-tabs {
        flex-wrap: wrap;
    }

    .filter-tab {
        flex: calc(50% - 0.5rem);
    }
}

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: calc(50% - 1rem);
    }

    .search-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .dealer-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-item {
        flex: 100%;
    }

    .filter-tab {
        flex: 100%;
    }

    .dealer-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

/* Ürünler Sayfası Stilleri */
.products-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: url('/images/iletisimarka.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.products-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.products-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.product-categories {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.product-categories .category-tabs {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.product-categories .category-tab {
    border: none;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.product-categories .category-tab i {
    font-size: 1.2rem;
}

.product-categories .category-tab.active {
    background: var(--primary-color);
    color: #fff;
}

.products-grid {
    padding: 80px 0;
}

.products-grid .product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.products-grid .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.products-grid .product-image {
    position: relative;
    overflow: hidden;
}

.products-grid .product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.products-grid .product-card:hover .product-image img {
    transform: scale(1.1);
}

.products-grid .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.products-grid .product-card:hover .product-overlay {
    opacity: 1;
}

.products-grid .btn-details {
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.products-grid .product-card:hover .btn-details {
    transform: translateY(0);
}

.products-grid .btn-details:hover {
    background: #ff2b00;
    color: #fff;
}

.products-grid .product-content {
    padding: 1.5rem;
}

.products-grid .product-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.products-grid .product-content p {
    color: #666;
    margin-bottom: 1rem;
}

.products-grid .product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.products-grid .product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.products-grid .product-features i {
    color: var(--primary-color);
}

.product-features-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.product-features-section .features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
}

.product-features-section .features-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.product-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-features-section .feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-features-section .feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-features-section .feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-features-section .feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.product-features-section .features-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .product-categories .category-tabs {
        flex-wrap: wrap;
    }

    .product-categories .category-tab {
        flex: calc(50% - 0.5rem);
        justify-content: center;
    }

    .product-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-features-section .features-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 300px;
        padding: 80px 0 60px;
    }

    .products-hero .hero-title {
        font-size: 2.2rem;
    }

    .product-categories .category-tab {
        flex: 100%;
    }

    .products-grid .product-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .products-hero .hero-title {
        font-size: 1.8rem;
    }

    .products-grid .product-content {
        padding: 1rem;
    }

    .product-features-section .features-content h2 {
        font-size: 2rem;
    }
}

/* Ana Sayfa Stilleri */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ff2b00;
    transform: translateY(-3px);
    color: #fff;
}

/* Ürün Kategorileri */
.product-categories {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.category-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.category-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.category-content p {
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.category-btn:hover {
    color: #ff2b00;
}

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

/* Özellikler Bölümü */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.feature-desc {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .category-content {
        padding: 1.5rem;
    }

    .category-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .product-categories {
        padding: 60px 0;
    }

    .features {
        padding: 60px 0;
    }
}

/* Ürün Kartı Yeni Stiller */
.product-model-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-model-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.product-model-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #f8f9fa;
}

.product-model-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-model-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--secondary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
}

.product-model-card:hover .product-model-overlay {
    opacity: 1;
}

.product-overlay-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
}

.product-model-card:hover .product-overlay-content {
    transform: translateY(0);
}

.product-overlay-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-overlay-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.product-model-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.product-spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-spec-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-model-card:hover .product-spec-item i {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.product-spec-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.product-btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #fff;
    color: var(--primary-color);
}

.product-btn-discover i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.product-model-content {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.product-model-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-model-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .product-categories .category-tabs {
        flex-wrap: wrap;
    }

    .product-categories .category-tab {
        flex: calc(50% - 0.5rem);
        justify-content: center;
    }

    .product-features-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-features-section .features-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 300px;
        padding: 80px 0 60px;
    }

    .products-hero .hero-title {
        font-size: 2.2rem;
    }

    .product-categories .category-tab {
        flex: 100%;
    }

    .products-grid .product-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .products-hero .hero-title {
        font-size: 1.8rem;
    }

    .products-grid .product-content {
        padding: 1rem;
    }

    .product-features-section .features-content h2 {
        font-size: 2rem;
    }
}

/* Models Hero Section */
.models-hero {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: url('/images/iletisimarka.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #fff;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.models-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.models-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
}

.models-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Model Categories */
.model-categories {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.category-tabs {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-tab:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-tab.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 59, 0, 0.2);
}

.tab-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.category-tab span {
    font-size: 1rem;
    font-weight: 600;
}

/* Models Grid */
.models-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.model-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.model-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #f8f9fa;
}

.model-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.model-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
}

.model-badge span {
    background: var(--secondary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.model-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
    padding: 2rem;
}

.model-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.spec-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.model-card:hover .spec-item i {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.spec-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.model-details {
    text-align: center;
    color: #fff;
}

.model-details h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.model-details p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #fff;
    color: var(--primary-color);
}

.btn-discover i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.model-info {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.model-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.model-info p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.features-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.features-image {
    position: relative;
    padding: 2rem;
}

.features-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.features-image:hover img {
    transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .models-hero .hero-title {
        font-size: 2.8rem;
    }

    .category-tab {
        min-width: 120px;
        padding: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .models-hero {
        min-height: 300px;
        padding: 80px 0 60px;
    }

    .models-hero .hero-title {
        font-size: 2.2rem;
    }

    .category-tabs {
        padding: 1rem;
    }

    .category-tab {
        min-width: calc(50% - 0.5rem);
        max-width: none;
    }

    .model-specs {
        flex-direction: column;
        gap: 1rem;
    }

    .model-details h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .models-hero .hero-title {
        font-size: 1.8rem;
    }

    .category-tab {
        min-width: 100%;
    }

    .model-info {
        padding: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }
}

/* Ürünler Sayfası Yeni Stiller */

/* Hero Section */
.product-hero {
    position: relative;
    padding: 80px 0;
    margin-top: 70px;
    background-size: cover;
    background-position: center 30%;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Kategori Seçimi */
.category-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.category-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.category-item {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.category-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-item.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 59, 0, 0.2);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.model-count {
    background: rgba(0,0,0,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.category-item.active .model-count {
    background: rgba(255,255,255,0.2);
}

/* Ürün Listesi */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    background: #f8f9fa;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(4px);
}

.overlay-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
    width: 100%;
}

.product-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.spec-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-card:hover .spec-item i {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.spec-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: #fff;
    color: var(--primary-color);
}

.btn-explore i {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.product-content {
    padding: 1.5rem;
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-info {
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.model-code {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.model-code i {
    margin-right: 0.5rem;
    color: #ff4a17;
}

.product-price {
    text-align: center;
    margin: 1.5rem 0;
}

.price-amount {
    background: linear-gradient(45deg, #ff4a17, #ff6b3d);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 74, 23, 0.2);
}

.tech-specs {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.spec-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.spec-icon i {
    font-size: 1.5rem;
    color: #ff4a17;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.spec-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.feature-icon i {
    font-size: 1.2rem;
    color: #ff4a17;
}

.feature-text {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
}

.product-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.action-btn i {
    font-size: 1.5rem;
}

.action-btn span {
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-catalog {
    background: #2c3e50;
    color: white;
}

.btn-video {
    background: #e74c3c;
    color: white;
}

.btn-details {
    background: #ff4a17;
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.product-specs {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-item i {
    font-size: 1.2rem;
    color: #ff4a17;
    margin-bottom: 0.5rem;
}

.spec-item span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-catalog, .btn-video {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-catalog {
    background: #2c3e50;
}

.btn-video {
    background: #e74c3c;
}

.btn-catalog:hover, .btn-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-catalog i, .btn-video i {
    margin-right: 0.5rem;
}

.hover-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hover-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-catalog,
.btn-video {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-catalog {
    background: var(--primary-color);
    color: #fff;
}

.btn-video {
    background: #f8f9fa;
    color: #1a1a1a;
}

.btn-catalog:hover,
.btn-video:hover {
    transform: translateY(-3px);
}

.btn-catalog:hover {
    background: #ff2b00;
    color: #fff;
}

.btn-video:hover {
    background: #e9ecef;
    color: var(--primary-color);
}

/* Teknoloji Bölümü */
.tech-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-badge i {
    font-size: 1.1rem;
}

.tech-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.tech-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tech-feature:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.tech-image {
    position: relative;
    padding: 2rem;
}

.main-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.tech-stats {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    right: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
}

.stat-info {
    flex: 1;
}

.stat-info .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-info .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .category-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .tech-stats {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    .product-hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .product-specs {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-feature {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: calc(50% - 1rem);
    }

    .category-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .tech-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-item {
        flex: 100%;
    }

    .product-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .tech-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }
}

/* Neden KIOTI? Bölümü */
.why-kioti {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.why-content {
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(255, 59, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 59, 0, 0.3);
}

.section-badge i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.why-feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 10px 25px rgba(255, 214, 0, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.feature-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #ff2b00;
    gap: 0.8rem;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

.why-media-wrapper {
    position: relative;
}

.video-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    position: relative;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-info .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-info .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.achievement-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.badge-item {
    background: #fff;
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: block;
}

.badge-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.3rem;
}

.badge-item small {
    font-size: 0.8rem;
    color: #666;
    display: block;
}

@media (max-width: 1200px) {
    .why-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .why-kioti {
        padding: 80px 0;
    }

    .why-content h2 {
        font-size: 2rem;
    }

    .why-feature {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

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

@media (max-width: 768px) {
    .why-content h2 {
        font-size: 1.8rem;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }

    .stats-cards {
        grid-template-columns: 1fr;
    }

    .achievement-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .why-kioti {
        padding: 60px 0;
    }

    .section-badge {
        width: 100%;
        justify-content: center;
    }
}

/* İstatistik Bölümü Stilleri */
.stats-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.stat-item {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-bg {
    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%);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-bg {
    background: linear-gradient(135deg, rgba(255,99,71,0.05) 0%, rgba(255,99,71,0) 100%);
}

.stat-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6347;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: #ff4500;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    display: inline-block;
}

.plus {
    font-size: 1.5rem;
    margin-left: 2px;
    color: #ff6347;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #636e72;
    margin: 0;
}

@media (max-width: 1200px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }
}

/* KIOTI Tanıtım Bölümü */
.kioti-intro {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.intro-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.logo-wrapper {
    margin-bottom: 2rem;
}

.intro-logo {
    max-width: 200px;
    height: auto;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-feature i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.intro-feature span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.intro-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-outline,
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary-outline {
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary-outline {
    background: #fff;
    color: #333;
    border: 2px solid #eee;
}

.btn-primary-outline:hover {
    transform: translateY(-3px);
    background: #ff2b00;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 59, 0, 0.2);
}

.btn-secondary-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.intro-image-wrapper {
    position: relative;
    padding: 2rem;
}

.intro-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.intro-image:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .kioti-intro {
        padding: 60px 0;
    }

    .intro-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .experience-badge {
        bottom: 2rem;
        right: 2rem;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .intro-buttons {
        flex-direction: column;
    }

    .btn-primary-outline,
    .btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }

    .experience-badge {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .intro-logo {
        max-width: 150px;
    }

    .intro-feature span {
        font-size: 1rem;
    }
}

/* Kampanyalar Sayfası */
.campaign-hero {
    padding: 100px 0;
    margin-top: 70px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/iletisimarka.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
}

.campaign-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.campaign-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.featured-campaign {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-campaign-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.campaign-image {
    position: relative;
    overflow: hidden;
}

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

.featured-campaign-card:hover .campaign-image img {
    transform: scale(1.05);
}

.campaign-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 59, 0, 0.3);
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
}

.badge-desc {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.campaign-content {
    padding: 2.5rem;
}

.campaign-tag {
    display: inline-block;
    background: #ffe4dc;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.campaign-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.campaign-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.campaign-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.campaign-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.campaign-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.campaign-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #ff2b00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 59, 0, 0.2);
}

.campaign-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.campaign-validity i {
    color: var(--primary-color);
}

.campaign-grid {
    padding: 80px 0;
}

.campaign-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.discount-badge.special {
    background: var(--primary-color);
    color: #fff;
}

.discount-badge span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.discount-badge small {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.campaign-body {
    padding: 2rem;
}

.campaign-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.campaign-body p {
    color: #666;
    margin-bottom: 1.5rem;
}

.campaign-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.btn-details:hover {
    gap: 1rem;
    color: #ff2b00;
}

.finance-options {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffe4dc;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-badge i {
    font-size: 1.2rem;
}

.finance-options h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.finance-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.finance-icon {
    width: 80px;
    height: 80px;
    background: #ffe4dc;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.finance-card:hover .finance-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.finance-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.finance-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.finance-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.finance-link:hover {
    gap: 1rem;
    color: #ff2b00;
}

.contact-cta {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(45deg, var(--primary-color), #ff6b3d);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
}

.cta-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-us:hover {
    background: #ffe4dc;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .campaign-hero .hero-title {
        font-size: 2.5rem;
    }

    .campaign-content {
        padding: 2rem;
    }

    .campaign-content h2 {
        font-size: 1.8rem;
    }

    .campaign-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-wrapper {
        padding: 2rem;
        text-align: center;
    }

    .cta-wrapper .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .campaign-hero {
        padding: 60px 0;
    }

    .campaign-hero .hero-title {
        font-size: 2rem;
    }

    .campaign-hero .hero-subtitle {
        font-size: 1rem;
    }

    .featured-campaign {
        padding: 40px 0;
    }

    .campaign-badge {
        padding: 0.8rem;
    }

    .badge-value {
        font-size: 2rem;
    }

    .finance-options h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .campaign-content {
        padding: 1.5rem;
    }

    .campaign-features li {
        font-size: 1rem;
    }

    .btn-contact,
    .btn-contact-us {
        width: 100%;
        justify-content: center;
    }

    .campaign-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Fiyat Listesi Sayfası */
.price-hero {
    position: relative;
    padding: 120px 0;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

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

.price-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* İstatistikler */
.price-stats {
    margin-top: -50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.stats-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: #e31837;
    background: rgba(227, 24, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.stat-text {
    color: #666;
    font-size: 0.9rem;
}

/* Kategori Tabları */
.price-categories {
    margin-bottom: 50px;
}

.price-categories .category-tabs {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    border: none;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.category-tab i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-tab small {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

.category-tab:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.category-tab.active {
    background: #e31837;
    color: #fff;
}

.category-tab.active small {
    color: rgba(255, 255, 255, 0.8);
}

/* Fiyat Tablosu */
.price-list {
    padding: 50px 0;
}

.price-category {
    display: none;
    margin-bottom: 3rem;
}

.price-category.active {
    display: block;
}

.category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-badge {
    width: 60px;
    height: 60px;
    background: #e31837;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-badge i {
    font-size: 1.8rem;
    color: #fff;
}

.category-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-header p {
    color: #666;
    margin: 0;
}

.price-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-table thead {
    background: #f8f9fa;
}

.price-table th {
    padding: 1.5rem;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.price-table td {
    padding: 1.5rem;
    vertical-align: middle;
}

.model-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.model-image {
    position: relative;
}

.model-image img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
}

.model-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e31837;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.model-details h6 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.model-details span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.2rem;
}

.model-features {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.model-features span {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.model-features i {
    color: #e31837;
}

.spec-value {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spec-value strong {
    color: #333;
    font-size: 1.1rem;
}

.spec-value span {
    color: #666;
    font-size: 0.85rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-info .price {
    font-weight: 700;
    color: #e31837;
    font-size: 1.2rem;
}

.price-info .vat {
    font-size: 0.8rem;
    color: #666;
}

.price-info .installment {
    font-size: 0.85rem;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-price-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: #e31837;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-price-detail:hover {
    background: #c41230;
    transform: translateY(-2px);
    color: #fff;
}

.btn-compare {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-compare:hover {
    background: #e9ecef;
    color: #333;
}

/* Fiyat Notu */
.price-note {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.note-icon {
    flex-shrink: 0;
}

.note-icon i {
    color: #e31837;
    font-size: 2rem;
}

.note-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.note-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.note-text li {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.note-text li:before {
    content: "•";
    color: #e31837;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Finans Seçenekleri */
.finance-options {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(227, 24, 55, 0.1);
    color: #e31837;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.finance-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.finance-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.finance-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #e31837;
    background: rgba(227, 24, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
    color: #333;
}

.feature-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.finance-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.finance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.finance-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.finance-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e31837;
    line-height: 1;
}

/* İletişim CTA */
.price-cta {
    padding: 80px 0;
}

.cta-wrapper {
    background: linear-gradient(45deg, #e31837, #ff6b3d);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.cta-features i {
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-contact-us {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    color: #e31837;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-us:hover {
    background: #ffe4dc;
    color: #e31837;
    transform: translateY(-3px);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .price-hero .hero-title {
        font-size: 2.8rem;
    }

    .finance-content {
        margin-bottom: 3rem;
    }

    .finance-image img {
        height: 300px;
    }

    .cta-wrapper {
        text-align: center;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .price-hero {
        padding: 80px 0;
    }

    .price-hero .hero-title {
        font-size: 2.2rem;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-tab {
        min-width: calc(50% - 0.5rem);
    }

    .model-info {
        flex-direction: column;
        text-align: center;
    }

    .model-features {
        justify-content: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-compare {
        width: 100%;
    }

    .note-content {
        flex-direction: column;
        text-align: center;
    }

    .note-icon {
        margin-bottom: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .price-hero .hero-title {
        font-size: 1.8rem;
    }

    .category-tab {
        min-width: 100%;
    }

    .price-table th,
    .price-table td {
        padding: 1rem;
    }

    .model-image img {
        width: 80px;
        height: 60px;
    }

    .cta-wrapper {
        padding: 2rem;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }
}

/* Ortak Hero Section Stili */
.campaign-hero,
.price-hero,
.dealer-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center 30%;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.campaign-hero .container,
.price-hero .container,
.dealer-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

@media (max-width: 768px) {
    .campaign-hero,
    .price-hero,
    .dealer-hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

/* Fiyat Listesi - Model Info Styling */
.model-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 200px;
}

.model-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.model-image {
    flex: 0 0 280px;
    position: relative;
}

.model-image .image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.model-info:hover .model-image img {
    transform: scale(1.05);
}

.model-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 74, 23, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.model-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-header {
    margin-bottom: 1rem;
}

.model-details h6 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.model-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.model-code, .model-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

.model-code i, .model-category i {
    color: #ff4a17;
    font-size: 1rem;
}

.model-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .model-image {
        flex: 0 0 220px;
    }
    
    .model-image .image-wrapper {
        height: 150px;
    }
}

@media (max-width: 992px) {
    .model-info {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 1.5rem;
    }

    .model-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .model-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .model-description {
        text-align: center;
        margin: 1rem auto 0;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .model-image .image-wrapper {
        height: 200px;
    }

    .model-details h6 {
        font-size: 1.2rem;
    }

    .model-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .model-code, .model-category {
        width: 100%;
        justify-content: center;
    }
}

/* Fiyat Listesi - Ürün Kartı Yeni Tasarım */
.product-card-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.product-card-wrapper:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-series-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 74, 23, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.product-info-content {
    color: #fff;
    margin-top: auto;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-model, .product-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.product-model i, .product-category i {
    color: #ff4a17;
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .product-card-wrapper {
        height: 240px;
    }

    .product-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .product-card-wrapper {
        height: 200px;
    }

    .product-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-model, .product-category {
        font-size: 0.8rem;
    }

    .product-description {
        display: none;
    }
}

/* Hero Stats Yeni Tasarım */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff4a17, #ff6b3d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 74, 23, 0.3);
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .stat-box {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Ürünler Sayfası - Hero Section */
.product-hero {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center 30%;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.product-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

/* Kategori Seçimi */
.price-categories {
    margin: -50px auto 50px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.category-tabs {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    flex: 1;
    min-width: 150px;
    padding: 1.2rem 1rem;
    border: none;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.category-tab i {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.category-tab span {
    font-weight: 600;
    color: #2c3e50;
}

.category-tab small {
    font-size: 0.8rem;
    color: #6c757d;
}

.category-tab.active {
    background: #ff4a17;
    color: #fff;
}

.category-tab.active i,
.category-tab.active span,
.category-tab.active small {
    color: #fff;
}

.category-tab:hover:not(.active) {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .product-hero {
        padding: 120px 0 80px;
    }

    .product-hero .hero-title {
        font-size: 2.5rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-tab {
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .product-hero {
        padding: 100px 0 60px;
    }

    .product-hero .hero-title {
        font-size: 2rem;
    }

    .product-hero .hero-subtitle {
        font-size: 1rem;
    }

    .category-tab {
        min-width: 100%;
    }
}

/* Bayi ve Servisler Sayfası */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: #ff4a17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4a17;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    opacity: 0.9;
}

.search-section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
}

.search-container select {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-container button {
    padding: 0.75rem 2rem;
    background: #ff4a17;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-container button:hover {
    background: #e63e0c;
}

.dealers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    gap: 2rem;
}

.dealer-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dealer-info {
    padding: 1.5rem;
}

.dealer-header {
    margin-bottom: 1rem;
}

.dealer-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.dealer-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-badge {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.dealer-details {
    color: #666;
}

.dealer-details p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dealer-details i {
    color: #ff4a17;
    width: 20px;
}

.dealer-map {
    height: 250px;
    overflow: hidden;
}

.dealer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
    }

    .search-container {
        flex-direction: column;
    }

    .dealer-card {
        margin: 0 1rem;
    }
}

/* Bayi ve Servisler Sayfası - Yeni Tasarım */
.dealer-search-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.search-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    height: 100%;
    max-height: 800px;
    overflow-y: auto;
}

.search-header {
    margin-bottom: 2rem;
}

.search-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.search-header p {
    color: #6c757d;
    margin: 0;
}

.service-type-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.btn-service {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border: none;
    border-radius: 12px;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-service.active {
    background: #ff4a17;
    color: #fff;
}

.btn-service:hover:not(.active) {
    background: #e9ecef;
    transform: translateY(-2px);
}

.btn-location {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-location:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.dealers-list {
    margin-top: 2rem;
}

.dealer-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

.dealer-card.highlighted {
    border: 2px solid #ff4a17;
    background: #fff9f7;
}

.dealer-card-header {
    margin-bottom: 1rem;
}

.dealer-card-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.dealer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #495057;
}

.dealer-card-body {
    margin-bottom: 1rem;
}

.dealer-card-body p {
    margin: 0.5rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dealer-card-body i {
    color: #ff4a17;
    width: 16px;
}

.dealer-card-footer {
    display: flex;
    gap: 1rem;
}

.btn-directions,
.btn-details {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-directions {
    background: #ff4a17;
    color: #fff;
}

.btn-details {
    background: #f8f9fa;
    color: #2c3e50;
}

.btn-directions:hover,
.btn-details:hover {
    transform: translateY(-2px);
}

.map-container {
    height: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#dealersMap {
    width: 100%;
    height: 100%;
}

.map-popup {
    padding: 1rem;
}

.map-popup h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.popup-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.popup-badge {
    padding: 0.2rem 0.6rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #495057;
}

.map-popup p {
    margin: 0.3rem 0;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-popup i {
    color: #ff4a17;
    width: 16px;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .search-panel {
        margin-bottom: 2rem;
        max-height: 400px;
    }

    .map-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .service-type-buttons {
        flex-direction: column;
    }

    .btn-service {
        width: 100%;
    }

    .dealer-card-footer {
        flex-direction: column;
    }

    .map-container {
        height: 400px;
    }
}

/* New Model Section Styles */
.new-model-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.new-model-section:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 90, 0, 0.05);
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 1;
}

.new-model-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 90, 0, 0.05);
    border-radius: 50%;
    transform: translate(-200px, 200px);
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-accent {
    color: #ff5a00;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.new-model-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.model-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #ff5a00;
    color: #fff;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 5px 15px rgba(255, 90, 0, 0.3);
    z-index: 2;
}

.new-model-content {
    padding: 20px;
}

.model-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.model-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.model-features {
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 1.2rem;
    color: #ff5a00;
    margin-right: 10px;
}

.feature-item span {
    color: #555;
    font-weight: 500;
}

.model-cta {
    display: flex;
    gap: 15px;
}

.model-cta .btn {
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.model-cta .btn-primary {
    background-color: #ff5a00;
    border-color: #ff5a00;
}

.model-cta .btn-primary:hover {
    background-color: #e05000;
    border-color: #e05000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 90, 0, 0.3);
}

.model-cta .btn-outline-dark {
    border-color: #333;
    color: #333;
}

.model-cta .btn-outline-dark:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .new-model-image {
        margin-bottom: 30px;
    }
    
    .model-cta {
        flex-direction: column;
    }
    
    .feature-row {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Mobil görünüm için header-content boşluğu düzeltmeleri */
@media (max-width: 991px) {
    main {
        margin-top: 70px;
    }
    
    .slider,
    .contact-hero,
    .dealer-hero,
    .products-hero,
    .models-hero,
    .campaign-hero,
    .price-hero,
    .product-hero,
    .hero {
        margin-top: 70px;
    }
}

@media (max-width: 576px) {
    main {
        margin-top: 60px;
    }
    
    .slider,
    .contact-hero,
    .dealer-hero,
    .products-hero,
    .models-hero,
    .campaign-hero,
    .price-hero,
    .product-hero,
    .hero {
        margin-top: 60px;
    }
}

/* Decorative Background Images */
.decorative-bg {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.grass-bg {
    bottom: 5%;
    left: 5%;
    width: 150px;
    height: 150px; /* Yükseklik eklendi */
    background: url('../images/grass-2.png') no-repeat center;
    background-size: contain;
}

.stick-bg {
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px; /* Yükseklik eklendi */
    background: url('../images/stick.png') no-repeat center;
    background-size: contain;
    transform: rotate(45deg);
}

.roots-bg {
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: auto;
    background: url('/images/roots-grass.png') no-repeat;
    background-size: contain;
}

.dirt-bg {
    top: 25%;
    left: 20%;
    width: 80px;
    height: auto;
    background: url('/images/dirt-3.png') no-repeat;
    background-size: contain;
}

.dirt-stock-bg {
    top: 40%;
    right: 25%;
    width: 100px;
    height: auto;
    background: url('/images/Dirt-stock.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
}

/* Add decorative elements to sections */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 150px auto;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.section:nth-child(odd)::before {
    background-image: url('/images/grass-2.png');
    background-position: bottom left;
}

.section:nth-child(even)::before {
    background-image: url('/images/roots-grass.png');
    background-position: top right;
}

/* Decorative Background Container */
.decorative-backgrounds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Decorative Background Images */
.decorative-bg {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.grass-bg {
    bottom: 5%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: url('../images/grass-2.png') no-repeat center;
    background-size: contain;
}

.stick-bg {
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: url('../images/stick.png') no-repeat center;
    background-size: contain;
    transform: rotate(45deg);
}

.roots-bg {
    bottom: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: url('../images/roots-grass.png') no-repeat center;
    background-size: contain;
}

.dirt-bg {
    top: 25%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: url('../images/dirt-3.png') no-repeat center;
    background-size: contain;
}

.dirt-stock-bg {
    top: 40%;
    right: 25%;
    width: 100px;
    height: 100px;
    background: url('../images/Dirt-stock.png') no-repeat center;
    background-size: contain;
    opacity: 0.05;
}

/* Section backgrounds */
.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 150px auto;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.section:nth-child(odd)::before {
    background-image: url('../images/grass-2.png');
    background-position: bottom left;
}

.section:nth-child(even)::before {
    background-image: url('../images/roots-grass.png');
    background-position: top right;
}

/* Add animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.decorative-bg {
    animation: float 6s ease-in-out infinite;
}

.grass-bg { animation-delay: 0s; }
.stick-bg { animation-delay: 1s; }
.roots-bg { animation-delay: 2s; }
.dirt-bg { animation-delay: 3s; }
.dirt-stock-bg { animation-delay: 4s; }