/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Font loading optimization */
@font-face {
    font-family: 'Segoe UI';
    font-display: swap;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar Banner Stilleri */
.topbar-banner {
    background: #efefef;
    padding: 0;
    margin: 0;
    border-bottom: none;
    height: auto;
    min-height: 16px;
}

.topbar-banner-content {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 1rem;
    padding: 0;
    height: 100%;
}

.catalog-link {
    background: #c9fb00;
    color: #000000;
    font-weight: 700;
    padding: 0 0.8rem;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 0;
    transition: opacity 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    align-items: center;
    height: 100%;
}

.catalog-link:hover {
    opacity: 0.9;
}

.help-link {
    color: #666;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    transition: color 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.help-link:hover {
    color: #333;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.language-selector a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
}

.language-selector a:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.language-selector a.active {
    background: #2d2d2d;
    color: #fff;
    border-color: #2d2d2d;
}

.flag-icon {
    font-size: 0.9rem;
    line-height: 1;
}

/* Topbar Stilleri */
.topbar {
    background: #2d2d2d;
    box-shadow: none;
    z-index: 1000;
    padding: 0;
    margin: 0;
    border-bottom: none;
    height: 60px;
    line-height: 0;
}

/* Ürünler sayfasında topbar'ın alt border'ı ve gölgesi yok */
body.products-page .topbar,
body:has(.categories-bar) .topbar {
    border-bottom: none;
    box-shadow: none;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 60px;
    margin: 0;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    line-height: 1;
}

.main-nav {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-start;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: stretch;
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-nav li {
    display: flex;
    align-items: stretch;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Menüler arasında ince dikey çizgiler */
.main-nav li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #525050;
    z-index: 1;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 1;
}

/* Topbar Arama Çubuğu */
.topbar-search {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 1rem;
    height: 100%;
}

.search-input {
    width: 100%;
    height: 36px;
    padding: 0 2.5rem 0 1rem;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #2c3e50;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: #999;
}

.search-input:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.search-input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Topbar İkonları */
.topbar-icons {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    margin-left: auto;
}

.topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    position: relative;
}

.topbar-icon:hover {
    background: #525050;
    color: #ffffff;
}

.topbar-icon:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #525050;
    z-index: 1;
}

.main-nav a:hover {
    color: #ffffff;
    background: #525050;
}

.main-nav a::before {
    display: none;
}

/* Ürünler Menüsü Özel Stili */
.main-nav a.products-menu-link {
    color: #ffffff;
    background: transparent;
}

.main-nav a.products-menu-link:hover {
    color: #ffffff;
    background: #525050;
}

/* Seçili menü rengi - ürünler sayfasında aktif (hover renginde sabit) */
body.products-page .main-nav a.products-menu-link,
.main-nav a.products-menu-link.active {
    background: #525050;
    color: #ffffff;
}

/* Seçili menü hover'da da aynı renkte kalsın */
body.products-page .main-nav a.products-menu-link:hover,
.main-nav a.products-menu-link.active:hover {
    background: #525050;
    color: #ffffff;
}

/* Kategori Şeridi */
.categories-bar {
    background: #525050;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top: 0;
}

.categories-nav {
    display: flex;
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-nav::-webkit-scrollbar {
    display: none;
}

.category-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    padding: 0.75rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100%;
}

/* Kategoriler arasında görünmeyen dikey çizgiler için pseudo-element */
.category-link:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
}

.category-link:hover {
    color: #000000;
    background: #eeeeee;
}

.category-link.active {
    color: #000000;
    background: #eeeeee;
    font-weight: 700;
}

.category-link.active:hover {
    color: #000000;
    background: #eeeeee;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
    border-radius: 2px;
}

/* Carousel Stilleri */
.carousel-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    max-height: calc(80vh + 4rem);
    overflow: hidden;
    margin-bottom: 0;
    /* Layout shift önleme için placeholder */
    background-color: #000;
    /* CLS önleme için sabit yükseklik rezervasyonu */
    contain: layout style paint;
}

/* Carousel skeleton/placeholder - CLS önleme */
.carousel-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    min-height: 600px;
}

/* Carousel yüklendiğinde skeleton'ı gizle */
.carousel-section:has(.carousel-slide.active) .carousel-skeleton {
    display: none;
}

