/* Genel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    position:sticky;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.header-container {
    width: 100%;
    max-width: 1800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

/* Header scroll durumu */
.header.scrolled {
    background-color: rgb(255, 255, 255); /* Açık gri arka plan */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.322); */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Logo */
.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 400px;
    height: auto;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

/* Menü */
.nav-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 100px;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    /*font-weight: bold; */
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-list li a:hover {
    color: #6d6d6d;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6d6d6d;
    transition: width 0.3s;
}

.nav-list li a:hover::after {
    width: 100%;
}

/* Dropdown Menü */
.submenu, .submenu-nested {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.nav-list .dropdown {
    position: relative;
}

.nav-list .submenu {
    display: none;
    position: absolute;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 20px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    border-radius: 5px;
    z-index: 1001;
}

.nav-list .submenu .submenu-content {
    display: flex;
    padding: 0;
}

.nav-list .submenu .submenu-column {
    width: 50%;
    padding: 0 15px;
}

/* Removed the border between columns */
.nav-list .submenu .submenu-column:first-child {
    border-right: none;
}

.nav-list .submenu li {
    padding: 8px 0;
    position: relative;
}

.nav-list .submenu li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: block;
    transition: color 0.2s;
    padding: 5px 0;
}

.nav-list .submenu li a:hover {
    color: #0056b3;
}

.nav-list .submenu li a::after {
    display: none;
}

/* Always visible submenus */
.submenu-nested {
    display: block !important; /* Changed from none to block */
    position: static;
    box-shadow: none;
    padding: 5px 0 0 15px !important;
    width: auto;
}

.nested-dropdown > a {
    font-weight: bold;
    color: #0056b3 !important;
    margin: 10px 0 5px 0;
    display: block;
}

.nested-dropdown > a i {
    margin-left: 5px;
    transition: transform 0.2s;
}

/* Removed the hover effect for submenu visibility since they're always visible now */
.nested-dropdown:hover > a i {
    transform: none;
}

/* Hover ile açılma */
.nav-list .dropdown:hover .submenu {
    display: block;
}

/* Arama Kutusu */
.search-box {
    width: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-box input:focus {
    border-color:  #0056b3;
    box-shadow: 0 0 0 2px rgba(104, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.search-icon:hover {
    color: #0056b3;
}

/* Arama sonuçları için */
.search-dropdown {
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.search-dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.search-dropdown-item:hover {
    background-color: #f8f8f8;
}

.product-info {
    flex: 1;
}

.product-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
    display: block;
}

.product-meta {
    display: flex;
    gap: 10px;
    font-size: 0.9em;
}

.product-code {
    color: #666;
}

.product-category {
    color: #0056b3;
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px;
}

.product-arrow {
    color: #999;
    font-size: 14px;
    margin-left: 10px;
}

.search-no-results {
    padding: 15px;
    color: #666;
    text-align: center;
    font-size: 14px;
}

.search-more-results {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #666;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Hata mesajı */
.error-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; bottom: 0; }
    to { opacity: 1; bottom: 20px; }
}

/* Hamburger Menü */
.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
    margin-left: 15px;
}

.hamburger-menu:hover {
    color: #0056b3;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #333;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 1002;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .close-menu {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-menu .close-menu:hover {
    color: #ccc;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.mobile-nav-list li {
    margin: 10px 0;
}

.mobile-nav-list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    padding: 12px 15px;
    display: block;
    border-radius: 5px;
}

.mobile-nav-list a:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-submenu,
.mobile-submenu-nested {
    display: none;
    padding-left: 20px;
}

.mobile-submenu-nested {
    font-size: 0.9em;
}

.mobile-submenu-nested a {
    font-size: 0.95em;
    padding: 10px 15px;
}

/* Aktif menü stilleri */
.mobile-dropdown.active > a,
.mobile-nested.active > a {
    background-color: rgba(255,255,255,0.1);
}

