/* 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 #cccccc63;
    background-color: rgba(255, 255, 255, 0.185);
    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: #0000008e;
    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: rgb(255, 255, 255);
    border: 1px solid #dddddd69;
    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 #eeeeee60;
    transition: background-color 0.2s;
}

.search-dropdown-item:hover {
    background-color: #f8f8f87a;
}

.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: #f0f0f065;
    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;
}

/* Modern Slider Styles */

:root {
    --slider-height: 80vh;
    --transition-duration: 1s;
    --dot-size: 14px;
    --dot-gap: 12px;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    --overlay-color: rgba(0, 0, 0, 0.4);
    --button-color: #4a7ddb;
    --button-hover: #3e5eb6;
}

.slider-container {
    position: relative;
    width: 100%;
    height: var(--slider-height);
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform var(--transition-duration) cubic-bezier(0.33, 0.66, 0.66, 1);
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
    font-weight: 700;
    line-height: 1.2;
}

.slide p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    text-shadow: var(--text-shadow);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Slider Button Styles */
.slider-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--button-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.slide.active .slider-button {
    opacity: 1;
    transform: translateY(0);
}

.slider-button:hover {
    background-color: var(--button-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s ease;
}

.slider-button:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--dot-gap);
    z-index: 10;
}

.dot {
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 3s linear;
}

.dot.active {
    background: transparent;
    border-color: white;
}

.dot.active::after {
    transform: scaleX(1);
}

/* Animation effects */
.slide.active {
    animation: zoomEffect 8s linear forwards;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    :root {
        --slider-height: 70vh;
    }
}

@media (max-width: 992px) {
    :root {
        --slider-height: 60vh;
    }
}

/* Mobil için özel stil */
@media (max-width: 768px) {
    .slider-container {
        height: 300px; /* Sabit yükseklik */
    }
    
    .slide-content {
        display: none; /* Yazıları ve butonu gizle */
    }
    
    .dots-container {
        display: none; /* Dots navigation'ı gizle */
    }
    
    .slide {
        background-size: cover;
        background-position: center;
    }
    
    /* Resmin tam ekran kaplaması için */
    .slide::before,
    .slide::after {
        display: none; /* Overlay'leri kaldır */
    }
}