/* Fallback için JavaScript ile gizleme */
.carousel-slide.active ~ .carousel-skeleton,
.carousel-container:has(.carousel-slide.active) ~ .carousel-skeleton {
    display: none;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    min-height: 600px;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img,
.carousel-slide video {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: fill !important;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Video için overlay'i kaldır - video orijinal parlaklığında görünsün */
.carousel-slide[data-type="video"] .carousel-overlay {
    background: transparent;
}

/* Video için metin içeriğine arka plan ekle (okunabilirlik için) - sadece içerik varsa */
.carousel-slide[data-type="video"] .carousel-content:not(:empty) {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* İçerik boşsa gizle */
.carousel-content:empty {
    display: none;
}

/* Sadece boş h2 ve p varsa gizle */
.carousel-content:has(h2:empty):has(p:empty) {
    display: none;
}

.carousel-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.carousel-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Carousel Buton Stilleri */
.carousel-button-wrapper {
    position: absolute;
    z-index: 3;
    padding: 1rem;
}

.carousel-button-wrapper.carousel-button-top-left {
    top: 2rem;
    left: 2rem;
}

.carousel-button-wrapper.carousel-button-top-right {
    top: 2rem;
    right: 2rem;
}

.carousel-button-wrapper.carousel-button-bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.carousel-button-wrapper.carousel-button-bottom-right {
    bottom: 2rem;
    right: 2rem;
}

.carousel-button-wrapper.carousel-button-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-button {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.6rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 8px rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(255, 255, 255, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.6);
}

.carousel-button:active {
    transform: translateY(0);
}

/* Mobil için buton boyutları */
@media (max-width: 768px) {
    .carousel-button-wrapper {
        padding: 0.75rem;
    }
    
    .carousel-button-wrapper.carousel-button-top-left,
    .carousel-button-wrapper.carousel-button-top-right {
        top: 1rem;
    }
    
    .carousel-button-wrapper.carousel-button-bottom-left,
    .carousel-button-wrapper.carousel-button-bottom-right {
        bottom: 1rem;
    }
    
    .carousel-button-wrapper.carousel-button-top-left,
    .carousel-button-wrapper.carousel-button-bottom-left {
        left: 1rem;
    }
    
    .carousel-button-wrapper.carousel-button-top-right,
    .carousel-button-wrapper.carousel-button-bottom-right {
        right: 1rem;
    }
    
    .carousel-button {
        padding: 0.3rem 0.75rem;
        font-size: 0.45rem;
        border-radius: 12.5px;
    }
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Poster Kartları */
.posters-section {
    padding: 2rem 0;
    background: #000 !important;
}

.posters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.poster-card {
    perspective: 1500px;
    height: 450px;
    cursor: pointer;
}

.poster-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

.poster-card:hover .poster-inner {
    transform: rotateY(180deg) scale(1.02);
}

.poster-front,
.poster-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.poster-card:hover .poster-front,
.poster-card:hover .poster-back {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.poster-front {
    background: var(--white);
}

.poster-front-image {
    width: 100%;
    height: 65%;
    overflow: hidden;
    flex-shrink: 0;
    min-height: 0;
    position: relative;
}

.poster-front-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    overflow: hidden;
    display: block;
}

.poster-front-content {
    width: 100%;
    height: 35%;
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 1rem;
    box-sizing: border-box;
    text-align: center;
}

.poster-front-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.poster-front-description {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.poster-back {
    transform: rotateY(180deg);
    background: var(--primary-color);
    position: relative;
}

.poster-back-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.2rem 1rem;
    text-align: left;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.poster-card:hover .poster-back-content {
    opacity: 1;
    transform: translateY(0);
}

.poster-back-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--white);
    text-align: left;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.poster-card:hover .poster-back-content h3 {
    opacity: 1;
    transform: translateY(0);
}

.poster-back-content p {
    font-size: 1rem;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.6;
    text-align: left;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

.poster-card:hover .poster-back-content p {
    opacity: 1;
    transform: translateY(0);
}

.poster-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s, background 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.poster-btn i {
    display: none;
}

.poster-card:hover .poster-btn {
    opacity: 1;
    transform: translateY(0);
}

.poster-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Ana Banner */
.main-banner-section {
    padding: 4rem 0;
    display: block;
    visibility: visible;
    width: 100%;
    background: #000 !important;
}

.main-banner {
    width: 100%;
    height: auto;
    min-height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner img {
    width: 100%;
    height: auto;
    object-fit: fill;
    display: block;
    transition: var(--transition);
}

.main-banner a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.main-banner:hover img {
    transform: scale(1.02);
}

/* Yazı Alanı */
.text-section {
    padding: 5rem 0;
    background: var(--white);
}

.text-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.text-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* İkinci Banner */
.second-banner-section {
    padding: 3rem 0;
    background: var(--light-bg);
    display: block;
    visibility: visible;
    width: 100%;
}

.second-banner {
    width: 100%;
    height: auto;
    min-height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-banner img {
    width: 100%;
    height: auto;
    object-fit: fill;
    display: block;
    transition: var(--transition);
}

.second-banner a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.second-banner:hover img {
    transform: scale(1.02);
}

/* Metin Afişleri - Basit Kart Tasarımı */
.text-cards-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.text-cards-header {
    text-align: center;
    margin-bottom: 3rem;
}

.text-cards-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.text-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.text-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.text-card-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.text-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.text-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.text-card-content {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Yeni Kartlar Alanı */
.new-cards-section {
    padding: 4rem 0;
    background: #ffffff;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-height: 200px !important;
    position: relative !important;
    z-index: 1 !important;
}

.new-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.new-card {
    background: white !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    padding: 2rem !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-height: 150px !important;
    box-sizing: border-box !important;
}

.new-card-title {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
}

.new-card-content {
    font-size: 0.95rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
}

/* Footer */
.footer {
    /* Header (topbar) ile aynı arka plan rengi */
    background: #2d2d2d;
    color: var(--white);
    padding: 2rem 0;
    text-align: left;
    margin-top: 0;
}

.footer-rich-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.footer-rich-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.footer-rich-catalog {
    display: inline-block;
    max-width: 220px;
}

.footer-rich-catalog-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-rich-about-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #ffffff;
}

.footer-rich-about-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-rich-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-rich-menu-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0;
}

.footer-rich-menu-bullet {
    color: #c9fb00;
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    flex: 0 0 auto;
}

.footer-rich-menus a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-rich-menus a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-rich-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.footer-rich-contact-icon {
    color: #c9fb00;
    width: 18px;
    text-align: center;
    font-size: 0.95rem;
    margin-right: 0.65rem;
    flex: 0 0 auto;
}

.footer-rich-address,
.footer-rich-phone {
    margin: 0 0 0.65rem 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-rich-phone a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.footer-rich-phone a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-rich-contact {
    min-width: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-small {
    margin: 0 0 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-catalog-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, background 0.2s ease;
}

.footer-catalog-card:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.footer-catalog-cover {
    width: 78px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.08);
}

.footer-catalog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-catalog-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0.5rem;
    text-align: center;
}

.footer-catalog-meta {
    min-width: 0;
}

.footer-catalog-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-catalog-cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-about-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.2s ease;
}

.footer-contact-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-rich-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-rich-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .posters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .carousel-content h2 {
        font-size: 2.5rem;
    }
    
    .text-title {
        font-size: 2rem;
    }
    
    .text-subtitle {
        font-size: 1.5rem;
    }
    
    .text-cards-section {
        padding: 4rem 0;
    }
    
    .text-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .text-card {
        padding: 1.5rem;
    }
    
    .new-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .new-card {
        padding: 1.5rem;
    }
    
    /* Katalog Banner - Tablet */
    .catalog-banner-wrapper {
        gap: 2rem !important;
    }
    
    .catalog-banner-content {
        font-size: 1.3rem !important;
    }
    
    .catalog-cover-container {
        width: 160px !important;
        height: 107px !important;
    }
    
    .catalog-cover-image,
    .catalog-placeholder {
        width: 160px !important;
        height: 107px !important;
    }
    
    .catalog-cover-image img {
        width: 160px !important;
        height: 107px !important;
        max-width: 160px !important;
        max-height: 107px !important;
        min-width: 160px !important;
        min-height: 107px !important;
    }
    
    .catalog-pages {
        width: 160px !important;
        height: 107px !important;
    }
    
    .catalog-pages::before,
    .catalog-pages::after {
        width: 160px !important;
        height: 107px !important;
    }
}

@media (max-width: 768px) {
    .topbar-banner {
        display: none;
    }
    
    .topbar {
        height: auto;
        min-height: 60px;
    }
    
    .topbar-content {
        flex-wrap: wrap;
        height: auto;
        min-height: 60px;
    }
    
    .logo {
        height: 60px;
    }
    
    .topbar-search {
        display: none;
    }
    
    .topbar-icons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        height: 60px;
        align-items: center;
        justify-content: center;
    }
    
    .topbar-content {
        position: relative;
    }
    
    .categories-bar {
        position: relative;
    }
    
    .categories-nav {
        padding: 0.5rem 0;
        gap: 0.75rem;
    }
    
    .category-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.75rem;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2d2d2d;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1001;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0;
        gap: 0;
        height: auto;
    }
    
    .main-nav li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 1rem 1.5rem;
        text-align: left;
        justify-content: flex-start;
    }
    
    .main-nav a:hover {
        background: #525050;
    }
    
    .carousel-section {
        height: auto;
        min-height: 300px;
        max-height: 400px;
        margin-bottom: 0;
    }
    
    .carousel-container,
    .carousel-wrapper,
    .carousel-slide {
        min-height: 300px;
    }
    
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .posters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .poster-card {
        height: 600px;
    }
    
    .main-banner-section {
        padding: 2rem 0;
        background: #000 !important;
    }
    
    .text-cards-section {
        padding: 2rem 0 !important;
    }
    
    .text-cards-title {
        font-size: 1.5rem !important;
    }
    
    #text-cards-grid-responsive {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .text-card {
        padding: 1.5rem !important;
    }
    
    .text-card-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.8rem !important;
    }
    
    .text-card-icon i {
        font-size: 1.2rem !important;
    }
    
    .text-card-title {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .text-card-content {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .carousel-content h2 {
        font-size: 1.5rem;
    }
    
    .poster-back-content h3 {
        font-size: 1.5rem;
    }
    
    .poster-back-content p {
        font-size: 0.9rem;
    }
    
    .text-section {
        padding: 3rem 0;
    }
    
    .text-title {
        font-size: 1.5rem;
    }
    
    .text-subtitle {
        font-size: 1.2rem;
    }
    
    .text-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .second-banner-section {
        padding: 2rem 0;
    }
    
    .text-cards-section {
        padding: 2rem 0 !important;
    }
    
    .text-cards-title {
        font-size: 1.3rem !important;
    }
    
    #text-cards-grid-responsive {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .text-card {
        padding: 1.5rem !important;
    }
    
    .text-card-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.8rem !important;
    }
    
    .text-card-icon i {
        font-size: 1.2rem !important;
    }
    
    .text-card-title {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .text-card-content {
        font-size: 0.8rem !important;
    }
    
    .main-banner-section {
        padding: 1.5rem 0 !important;
        background: #000 !important;
    }
    
    .main-banner {
        min-height: 150px !important;
        height: auto !important;
    }
    
    .main-banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: fill !important;
    }
    
    .second-banner {
        min-height: 150px !important;
        height: auto !important;
    }
    
    .second-banner img {
        width: 100% !important;
        height: auto !important;
        object-fit: fill !important;
    }
    
    .content-grid-section .content-grid-row,
    .content-grid-row {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
        display: grid !important;
    }
    
    .content-grid-section .content-grid-item,
    .content-grid-item {
        width: 100% !important;
        min-height: 200px !important;
        grid-column: 1 !important;
    }
    
    /* Mobil Banner - 480px için ek ayarlar */
    .catalog-banner-content {
        font-size: 1rem !important;
    }
    
    .catalog-cover-container {
        max-width: 240px !important;
    }
    
    /* aspect-ratio destekleniyorsa padding-bottom'u override et */
    @supports (aspect-ratio: 3 / 2) {
        .catalog-cover-container {
            aspect-ratio: 3 / 2 !important;
            height: auto !important;
            padding-bottom: 0 !important;
        }
    }
}