/* Ana başlık aktif olduğunda alt menüleri aç */
.mobile-dropdown.active .mobile-submenu {
    display: block;
}

/* İç içe menüler için aktif olduğunda alt menüleri aç */
.mobile-nested.active .mobile-submenu-nested {
    display: block;
}

/* Mobil Menüdeki Dropdown */
.mobile-nav-list .mobile-dropdown .mobile-submenu {
    display: none;
    padding-left: 20px;
}

.mobile-nav-list .mobile-dropdown.active .mobile-submenu {
    display: block;
}

.mobile-nav-list .mobile-submenu .mobile-submenu-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Büyük Div */
.main-container {
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 100px;
    box-sizing: border-box;
    flex: 1; /* İçeriği genişletir, footer'ı en alta iter */
}

/* Başlık */
.title {
    margin-bottom: 20px;
}

.title h1 {
    font-size: 60px;
    color: #46494d;
    text-align: center;
    margin-right: 700px;
}

.title h2 {
    font-size: 20px;
    color: #08525f;
    text-align: center;
    margin-right: 800px;
}

/* Ana İçerik Alanı */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

/* Resim Bölümü */
.image-section {
    flex: 1;
    min-width: 300px;
    max-width: 50%; /* Resim bölümü genişliği */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: auto;
    aspect-ratio: 16/9;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.1s ease; /* Daha hızlı ve basit bir geçiş */
}

.product-image.zoomed {
    transform: scale(2); /* Resmi 2 kat büyüt */
    cursor: grab;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #000000;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail.active {
    border: 2px solid  #0056b3;
}

.text-section {
    flex: 1;
    min-width: 300px;
    max-width: 45%; /* Yazı bölümü genişliği */
    padding: 20px;
    box-sizing: border-box;
}


/* Lightbox Stili */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.text-section {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    margin-top: 40px;
    text-align: left;
    padding: 0 20px;
}

.text-section h5 {
    font-size: 30px;
    color: #46494d;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 20px;
    color: #555;
    line-height: 1.5;
    text-align: justify;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
        width: auto;
        height: auto;
    }
    
    .close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .prev,
    .next {
        padding: 10px;
        font-size: 18px;
    }
    
    .text-section {
        margin-top: 20px;
    }
    
    .text-section h5 {
        font-size: 24px;
    }
    
    .text-section p {
        font-size: 16px;
    }
}

/* talep butonu */
.request-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    padding: 0 20px;
}

.request-button-container button {
    background-color: #ffffff;
    color: #333;
    padding: 14px 28px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.1), -4px -4px 12px rgba(255,255,255,0.6);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 320px;
    width: 100%;
}

.request-button-container button:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
    box-shadow: 6px 6px 20px rgba(0,0,0,0.15), -6px -6px 20px rgba(255,255,255,0.8);
    border-color: #d0d0d0;
}



/* Talep Formu Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content form label {
    margin-top: 10px;
}

.popup-content form input, .popup-content form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup-content form input[type="tel"] {
    /* Telefon numarası alanı için özel stil */
    font-family: Arial, sans-serif;
}

