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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Resim yükleme animasyonu */
img {
    transition: opacity 0.3s ease;
}

img[src*="data:image/svg+xml"] {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Resim yüklenirken loading efekti */
img:not([src*="data:image/svg+xml"]) {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Stiller */
.top-bar {
    background: #1a237e; /* Koyu lacivert */
    color: white;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

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

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 120px;
    width: auto;
}
@media (max-width: 768px) {
    .main-nav .container { flex-wrap: wrap; gap: 16px; }
    .logo img { height: 72px; }
    .nav-links { justify-content: flex-start; flex-wrap: wrap; gap: 12px; }
    .nav-links li a { padding: 8px 12px; font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .logo img { height: 56px; }
    .nav-links { gap: 8px; }
    .nav-links li a { padding: 6px 10px; font-size: 0.9rem; }
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #d32f2f; /* Kırmızı */
}

.nav-links li a.active {
    color: #1a237e;
    border-bottom: 2px solid #1a237e;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}
@media (max-width: 768px) { .hero-slider { height: 360px; } }
@media (max-width: 480px) { .hero-slider { height: 260px; } }

.slide {
    position: relative;
    height: 100%;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Siyah overlay - 0.5 opaklık */
    z-index: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2; /* Overlay'in üzerinde görünmesi için */
}

.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #1a237e; /* Koyu lacivert */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #d32f2f; /* Kırmızı */
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

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

.product-categories h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a237e;
    font-size: 2em;
}

.product-slider {
    position: relative;
    padding: 0 40px;
    margin: 0 auto;
}

.product-slider-container {
    overflow: hidden;
    margin: 0 auto;
}

.product-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.category-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px 20px 5px;
    text-align: center;
    color: #1a237e;
    font-size: 1.1em;
    margin: 0;
}

.category-card p {
    padding: 0 20px 15px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #1a237e;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.slider-nav:hover {
    background: #d32f2f;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .category-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .category-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }
    
    .product-slider {
        padding: 0 30px;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 60px 0;
    background: white;
}

.about-section h2 {
    text-align: center;
    color: #1a237e; /* Koyu lacivert */
    margin-bottom: 20px;
}

.about-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #1a237e; /* Koyu lacivert */
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    padding: 40px 0;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

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

/* Ürünler Sayfası Stilleri */
.products-page {
    padding: 40px 0;
}

.products-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5em;
}

.product-category {
    margin-bottom: 60px;
}

.product-category h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    font-size: 1.8em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-card h3 {
    padding: 15px 20px;
    text-align: center;
    color: #1a237e;
    font-size: 1.1em;
    margin: 0;
    transition: color 0.3s;
}

.product-card:hover h3 {
    color: #d32f2f;
}

.product-dealer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(26, 35, 126, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
    z-index: 1;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .products-page h1 {
        font-size: 2em;
    }

    .product-category h2 {
        font-size: 1.5em;
    }
}

/* Haberler Sayfası */
.news-page {
    padding: 50px 0;
}

.news-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a237e;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-body {
    padding: 16px 18px 18px;
}

.news-title {
    font-size: 1.1rem;
    color: #1a237e;
    margin-bottom: 8px;
}

.news-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 44px;
}

.news-date {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #777;
}

.news-detail h1 {
    color: #1a237e;
    margin-bottom: 10px;
}

.news-detail .news-meta {
    color: #777;
    margin-bottom: 16px;
}

.news-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin: 16px 0 20px;
}

.news-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.news-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 600px) {
    .news-cover { height: 160px; }
    .news-gallery img { height: 150px; }
}

/* Editör Sayfası & Formlar */
.editor-page {
    padding: 40px 0 60px;
}

.editor-page h1 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 20px;
    margin-bottom: 24px;
}

form label {
    display: block;
    font-weight: 600;
    margin: 12px 0 6px;
    color: #333;
}

input[type="text"],
input[type="password"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 3px rgba(26,35,126,0.08);
}