/* İçerik Grid Bölümü (2 sütun 3 satır) */
.content-grid-section {
    padding: 4rem 0 !important;
    background: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.content-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
    position: static !important;
    z-index: auto !important;
    isolation: auto !important;
}

.content-grid-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    position: static !important;
    z-index: auto !important;
    isolation: auto !important;
    align-items: stretch !important;
}

/* Mobil için tek sütun - Bu media query aşağıdaki responsive bölümde birleştirildi */

.content-grid-item {
    min-height: 300px !important;
    height: auto !important;
    background: #ffffff !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: none !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: static !important;
    z-index: auto !important;
    transform: none !important;
    box-shadow: none !important;
    will-change: auto !important;
    isolation: auto !important;
    backface-visibility: visible !important;
    perspective: none !important;
    transform-style: flat !important;
}

.content-grid-item.empty {
    border: 1px dashed #e0e0e0 !important;
    background: #fafafa !important;
}


/* Grid Item - Image */
.grid-item-image {
    position: static !important;
    width: 100%;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    z-index: auto !important;
    display: flex;
    align-items: stretch;
}

.grid-item-image img {
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 300px;
    object-fit: fill;
    object-position: center;
    display: block;
}

.grid-item-image a {
    display: block;
    width: 100%;
    flex: 1;
}