@media (max-width: 576px) {
    :root {
        --slider-height: auto;
        --dot-size: 10px;
        --dot-gap: 8px;
    }
    
    .slider-container {
        aspect-ratio: 4/3;
    }
    
    .slide h2 {
        margin-bottom: 1rem;
    }
    
    .slide p {
        margin-bottom: 1.5rem;
    }
    
    .slider-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .dots-container {
        bottom: 15px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .slider-button:hover {
        background-color: var(--button-color);
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .slider-button:active {
        background-color: var(--button-hover);
        transform: translateY(1px);
    }
}

/* Yönlendirme Bölümü Stilleri */
.services-section {
    max-width: 100%;
    margin: 40px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #00a8ff);
    bottom: -10px;
    left: 20%;
    border-radius: 3px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
    margin-top: 15px;
}

.services-grid {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.service-card {
    /* --servis-overlay: rgba(0, 0, 0, 0.4); */
    flex: 1 0 auto;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Gradient overlay */
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    /* background: linear-gradient(to bottom, var(--servis-overlay), transparent 50%);  */
    z-index: 1;
    pointer-events: none;
}

/* Farklı arka plan renkleri (gradient ile uyumlu daha koyu versiyonlar) */
.card-1 { background-color: #ffffff; }
.card-2 { background-color: #f7f7f7; }
.card-3 { background-color: #ffffff; }
.card-4 { background-color: #f7f7f7; }
.card-5 { background-color: #ffffff; }
.card-6 { background-color: #f7f7f7; }

.service-card:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #d3d3d352;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #0056b3;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    background-color: rgba(255,255,255,0.3);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0056b3;
}

.card-content p {
    font-size: 0.85rem;
    color: #0056b3;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .services-grid {
        flex-wrap: wrap;
    }
    
    .service-card {
        min-width: 50%;
        min-height: 150px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        min-width: 100%;
        min-height: 120px;
        flex-direction: row;
        text-align: left;
        padding: 15px;
        align-items: center;
        justify-content: flex-start;
    }
    
    .card-icon {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .card-content {
        text-align: left;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}



/* öne çıkanlar */

.full-width-container {
    width: 100%;
    max-width: 1500px;
    margin: 50px auto 0;
    padding: 15px;
}

.two-column-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

/* KART STİLLERİ */
.card {
    flex: 1 1 400px;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.card-header {
    padding: 20px 15px 10px;
    text-align: center;
    background: #f8f9fa;
}

.card-image-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.card-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.03);
}

.card-content {
    padding: 15px 20px 20px;
    text-align: center;
}

.card-title {
    color: #0056b3;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-description {
    font-size: 16px; /* 16px olarak güncellendi */
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* MODAL STİLLERİ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover {
    color: #ccc;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .two-column-section {
        gap: 20px;
    }
    
    .card {
        flex: 1 1 100%;
    }
    
    .card-image {
        max-height: 250px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 15px; /* Mobilde 1px küçülttük */
    }
    
    .modal-image {
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .full-width-container {
        padding: 10px;
        margin-top: 30px;
    }
    
    .card-header {
        padding: 15px 10px 8px;
    }
    
    .card-content {
        padding: 12px 15px 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}







/* TEMEL GALERİ YAPISI */
.gallery-container {
    width: 1200px;
    height: 400px;
    margin: 20px auto 0;
    overflow: hidden;
    position: relative;
}

.gallery {
    display: flex;
    gap: 100px;
    animation: slide 90s linear infinite;
    width: max-content;
    height: 100%;
    align-items: center;
}

.gallery-container:hover .gallery {
    animation-play-state: paused;
}

/* GALERİ ÖĞELERİ */
.gallery-item {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery img {
    height: 200px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: none;
    transition: all 0.3s ease;
    image-rendering: auto; /* Daha kaliteli render için */
}

.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: none;
}

/* BİLGİ ALANI */
.gallery-info {
    margin-top: 15px;
    text-align: center;
}

.gallery-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.gallery-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 5px 0;
}

.gallery-details {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .gallery-container {
        width: 100%;
        height: auto;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 15px 0;
    }

    .gallery-container::-webkit-scrollbar {
        display: none;
    }

    .gallery {
        animation: none;
        gap: 30px;
        padding: 0 20px;
    }

    .gallery img {
        width: 100%;
        max-width: 220px;
        height: auto;
        object-fit: cover;
        image-rendering: auto;
    }

    .gallery-title {
        font-size: 16px;
    }

    .gallery-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gallery {
        gap: 20px;
    }

    .gallery img {
        max-width: 180px;
        width: 100%;
        height: auto;
        object-fit: cover;
        image-rendering: auto;
    }
}

/* ANİMASYON */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* HABER & DUYURU KONTEYNIRI */




/* Servis Çözümleri Bölümü Stilleri */
.servis-cozumleri {
    --servis-primary: #586f85;
    --servis-secondary: #615f5e;
    --servis-light: #ecf0f1;
    --servis-dark: #586f85;
    --servis-bg: #ffffff;
    --servis-card-bg: #f9f9f9;
    --servis-transition: all 0.3s ease;

    background-color: var(--servis-bg);
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

.servis-baslik {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.servis-ana-baslik {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
    color: var(--servis-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.servis-ana-baslik::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--servis-secondary);
}

.servis-alt-baslik {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: var(--servis-dark);
    opacity: 0.8;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Kart Konteyneri */
.servis-kartlari-container {
    display: flex;
    gap: 2rem;
    padding: 0 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 1rem;
}

.servis-kartlari-container::-webkit-scrollbar {
    height: 8px;
}

.servis-kartlari-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.servis-kartlari-container::-webkit-scrollbar-thumb {
    background: var(--servis-secondary);
    border-radius: 10px;
}

/* Servis Kartları */
.servis-karti {
    display: flex;
    flex-direction: column;
    min-width: 280px;
    width: 100%;
    transition: var(--servis-transition);
    scroll-snap-align: start;
    flex: 0 0 calc(100% - 2rem);
    background-color: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.servis-gorsel-container {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--servis-card-bg);
    padding: 2rem;
    border-radius: 8px 8px 0 0;
    margin-bottom: -1px;
}

.servis-gorsel {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.servis-karti:hover .servis-gorsel {
    transform: scale(1.05);
}

.servis-icerik-kutusu {
    background-color: var(--servis-card-bg);
    padding: 1.8rem;
    border-radius: 0 0 8px 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.servis-adi {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--servis-primary);
}

.servis-aciklama {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--servis-dark);
    flex-grow: 1;
}

.servis-buton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--servis-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--servis-transition);
    border: none;
    width: fit-content;
    font-size: 0.9rem;
}

.servis-buton:hover {
    background-color: var(--servis-primary);
    transform: translateY(-2px);
}

.servis-buton svg {
    transition: var(--servis-transition);
    width: 16px;
    height: 16px;
}

.servis-buton:hover svg {
    transform: translateX(4px);
}

/* Tablet ve Masaüstü Görünüm */
@media (min-width: 768px) {
    .servis-kartlari-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        overflow-x: visible;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .servis-karti {
        flex: 1;
        min-width: auto;
    }
    
    .servis-gorsel-container {
        height: 280px;
        padding: 2.5rem;
    }
}

/* Geniş Ekranlar */
@media (min-width: 1200px) {
    .servis-cozumleri {
        padding: 3rem 2rem;
    }
    
    .servis-kartlari-container {
        gap: 2.5rem;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .servis-gorsel-container {
        height: 320px;
    }
    
    .servis-icerik-kutusu {
        padding: 2rem;
    }
}





/* teknik destek */
/* TEMEL STİLLER */
.responsive-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}

.complete-image-banner {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.3s ease;
}

.complete-image-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.banner-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.complete-image-banner:hover .banner-full-image {
    transform: scale(1.03);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Banner Text Stili */
.banner-text {
    position: absolute;
    top: 35%;
    right: 400px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    padding: 8px 10px;
    z-index: 2;
    transition: all 0.3s ease;
    /* Yeni eklenen stil */
    display: flex;
    flex-direction: column;
    line-height: 1.5; /* Satırlar arası boşluk */
}

/* MOBİL İÇİN BACKUP RESİM STİLİ (CSS ile) */
.mobile-backup-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* RESPONSIVE AYARLAR */
@media (max-width: 1200px) {
    .complete-image-banner {
        height: 250px;
    }
    
    .banner-text {
        font-size: 22px;
        padding: 10px 18px;
    }
}

@media (max-width: 992px) {
    .complete-image-banner {
        height: 200px;
    }
    
    .banner-text {
        font-size: 20px;
        padding: 9px 16px;
    }
}

/* TABLET VE MOBİLDE FARKLI RESİM (CSS BACKUP) */
@media (max-width: 768px) {
    .banner-full-image {
        display: none;
    }
    
    .mobile-backup-image {
        display: block;
    }
    
    .complete-image-banner {
        height: 100px;
    }
    
    .banner-text {
        font-size: 16px;
        right: 15px;
        padding: 7px 12px;
    }
}

@media (max-width: 576px) {
    .complete-image-banner {
        height: 100px;
    }
    
    .banner-text {
        font-size: 14px;
        right: 10px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .complete-image-banner {
        height: 100px;
    }
    
    .banner-text {
        font-size: 12px;
        right: 8px;
        padding: 4px 8px;
    }
}

/* YATAY MOD */
@media (max-width: 576px) and (orientation: landscape) {
    .complete-image-banner {
        height: 100px;
    }
    
    .banner-text {
        font-size: 12px;
    }
}



/* 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;
    transition: filter 0.3s ease; /* Geçiş efekti ekler */
}

.footer-logo:hover {
    filter: brightness(0); /* Logoyu tamamen siyah yapar */
    /* Alternatif olarak: */
    /* filter: invert(100%); */ /* Bu da siyah yapar ama bazı logolarda farklı sonuç verebilir */
}

.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;
    }

}