button,
.btn {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

button:active,
.btn:active {
    transform: translateY(1px);
}

button {
    background: #1a237e;
    color: #fff;
}

button:hover { background: #16206d; }

.secondary { background: #f1f3f5; color: #1a237e; }
.secondary:hover { background: #e9ecef; }

.danger { background: #d32f2f; color: #fff; }
.danger:hover { background: #b71c1c; }

.error {
    color: #d32f2f;
    margin-top: 8px;
    font-size: 0.9rem;
}

.editor-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.admin-news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.admin-news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}

.admin-news-item .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-news-item .title { color: #1a237e; }
.admin-news-item .date { color: #777; font-size: 0.9rem; }

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 180px;
    }
}
@media (max-width: 480px) {
    input[type="text"], input[type="password"], input[type="file"], textarea, select { font-size: 16px; }
    button, .btn { width: 100%; }
}

/* Kategori Slider Bölümü */
.category-slider-section {
    margin-bottom: 50px;
}

.category-slider-section h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.5em;
    text-align: center;
}

.category-slider-section .product-slider {
    position: relative;
    padding: 0 40px;
    margin: 0 auto;
}

.category-slider-section .product-slider-container {
    overflow: hidden;
    margin: 0 auto;
}

.category-slider-section .product-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.category-slider-section .category-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-slider-section .category-card:hover {
    transform: translateY(-5px);
}

.category-slider-section .category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-slider-section .category-card h3 {
    padding: 15px 20px 5px;
    text-align: center;
    color: #1a237e;
    font-size: 1.1em;
    margin: 0;
}

.category-slider-section .category-card p {
    padding: 0 20px 15px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

.category-slider-section .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #1a237e;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.category-slider-section .slider-nav:hover {
    background: #d32f2f;
}

.category-slider-section .prev-btn {
    left: 0;
}

.category-slider-section .next-btn {
    right: 0;
}

/* Responsive Kategori Slider */
@media (max-width: 1024px) {
    .category-slider-section .category-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .category-slider-section .category-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
    }
    
    .category-slider-section .product-slider {
        padding: 0 30px;
    }
}

/* Bayiler Slider Stilleri */
.dealers-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.dealers-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a237e; /* Koyu lacivert */
}

.dealers-slider {
    position: relative;
    padding: 0 40px;
    margin: 0 auto;
}

.dealers-slider-container {
    overflow: hidden;
    margin: 0 auto;
}

.dealers-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.dealer-card {
    flex: 0 0 calc(16.666% - 25px);
    min-width: calc(16.666% - 25px);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.dealer-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 100px;
}

/* Responsive Bayiler Slider */
@media (max-width: 1200px) {
    .dealer-card {
        flex: 0 0 calc(20% - 24px);
        min-width: calc(20% - 24px);
    }
}

@media (max-width: 992px) {
    .dealer-card {
        flex: 0 0 calc(25% - 22.5px);
        min-width: calc(25% - 22.5px);
    }
}

@media (max-width: 768px) {
    .dealer-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
    
    .dealers-slider {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .dealer-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

/* Ürün Detay Sayfası Stilleri */
.product-detail {
    padding: 50px 0;
}

.product-detail .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    position: relative;
}

.thumbnail-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    position: relative;
}

.thumbnail-gallery img::after {
    content: attr(data-number);
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.thumbnail-gallery img:hover {
    border-color: #1a237e;
}

.thumbnail-gallery img.active {
    border-color: #d32f2f;
}

.product-info {
    padding: 20px;
}

.product-info h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.product-description,
.product-specifications,
.product-contact {
    margin-bottom: 30px;
}

.product-description h2,
.product-specifications h2,
.product-contact h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #444;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.product-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.product-specifications table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.product-specifications th,
.product-specifications td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.product-specifications th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.product-contact {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.product-contact .btn {
    display: inline-block;
    padding: 12px 24px;
    margin-right: 10px;
    margin-top: 10px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.product-contact .btn:hover {
    background-color: #45a049;
}

.product-contact .btn.whatsapp {
    background-color: #25D366;
}

.product-contact .btn.whatsapp:hover {
    background-color: #128C7E;
}

/* WhatsApp butonlarını tamamen kaldır */
.product-contact .btn.whatsapp { display: none !important; }
a[href*="wa.me"],
a[href*="api.whatsapp.com"],
button.whatsapp { display: none !important; }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-detail .container {
        grid-template-columns: 1fr;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-info h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-contact .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Footer Stilleri */
footer {
    background-color: #1a237e;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section i {
    margin-right: 10px;
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .haberler-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .haber-content h2 {
        font-size: 1.2em;
    }
}

/* Yükleme Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #1a237e;
}

.loading-spinner i {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Hata Mesajı */
.error-message {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
}

.error-message i {
    font-size: 2em;
    margin-bottom: 10px;
}

.error-message p {
    font-size: 1.1em;
}

/* Kurumsal Sayfası Stilleri */
.corporate-content {
    padding: 50px 0;
}

.about-section,
.history-section,
.quality-section {
    margin-bottom: 50px;
}

.about-section h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.about-section h2,
.history-section h2,
.quality-section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin: 30px 0 20px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.about-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #34495e;
}

.about-content ul li:before {
    content: "•";
    color: #27ae60;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Timeline Stilleri */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #27ae60;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item .year {
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin: 0 20px;
    min-width: 100px;
    text-align: center;
}

.timeline-item .content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 40%;
}

.timeline-item .content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-item .content p {
    color: #34495e;
    line-height: 1.6;
}

/* Kalite Politikası Stilleri */
.quality-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.quality-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.quality-content ul {
    list-style-type: none;
    padding-left: 0;
}

.quality-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.quality-content ul li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 30px;
    }

    .timeline-item .year {
        margin-bottom: 15px;
    }

    .timeline-item .content {
        width: 100%;
    }

    .about-section h1 {
        font-size: 2em;
    }

    .about-section h2,
    .history-section h2,
    .quality-section h2 {
        font-size: 1.5em;
    }
}

/* Firma Filtresi Stilleri */
.dealer-filter {
    margin-bottom: 40px;
    text-align: center;
}

.dealer-filter h2 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.dealer-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.dealer-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #1a237e;
    color: #1a237e;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dealer-btn:hover {
    background: #1a237e;
    color: white;
}

.dealer-btn.active {
    background: #1a237e;
    color: white;
}

/* Responsive Firma Filtresi */
@media (max-width: 768px) {
    .dealer-buttons {
        gap: 10px;
    }

    .dealer-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
} 
/* Hero Slider için ek stiller */
.hero-slider {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

.slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slide-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.slide-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 2em;
    }
    
    .slide-content p {
        font-size: 1em;
    }
}

/* Slider butonları için ek stiller */
.slider-nav {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav i {
    font-size: 20px;
}

/* Product slider için ek stiller */
.product-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.product-slider-container {
    overflow: hidden;
}

.product-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
}

.category-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
}

/* Dealers slider için ek stiller */
.dealers-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.dealers-slider-container {
    overflow: hidden;
}

.dealers-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px;
}

.dealer-card {
    flex: 0 0 calc(16.666% - 25px);
    min-width: 150px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.dealer-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slider-nav {
        padding: 10px;
        font-size: 14px;
        width: 40px;
        height: 40px;
    }
    
    .product-slider,
    .dealers-slider {
        padding: 0 30px;
    }
    
    .category-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .dealer-card {
        flex: 0 0 calc(50% - 15px);
    }
}