.grid-item-overlay {
    position: static;
    background: transparent;
    padding: 2rem;
    color: var(--white);
    transform: none;
    transition: none;
    display: none;
}


.grid-item-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.grid-item-overlay p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Grid Item - Video */
.grid-item-video {
    width: 100%;
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: static !important;
    z-index: auto !important;
    align-items: stretch;
}

.grid-item-video video {
    width: 100%;
    flex: 1;
    min-height: 300px;
    object-fit: fill;
    background: #000;
}

.grid-item-info {
    padding: 1.5rem;
    background: #ffffff;
}

.grid-item-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.grid-item-info p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Grid Item - Text */
.grid-item-text {
    padding: 2.5rem !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    position: static !important;
    z-index: auto !important;
}

.grid-item-text h3 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.2 !important;
    display: block !important;
}

.grid-item-description {
    font-size: 1.3rem !important;
    color: var(--secondary-color) !important;
    font-weight: 400 !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
    display: block !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
}

.grid-item-content {
    font-size: 1rem !important;
    color: var(--text-color) !important;
    line-height: 1.6 !important;
    flex-grow: 1 !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.grid-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: none;
    margin-top: auto;
}

.grid-item-link i {
    transition: none;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid-section .content-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .content-grid-section .content-grid-row,
    .content-grid-row {
        display: contents !important;
    }
    
    .content-grid-section .content-grid-item,
    .content-grid-item,
    .content-grid-item[style*="height: 300px"] {
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
        width: 100% !important;
        margin-bottom: 0 !important;
        overflow: visible !important;
    }
    
    /* Metin içeren grid item'lar için yükseklik sınırlaması yok */
    .content-grid-section .content-grid-item:has(.grid-item-text),
    .content-grid-item:has(.grid-item-text),
    .content-grid-item[style*="height: 300px"]:has(.grid-item-text) {
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Grid item içindeki text elementler için overflow visible (img/video/canvas hariç) */
    .content-grid-section .content-grid-item h3,
    .content-grid-section .content-grid-item p,
    .content-grid-section .content-grid-item div,
    .content-grid-item h3,
    .content-grid-item p,
    .content-grid-item div {
        overflow: visible !important;
    }
    
    /* img, video, canvas için overflow hidden (deprecated API sorunu çözüldü) */
    .content-grid-section .content-grid-item img,
    .content-grid-section .content-grid-item video,
    .content-grid-section .content-grid-item canvas,
    .content-grid-item img,
    .content-grid-item video,
    .content-grid-item canvas {
        overflow: hidden !important;
    }
    
    /* Mobil sıralama: 1. satır sağ-sol, 2. satır sol-sağ, 3. satır sağ-sol */
    /* Sıra: 1. satır sağ (1), 1. satır sol (2), 2. satır sol (3), 2. satır sağ (4), 3. satır sağ (5), 3. satır sol (6) */
    .content-grid-section .content-grid .grid-row-1 .grid-col-2,
    .content-grid .grid-row-1 .grid-col-2 {
        order: 1 !important;
    }
    
    .content-grid-section .content-grid .grid-row-1 .grid-col-1,
    .content-grid .grid-row-1 .grid-col-1 {
        order: 2 !important;
    }
    
    .content-grid-section .content-grid .grid-row-2 .grid-col-1,
    .content-grid .grid-row-2 .grid-col-1 {
        order: 3 !important;
    }
    
    .content-grid-section .content-grid .grid-row-2 .grid-col-2,
    .content-grid .grid-row-2 .grid-col-2 {
        order: 4 !important;
    }
    
    .content-grid-section .content-grid .grid-row-3 .grid-col-2,
    .content-grid .grid-row-3 .grid-col-2 {
        order: 5 !important;
    }
    
    .content-grid-section .content-grid .grid-row-3 .grid-col-1,
    .content-grid .grid-row-3 .grid-col-1 {
        order: 6 !important;
    }
    
    .content-grid-section .grid-item-text,
    .grid-item-text[style*="height: 100%"],
    .grid-item-text[style] {
        padding: 2rem !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .content-grid-section .grid-item-text h3 {
        font-size: 1.6rem !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .content-grid-section     .grid-item-description {
        font-size: 1.1rem !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        display: block !important;
        -webkit-line-clamp: none !important;
        line-clamp: none !important;
        text-overflow: clip !important;
        white-space: normal !important;
    }
    
    .content-grid-section .grid-item-content {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Grid item görselleri için aspect ratio koruması */
    .content-grid-section .content-grid-item img,
    .content-grid-item img {
        object-fit: fill;
        object-position: center;
        overflow: hidden !important;
    }
    
    .content-grid-section .content-grid-item video,
    .content-grid-item video {
        object-fit: fill;
        object-position: center;
        overflow: hidden !important;
    }
    
    .content-slider-section .content-slider-wrapper,
    #content-slider-wrapper-responsive {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: grid !important;
    }
    
    .content-slider-section .slider-left-content,
    .slider-left-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    .content-slider-section .slider-right-content,
    .slider-right-content {
        order: 2 !important;
        width: 100% !important;
    }
    
    .contact-banner-section {
        padding: 1rem 0 !important;
    }
    
    .contact-banner {
        padding: 0.8rem 0 !important;
    }
    
    .contact-banner-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .contact-banner-title {
        font-size: 1.2rem !important;
        text-align: center !important;
    }
    
    .contact-banner-description {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    
    .contact-banner-btn {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* İletişim Banner */
.contact-banner-section {
    padding: 1.5rem 0 !important;
    background: #667eea !important;
    background-image: none !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
}

.contact-banner-section::before,
.contact-banner-section::after {
    display: none !important;
    content: none !important;
}

.contact-banner {
    position: relative !important;
    z-index: 1 !important;
    background: transparent !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    padding: 1rem 0 !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    height: auto !important;
}

.contact-banner-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.contact-banner-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.3rem !important;
    text-shadow: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.contact-banner-description {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.contact-banner-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.7rem 1.8rem !important;
    background: #ffffff !important;
    color: #667eea !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.contact-banner-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    gap: 1rem;
}

.contact-banner-btn i {
    transition: transform 0.3s ease;
}

.contact-banner-btn:hover i {
    transform: translateX(5px);
}

/* İçerik Slider Bölümü */
.content-slider-section {
    padding: 4rem 0 0 0 !important;
    background: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.content-slider-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
    width: 100% !important;
}

.content-slider-wrapper #content-slider-wrapper-responsive {
    display: grid !important;
}

.slider-left-content {
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 400px !important;
}

.slider-image,
.slider-video {
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

.slider-image img,
.slider-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
    display: block !important;
}

.slider-right-content {
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.text-slider-container {
    position: relative !important;
    width: 100% !important;
    min-height: 300px !important;
}

.text-slider-wrapper {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.text-slide {
    display: none !important;
    visibility: visible !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

.text-slide.active {
    display: block !important;
    opacity: 1 !important;
}

.slide-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slide-content {
    font-size: 1.1rem !important;
    color: #666 !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slider-progress-container {
    margin-bottom: 1.5rem !important;
    width: 100% !important;
    height: 4px !important;
    background: #e0e0e0 !important;
    border-radius: 2px !important;
    overflow: hidden !important;
    display: block !important;
}

.slider-progress-bar {
    height: 100% !important;
    background: #667eea !important;
    width: 0% !important;
    transition: none !important; /* JavaScript ile kontrol edilecek */
    border-radius: 2px !important;
}

.slider-indicators {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
    justify-content: center !important;
}

.slider-indicator {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: none !important;
    background: #ccc !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    padding: 0 !important;
}

.slider-indicator.active {
    background: #667eea !important;
}

/* Slogan Çubuğu Bölümü */
.slogan-bar-section {
    padding: 0.8rem 0 !important;
    background: #f8f9fa !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.icon-banner-wrapper,
.slogan-bar-wrapper.icon-banner-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    align-items: center !important;
    width: 100% !important;
}

.slogan-item.progress-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.5rem !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: background 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
}

.slogan-icon[data-active-icon="true"] {
    background: #667eea !important;
}

.slogan-icon[data-active-icon="false"] {
    background: #ccc !important;
}

.slogan-bar-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    align-items: center !important;
    width: 100% !important;
}

.slogan-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.8rem !important;
    padding: 0.5rem !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: background 0.3s ease !important;
}

.slogan-icon {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #667eea !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 1.5rem !important;
    flex-shrink: 0 !important;
}

.slogan-text {
    flex: 1 !important;
}

.slogan-text p {
    margin: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    line-height: 1.4 !important;
}

/* Blog Kartları Bölümü */
.blog-section {
    padding: 4rem 0 !important;
    background: #ffffff !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.blog-cards-container {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
}

.blog-cards-wrapper {
    display: flex !important;
    gap: 1.5rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    padding-bottom: 1rem !important;
}

.blog-cards-wrapper::-webkit-scrollbar {
    height: 8px !important;
}

.blog-cards-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 4px !important;
}

.blog-cards-wrapper::-webkit-scrollbar-thumb {
    background: #667eea !important;
    border-radius: 4px !important;
}

.blog-cards-wrapper::-webkit-scrollbar-thumb:hover {
    background: #5568d3 !important;
}

.blog-card {
    min-width: 320px !important;
    max-width: 320px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
}

.blog-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.blog-card-image {
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    position: relative !important;
}

.blog-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important;
    display: block !important;
}

.blog-card-content {
    padding: 1.5rem !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.blog-card-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
}

.blog-label {
    font-size: 0.85rem !important;
    color: #dc3545 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.blog-card-date {
    font-size: 0.85rem !important;
    color: #667eea !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
}

.blog-card-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 0.8rem !important;
    line-height: 1.4 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-card-excerpt {
    font-size: 0.95rem !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.blog-scroll-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(102, 126, 234, 0.9) !important;
    color: #ffffff !important;
    border: none !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    z-index: 10 !important;
    transition: background 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.blog-scroll-btn:hover {
    background: rgba(102, 126, 234, 1) !important;
}

.blog-scroll-left {
    left: 10px !important;
}

.blog-scroll-right {
    right: 10px !important;
}

/* Katalog Banner Bölümü - Temel Stiller */
.catalog-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem 1rem;
    width: 100%;
}

.catalog-banner-section .container {
    background: transparent;
}

/* Genel Banner Wrapper Stilleri */
.catalog-banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.catalog-banner-text {
    color: #ffffff;
}

.catalog-banner-content {
    margin: 0;
    display: block;
}

.catalog-cover-container {
    position: relative;
    display: block;
}

/* Mobil Banner Stilleri - Mobilde Gizle */
@media (max-width: 768px) {
    .catalog-banner-section {
        display: none;
    }
    
    .catalog-banner-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .catalog-banner-text {
        width: 100%;
    }
    
    .catalog-banner-content {
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.6;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .catalog-cover-container {
        width: 75%;
        max-width: 280px;
        margin: 0 auto;
        aspect-ratio: 3 / 2;
    }
    
    /* Fallback için padding-bottom trick */
    @supports not (aspect-ratio: 3 / 2) {
        .catalog-cover-container {
            height: 0;
            padding-bottom: 66.666%; /* 3:2 oranı */
        }
    }
    
    /* Mobilde 3D efektleri gizle */
    .catalog-pages {
        display: none;
    }
    
    .catalog-cover-image,
    .catalog-placeholder {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }
    
    .catalog-cover-image:hover,
    .catalog-placeholder:hover {
        transform: scale(1.02);
    }
    
    .catalog-cover-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
    
    .catalog-placeholder {
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 1rem;
        gap: 0.8rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .catalog-placeholder > div:first-child,
    .catalog-placeholder > div:nth-child(1) {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
        font-weight: 700 !important;
        color: #667eea !important;
    }
    
    .catalog-placeholder > div:last-child,
    .catalog-placeholder > div:nth-child(2) {
        font-size: clamp(0.7rem, 3vw, 0.85rem) !important;
        font-weight: 700 !important;
        color: #764ba2 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }
}

/* Masaüstü Stilleri */
@media (min-width: 769px) {
    .catalog-banner-section {
        padding: 1rem 0;
    }
    
    .catalog-banner-wrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 3rem;
    }
    
    .catalog-banner-text {
        flex: 1;
    }
    
    .catalog-banner-content {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .catalog-cover-container {
        flex-shrink: 0;
        perspective: 1500px;
        perspective-origin: center center;
        width: 180px;
        height: 120px;
        transform-style: preserve-3d;
        margin: 0;
        padding: 0;
    }
}

/* Desktop'ta aspect-ratio için padding-bottom trick (yedek) - Sadece desktop için */
@media (min-width: 769px) {
    .catalog-cover-container {
        height: 120px !important;
    }
}

/* Desktop'ta aspect-ratio için padding-bottom trick (yedek) */
.catalog-cover-container::after {
    content: '' !important;
    display: none !important;
}

/* İç sayfalar - ChatGPT önerisi (Sadece masaüstü için) */
@media (min-width: 769px) {
    .catalog-pages {
        width: 180px !important;
        height: 120px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        background: linear-gradient(
            to right,
            #ffffff 0%,
            #f5f5f5 40%,
            #eaeaea 100%
        ) !important;
        border-radius: 6px !important;
        box-shadow: 
            inset -8px 0 15px rgba(0, 0, 0, 0.08),
            5px 0 15px rgba(0, 0, 0, 0.1) !important;
        transform: translateX(8px) !important;
        z-index: 1 !important;
        pointer-events: none !important;
        display: block !important;
        visibility: visible !important;
    }
}

/* İç sayfa katmanları - Daha gerçekçi görünüm için (Sadece masaüstü için) */
@media (min-width: 769px) {
    .catalog-pages::before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: white !important;
        border-radius: 6px !important;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.05) !important;
        transform: translateX(4px) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    .catalog-pages::after {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: white !important;
        border-radius: 6px !important;
        box-shadow: 5px 0 10px rgba(0, 0, 0, 0.05) !important;
        transform: translateX(8px) !important;
        z-index: 0 !important;
        pointer-events: none !important;
    }
}

/* Kapak (Masaüstü için 3D efektler) */
@media (min-width: 769px) {
    .catalog-cover-image,
    .catalog-placeholder {
        width: 180px !important;
        height: 120px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        transform-origin: left center !important;
        transform-style: preserve-3d !important;
        transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s ease !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        background: white !important;
        cursor: pointer !important;
        z-index: 2 !important;
        will-change: transform !important;
        transform: rotateY(0deg) !important;
        backface-visibility: hidden !important;
    }
}

/* Placeholder özel stilleri - Masaüstü için */
@media (min-width: 769px) {
    .catalog-placeholder {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1.5rem 1rem !important;
        gap: 0.8rem !important;
        border: 3px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 
            inset 0 0 20px rgba(255, 255, 255, 0.2),
            0 0 0 1px rgba(0, 0, 0, 0.1) !important;
        min-height: 120px !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* Placeholder div stilleri - Masaüstü için */
@media (min-width: 769px) {
    .catalog-placeholder > div {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .catalog-placeholder > div:first-child,
    .catalog-placeholder > div:nth-child(1) {
        font-size: 3rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .catalog-placeholder > div:last-child,
    .catalog-placeholder > div:nth-child(2) {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        text-align: center !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
}

/* catalog-cover-image içindeki placeholder */
.catalog-cover-image .catalog-placeholder {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.5rem 1rem !important;
    gap: 0.8rem !important;
    transform: none !important;
    z-index: 1 !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.1) !important;
}

.catalog-cover-image .catalog-placeholder > div:first-child,
.catalog-cover-image .catalog-placeholder > div:nth-child(1) {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.catalog-cover-image .catalog-placeholder > div:last-child,
.catalog-cover-image .catalog-placeholder > div:nth-child(2) {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* catalog-cover-image içinde placeholder varsa background'u şeffaf yap */
.catalog-cover-image:has(.catalog-placeholder),
.catalog-cover-image .catalog-placeholder {
    background: transparent !important;
}

.catalog-cover-image .catalog-placeholder {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
}

.catalog-placeholder > div,
.catalog-cover-image .catalog-placeholder > div {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hover efekti - Kapak açılırken (Sadece masaüstü için) */
@media (min-width: 769px) {
    .catalog-cover-container:hover .catalog-cover-image {
        transform: rotateY(-25deg) translateX(10px) !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
    }

    .catalog-cover-container:hover .catalog-placeholder {
        transform: rotateY(-25deg) translateX(10px) !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
    }

    /* catalog-cover-image içindeki placeholder için hover */
    .catalog-cover-container:hover .catalog-cover-image .catalog-placeholder {
        transform: none !important;
    }

    /* Hover'da iç sayfalar daha görünür olsun */
    .catalog-cover-container:hover .catalog-pages {
        opacity: 1 !important;
        transform: translateX(8px) !important;
    }
    
    /* Masaüstünde mobil açıklamasını kesinlikle gizle */
    .instagram-description-mobile {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

.catalog-cover-image img {
    width: 180px !important;
    height: 120px !important;
    max-width: 180px !important;
    max-height: 120px !important;
    min-width: 180px !important;
    min-height: 120px !important;
    object-fit: fill !important;
    display: block !important;
    position: relative !important;
}


/* Responsive */
@media (max-width: 768px) {
    .content-slider-section .content-slider-wrapper,
    .content-slider-wrapper,
    #content-slider-wrapper-responsive {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        display: grid !important;
    }
    
    .content-slider-section .slider-left-content,
    .slider-left-content {
        order: 1 !important;
        width: 100% !important;
    }
    
    .content-slider-section .slider-right-content,
    .slider-right-content {
        order: 2 !important;
        width: 100% !important;
    }
    
    .slide-title {
        font-size: 1.5rem !important;
    }
    
    .slide-content {
        font-size: 1rem !important;
    }
    
    .text-slider-container {
        min-height: 250px !important;
    }
    
    /* Mobilde ikon banner progress overlay'i gizle */
    .icon-banner-progress-overlay {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Mobilde içerik slider progress bar'ı göster */
    .slider-mobile-progress-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 3px !important;
        background: #e0e0e0 !important;
        margin-bottom: 1.5rem !important;
        border-radius: 2px !important;
        overflow: hidden !important;
    }
    
    .slider-mobile-progress-bar {
        height: 100% !important;
        background: #667eea !important;
        width: 0% !important;
        transition: none !important;
        border-radius: 2px !important;
    }
    
    /* Mobil ikon banner - başlıklarla beraber göster */
    .icon-banner-wrapper,
    .slogan-bar-wrapper.icon-banner-wrapper,
    #slogan-bar-wrapper-responsive {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .slogan-item.progress-item {
        flex-direction: row !important;
        gap: 0.8rem !important;
    }
    
    .slogan-text {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        width: auto !important;
        overflow: visible !important;
        flex: 1 !important;
    }
    
    .slogan-text p {
        display: block !important;
    }
    
    .blog-section {
        padding: 2rem 0 !important;
    }
    
    .blog-card {
        min-width: 280px !important;
        max-width: 280px !important;
    }
    
    /* Mobil Banner - Inline style'lar kullanılıyor, CSS sadece görünürlük için */
    
    .blog-card-image {
        height: 180px !important;
    }
    
    .blog-card-content {
        padding: 1.2rem !important;
    }
    
    .blog-card-title {
        font-size: 1.1rem !important;
    }
    
    .blog-scroll-btn {
        display: none !important;
    }
    
    .blog-cards-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Instagram Banner Mobil Stilleri */
    .instagram-banner-section {
        padding: 1.5rem 0 !important;
        margin-top: 0 !important;
    }
    
    .instagram-banner-wrapper {
        padding: 0 15px !important;
    }
    
    /* Instagram Header Mobil - 3 satır düzeni - Kesinlikle çalışmalı */
    .instagram-header {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
        gap: 0.8rem !important;
        padding: 0.5rem 0 !important;
        margin-bottom: 0.5rem !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
    
    /* İlk satır: Sadece Ad ortalanmış (ikon kaldırıldı) */
    .instagram-header-left {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 0 !important;
        flex: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }
    
    /* Masaüstü açıklamasını mobilde kesinlikle gizle */
    .instagram-description-desktop {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Mobil açıklamasını kesinlikle göster - Sadece mobilde */
    .instagram-description-mobile {
        display: block !important;
        visibility: visible !important;
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        font-size: 0.85rem !important;
        color: #666 !important;
        margin: 0 !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        height: auto !important;
        opacity: 1 !important;
        position: static !important;
        left: auto !important;
    }
    
    /* Header text içinde sadece hesap adı gösterilecek - Mobilde ortalanmış */
    .instagram-header-text {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important;
        flex: none !important;
        width: auto !important;
        min-width: auto !important;
    }
    
    .instagram-icon {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
        background: rgba(102, 126, 234, 0.1) !important;
    }
    
    .instagram-icon i {
        font-size: 1.4rem !important;
        color: #667eea !important;
    }
    
    /* İlk satırda hesap adı - Mobilde ortalanmış */
    .instagram-account-name {
        font-size: 1.1rem !important;
        white-space: normal !important;
        text-align: center !important;
        margin: 0 !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
    
    /* Mobilde header-text'i de ortala */
    .instagram-header-text {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Üçüncü satır: Takip Et butonu */
    .instagram-follow-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
        width: auto !important;
        margin: 0 auto !important;
        display: inline-flex !important;
        flex-shrink: 0 !important;
        order: 3 !important;
    }
}

/* Masaüstünde mobil açıklamasını kesinlikle gizle - Mobil media query'sinden SONRA */
@media (min-width: 769px) {
    .instagram-description-mobile {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        max-width: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Instagram Posts Mobil */
    .instagram-posts-wrapper {
        grid-template-columns: repeat(3, 1fr) !important; /* Mobilde 3 post tek satırda */
        width: 100% !important;
        display: grid !important;
        gap: 0 !important;
        grid-auto-flow: row !important;
        grid-auto-rows: auto !important;
    }
    
    /* Mobilde sadece ilk 3 postu göster - kesinlikle alt satıra geçmesin */
    .instagram-post:nth-child(n+4) {
        display: none !important;
    }
    
    .instagram-post {
        aspect-ratio: 2 / 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        position: relative !important;
        display: block !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobilde postların kesinlikle tek satırda kalması için */
    .instagram-posts-container {
        overflow-x: hidden !important;
    }
    
    .anonymous-post-content div {
        font-size: 2rem !important;
    }
}

/* Instagram Banner Bölümü - Temel Stiller */
.instagram-banner-section {
    background: transparent;
    padding: 0;
    margin-top: 0;
    width: 100%;
}

.instagram-banner-section .container {
    max-width: 100% !important;
    padding: 0 !important;
}

.instagram-banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.instagram-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

.instagram-header-left {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    min-width: 0;
}

.instagram-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
    align-items: flex-start;
    text-align: left;
}

.instagram-icon {
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.instagram-icon i {
    font-size: 1.3rem;
    color: #667eea;
}

.instagram-icon:hover {
    transform: scale(1.1);
}

.instagram-account-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    white-space: nowrap;
    text-align: left;
}

.instagram-description-desktop {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    text-align: left;
}

.instagram-description-mobile {
    display: none !important;
}



.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    background: #5568d3;
}

.instagram-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    background: #5568d3;
}

.instagram-posts-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Mobilde container'ın overflow'unu kontrol et */
@media (max-width: 768px) {
    .instagram-posts-container {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }
}

.instagram-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* Masaüstünde 8 post */
    gap: 0;
    width: 100%;
}

/* Masaüstünde sadece ilk 8 postu göster */
.instagram-post:nth-child(n+9) {
    display: none;
}

.instagram-post {
    width: 100%;
    aspect-ratio: 2 / 3; /* Genişlik:Yükseklik = 2:3 (Yükseklik:Genişlik = 3:2) */
    overflow: hidden;
    transition: opacity 0.3s ease;
    cursor: pointer;
    position: relative;
    display: block;
    background: #f0f0f0;
}

.instagram-post:hover {
    opacity: 0.9;
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.anonymous-post-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.anonymous-post-content div {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

/* Referanslar Banner Bölümü */
.references-banner-section {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.references-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.references-banner-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        );
    animation: rotateBackground 20s linear infinite;
    z-index: 1;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.references-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.references-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.references-scroll-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: scrollReferences 30s linear infinite;
    white-space: nowrap;
}

@keyframes scrollReferences {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reference-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.reference-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.reference-item:hover .reference-name {
    transform: scale(1.1);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.reference-separator {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .references-banner-section {
        padding: 3rem 0;
        margin-top: 0;
    }
    
    .reference-name {
        font-size: 1.2rem;
    }
    
    .reference-separator {
        font-size: 1.2rem;
    }
    
    .references-scroll-track {
        gap: 1.5rem;
    }
    
    .reference-item {
        gap: 1.5rem;
    }
}

/* Yönetim paneli giriş modalı (üst çubuk kullanıcı ikonu) */
.admin-login-modal[hidden] {
    display: none !important;
}

.admin-login-modal:not([hidden]) {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.admin-login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.admin-login-modal-panel {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: var(--white, #fff);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 1.75rem 1.5rem 1.5rem;
    z-index: 1;
}

.admin-login-modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
}

.admin-login-modal-close:hover {
    color: #111;
}

.admin-login-modal-title {
    font-size: 1.2rem;
    margin: 0 0 0.35rem;
    color: var(--primary-color, #2c3e50);
}

.admin-login-modal-hint {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1.25rem;
}

.admin-login-modal-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.3rem;
}

.admin-login-modal-form input[type="text"],
.admin-login-modal-form input[type="password"] {
    width: 100%;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.admin-login-modal-submit {
    width: 100%;
    padding: 0.65rem;
    margin-top: 0.25rem;
    background: var(--secondary-color, #3498db);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.admin-login-modal-submit:hover {
    opacity: 0.92;
}