.popup-content form button {
    margin-top: 20px;
    background-color:  #4e4e4e;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.popup-content form button:hover {
    background-color: #000000;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .main-container {
        width: 100%;
        padding: 10px;
    }

    .content {
        flex-direction: column;
        align-items: center; /* İçeriği dikeyde ortala */
        gap: 10px;
    }

    .image-container {
        width: 100%;
        height: 200px; /* Mobilde resim yüksekliği sabitlendi */
        aspect-ratio: unset; /* Mobilde aspect-ratio kaldırıldı */
    }

    .product-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .thumbnails {
        flex-wrap: wrap;
        gap: 5px;
        margin-top: 15px;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
    }

    .text-section {
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
        padding: 0 10px; /* Kenar boşlukları ekle */
    }

    .text-section h5 {
        font-size: 24px; /* Mobilde başlık boyutu küçültüldü */
        text-align: center; /* Başlık ortalandı */
    }

    .text-section p {
        font-size: 16px; /* Mobilde yazı boyutu küçültüldü */
        text-align: justify; /* Yazılar iki yana yaslandı */
    }

    .title h1 {
        font-size: 40px;
        text-align: center; /* Başlık ortalandı */
        margin-right: 0;
        margin-top: 20px;
        display: flex;
        justify-content: center; /* Yatayda ortala */
        align-items: center; /* Dikeyde ortala */
        width: 100%;
    }

    .title h2 {
        font-size: 18px;
        text-align: center; /* Alt başlık ortalandı */
        margin-right: 0;
        margin-top: 10px;
        display: flex;
        justify-content: center; /* Yatayda ortala */
        align-items: center; /* Dikeyde ortala */
        width: 100%;
    }

    .title {
        display: flex;
        flex-direction: column; /* Başlık ve alt başlık sütun şeklinde */
        justify-content: center; /* Yatayda ortala */
        align-items: center; /* Dikeyde ortala */
        height: auto;
    }
}

/* Özellikler */

/* Genel Stil */
.technical-specs {
    padding-top: 100px;
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    /* flex-direction: column; */
    /* align-items: center;  Bu özellik içeriği yatayda ortalar */
    justify-content: center; /* Bu özellik içeriği dikeyde ortalar */
}

.technical-specs h3 {
    cursor: pointer;
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    width: 18%;
    box-sizing: border-box;
    margin-right: 1%;
    border-radius: 5px;
}

.technical-specs h3:hover {
    color: #0056b3;
    background-color: #e9e9e9;
}

.specs-content {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 5px;
}

.specs-content p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
    text-align: left;
    line-height: 1.6;
}

.specs-content iframe {
    max-width: 100%;
    border: none;
    border-radius: 5px;
}

/* Teknik Veriler Bölümü */
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-title {
    font-weight: bold;
    width: 40%;
    padding-right: 50px;
    text-align: left;
}

.spec-value {
    width: 60%;
    text-align: right;
}

.spec-value ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.spec-value ul li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}

/* Yüklemeler Bölümü */
.download-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.download-row:last-child {
    border-bottom: none;
}

.download-title {
    font-weight: bold;
    width: 60%;
    padding-right: 20px;
    text-align: left;
}

.download-link {
    width: 40%;
    text-align: right;
}

.download-link a {
    color: #0056b3;
    text-decoration: none;
}

.download-link a:hover {
    text-decoration: underline;
}

/* Özel Aksesuarlar Bölümü */
.accessory-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.accessory-row:last-child {
    border-bottom: none;
}

.accessory-title {
    font-weight: bold;
    width: 60%;
    padding-right: 20px;
    text-align: left;
}

.accessory-code {
    width: 40%;
    text-align: right;
    color: #555;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .technical-specs {
        padding-top: 50px;
        max-width: 100%;
        display: flex;
        flex-direction: column; 
         align-items: center;  
        justify-content: center; /* Bu özellik içeriği dikeyde ortalar */
    }

    .technical-specs h3 {
        font-size: 18px;
        padding: 8px;
        width: 100%;
        margin-right: 0;
    }

    .specs-content {
        width: 100%;
        padding: 10px;
    }

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .spec-title {
        width: 100%;
        padding-right: 0;
        margin-bottom: 5px;
    }

    .spec-value {
        width: 100%;
        text-align: left;
    }

    .spec-value ul {
        padding-left: 0;
    }

    .spec-value ul li {
        font-size: 13px;
    }

    .download-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .download-title {
        width: 100%;
        padding-right: 0;
        margin-bottom: 5px;
    }

    .download-link {
        width: 100%;
        text-align: left;
    }

    .accessory-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .accessory-title {
        width: 100%;
        padding-right: 0;
        margin-bottom: 5px;
    }

    .accessory-code {
        width: 100%;
        text-align: left;
    }
}



/* Talep Formu Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.popup-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content form label {
    margin-top: 10px;
}

.popup-content form input, .popup-content form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.popup-content form button {
    margin-top: 20px;
    background-color:  #0056b3;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.popup-content form button:hover {
    background-color: #000000;
}

/* Benzer Ürünler */
.similar-products {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.similar-products h3 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-item {
    width: 200px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.product-item h4 {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .product-grid {
        gap: 10px;
    }

    .product-item {
        width: 45%;
    }

    .product-item img {
        height: 150px;
        object-fit: contain;
    }

    .product-item h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 100%;
    }

    .product-item img {
        height: 130px;
    }
}


/* Footer Stilleri */
.footer {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: 40px;
}

/* Brand Kısmı */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(0);
}

.footer-description {
    color: #666666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

/* Linkler Kısmı */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
}

.links-column {
    display: flex;
    flex-direction: column;
}

.links-column h3 {
    color: #222222;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.links-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #0056b3;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column ul li i {
    margin-right: 8px;
    color: #0056b3;
    width: 16px;
    text-align: center;
}

.links-column ul li a, 
.links-column ul li {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.links-column ul li a:hover {
    color: #0056b3;
}

/* Sosyal Medya ve Referanslar */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-title {
    color: #222222;
    font-size: 18px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border-radius: 50%;
    color: #333333;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-3px);
}

.partners-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.partners-top img {
    max-width: 110px;
    max-height: 50px;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.8;
    transition: all 0.3s;
}

.partners-top img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    padding: 15px 0;
    margin-top: 60px;
    grid-column: 1 / -1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #b3b3b3;
    font-size: 12px;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .links-column {
        align-items: center;
    }
    
    .links-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .links-column ul li a, 
    .links-column ul li {
        justify-content: center;
    }
    
    .footer-cta {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .partners-top {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-container {
        gap: 25px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .partners-top img {
        max-height: 25px;
    }
}


/* WhatsApp İkonu */
.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 0;
}

.whatsapp-icon img {
    width: 40px;
    height: 40px;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .header {
        padding: 15px 10px;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .search-box {
        width: 400px;
    }

    .logo {
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .nested-box-2 {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 10px;
    }

    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .nav-menu {
        display: none;
    }

    .logo-container {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .search-box {
        order: 2;
        width: calc(100% - 100px);
        margin: 0;
        flex-grow: 1;
    }

    .hamburger-menu {
        order: 3;
        display: block;
        position: static;
        margin-left: 15px;
    }

    .logo {
        max-width: 300px;
    }

    .mobile-menu {
        width: 100%;
    }

    /* Kategoriler */
    .nested-box-1,
    .nested-box-2 {
        width: 100%;
    }

    .category-image {
        width: 150px;
        height: 150px;
    }

    /* Social icons adjustments */
    .social-icons {
        justify-content: center;
        width: 100%;
    }

    .social-icons img {
        width: 32px;
        height: 32px;
    }

    .whatsapp-icon {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .whatsapp-icon img {
        width: 35px;
        height: 35px;
    }

    /* Header and navigation adjustments */
    .nav-list {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #727272;
        padding: 1rem 0;
    }

    .nav-list.active {
        display: flex;
    }

    /* Slider adjustments */
    .slider-container {
        height: 300px;
    }

    .dots-container {
        position: absolute;
        bottom: 40px; /* Noktaları daha yukarı taşıdık */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        gap: 10px;
        z-index: 3; /* Diğer öğelerin üzerinde görünmesi için */
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    /* Content adjustments */
    .main-content {
        padding: 10px;
    }

    .content-section h1 {
        font-size: 20px;
    }

    .content-section p {
        font-size: 14px;
    }

    /* Footer text sizes */
    .alt-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }

    .search-box {
        width: calc(100% - 70px);
    }

    .hamburger-menu {
        font-size: 20px;
    }

    .category-header {
        font-size: 20px;
    }

    .nested-header {
        font-size: 16px;
    }

}