
/**
 * Slider Component Styles
 * Tüm slider tasarımları için CSS
 */

/* ========================================
   CLASSIC SLIDER - Klasik Tam Genişlik
   ======================================== */
.classic-slider-section {
    padding: 20px 0 0 0;
    margin: 0;
}

.classic-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.classic-slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
}

.classic-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.classic-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.classic-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.classic-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.classic-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.classic-slide-content-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.classic-slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: white;
}

.classic-category-badge {
    display: inline-block;
    padding: 8px 20px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.classic-slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.classic-slide-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.classic-slide-title a:hover {
    opacity: 0.9;
}

.classic-slide-excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 800px;
}

.classic-slide-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.classic-meta-date,
.classic-meta-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Classic Slider Navigation */
.classic-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.classic-slider-prev {
    left: 30px;
}

.classic-slider-next {
    right: 30px;
}

.classic-slider-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.classic-slider-nav svg {
    width: 24px;
    height: 24px;
}

/* Classic Slider Pagination */
.classic-slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.classic-pagination-dot {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.classic-pagination-dot:hover {
    background: rgba(255,255,255,0.6);
}

.classic-pagination-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ========================================
   HERO SECTION - SLIDER
   ======================================== */
.hero-section {
    padding: 20px 0 0 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    min-height: 480px;
}

.hero-main-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    position: relative;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-main-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.hero-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: white;
}

.hero-category {
    display: inline-block;
    padding: 6px 16px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-main-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-main-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.hero-date,
.hero-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
}

.hero-main-slider:hover .hero-slider-nav {
    opacity: 1;
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-nav svg {
    width: 24px;
    height: 24px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(255,255,255,0.5);
}

.hero-slider-dot.active {
    transform: scale(1.2);
}

.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    z-index: 10;
}

.hero-slider-progress-bar {
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

.hero-side-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-side-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hero-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-side-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hero-side-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 165px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.hero-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    color: white;
}

.hero-category-small {
    display: inline-block;
    padding: 4px 10px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hero-side-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ========================================
   FULLWIDTH SLIDER
   ======================================== */
.fullwidth-slider-section {
    padding: 20px 0 0 0;
    margin: 0;
}

.fullwidth-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fullwidth-slider-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 12px;
}

.fullwidth-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.fullwidth-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.fullwidth-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.fullwidth-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fullwidth-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.fullwidth-slide-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.fullwidth-category {
    display: inline-block;
    padding: 8px 20px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.fullwidth-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto 20px;
    max-width: 900px;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.fullwidth-title a {
    color: white;
    text-decoration: none;
}

.fullwidth-excerpt {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 auto 25px;
    max-width: 700px;
    color: rgba(255,255,255,0.95);
}

.fullwidth-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.fullwidth-read-more {
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fullwidth-read-more:hover {
    transform: translateY(-2px);
}

.fullwidth-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.fullwidth-slider-prev {
    left: 40px;
}

.fullwidth-slider-next {
    right: 40px;
}

.fullwidth-slider-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.fullwidth-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.fullwidth-pagination-dot {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.fullwidth-pagination-dot:hover {
    background: rgba(255,255,255,0.6);
}

.fullwidth-pagination-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.fullwidth-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.3);
    z-index: 10;
}

.fullwidth-progress-bar {
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   DUAL SLIDER - Sol Büyük + Sağ Küçük
   ======================================== */
.dual-slider-section {
    padding: 20px 0 0 0;
    margin: 0;
}

.dual-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dual-slider-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Sol: Büyük Slider */
.dual-main-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.dual-main-track {
    position: relative;
    width: 100%;
    height: 500px;
}

.dual-main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.dual-main-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.dual-main-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.dual-main-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dual-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.dual-main-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: white;
}

.dual-main-category {
    display: inline-block;
    padding: 6px 16px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.dual-main-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.dual-main-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sol Slider Navigation */
.dual-main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dual-main-prev {
    left: 20px;
}

.dual-main-next {
    right: 20px;
}

.dual-main-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.dual-main-nav svg {
    width: 24px;
    height: 24px;
}

/* Sol Slider Sayfa Numaraları */
.dual-main-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 20px;
}

.dual-main-number {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 6px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.dual-main-number:hover {
    transform: translateY(-2px);
}

.dual-main-number.active {
    transform: scale(1.1);
}

.dual-main-total {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    background: rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

/* Sağ: Küçük Slider */
.dual-side-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.dual-side-track {
    position: relative;
    width: 100%;
    height: 500px;
}

.dual-side-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.dual-side-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.dual-side-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.dual-side-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dual-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.dual-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: white;
}

.dual-side-category {
    display: inline-block;
    padding: 4px 12px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.dual-side-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Sağ Slider Navigation Arrows */
.dual-side-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
}

.dual-side-slider:hover .dual-side-nav {
    opacity: 1;
}

.dual-side-prev {
    left: 10px;
}

.dual-side-next {
    right: 10px;
}

.dual-side-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.dual-side-nav svg {
    width: 20px;
    height: 20px;
}

/* Sağ Slider Nokta Göstergeleri */
.dual-side-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dual-side-dot {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dual-side-dot:hover {
    background: rgba(255,255,255,0.5);
}

.dual-side-dot.active {
    transform: scale(1.3);
}

/* ========================================
   GRID SLIDER
   ======================================== */
.grid-slider-section {
    padding: 20px 0 0 0;
    background: #f8f9fa;
}

.grid-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-slider-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.grid-main-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    height: 100%;
}

.grid-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.grid-main-link {
    display: block;
    text-decoration: none;
}

.grid-main-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grid-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.grid-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: white;
}

.grid-category {
    display: inline-block;
    padding: 6px 16px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.grid-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.grid-main-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.grid-main-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.grid-date,
.grid-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.grid-side-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 500px;
}

.grid-side-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    min-height: 0;
}

.grid-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.grid-side-link {
    display: flex;
    text-decoration: none;
    height: 100%;
    min-height: 0;
}

.grid-side-image {
    width: 140px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.grid-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.grid-side-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-category-small {
    display: inline-block;
    padding: 4px 10px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.grid-side-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-side-date {
    font-size: 12px;
    color: #666;
}

/* ========================================
   CAROUSEL SLIDER - Yatay Kaydırılabilir Kartlar
   ======================================== */
.carousel-slider-section {
    padding: 20px 0 0 0;
    margin: 0;
    position: relative;
}

.carousel-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carousel-slider-container {
        padding: 0;
        overflow: visible;
        max-width: 100%;
    }
}

.carousel-slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 0;
}

.carousel-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

@media (max-width: 768px) {
    .carousel-slider-track {
        gap: 0 !important;
    }
}

.carousel-slide {
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: calc((100% - 48px) / 4);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.carousel-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.carousel-slide-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.carousel-slide-image {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.carousel-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    padding: 8px 16px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.carousel-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: white;
}

.carousel-slide-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
}

.carousel-slide-date svg {
    width: 16px;
    height: 16px;
}

.carousel-slide-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    color: #0073aa;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: white;
    color: #333;
    transform: translateY(-50%) scale(1);
}

.carousel-prev {
    left: -30px;
}

.carousel-next {
    right: -30px;
}

.carousel-nav svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

/* Pagination Dots - Removed */
.carousel-pagination {
    display: none;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .carousel-slider-track {
        gap: 12px;
    }
    
    .carousel-slide {
        flex: 0 0 calc((100% - 24px) / 3);
        min-width: calc((100% - 24px) / 3);
    }
    
    .carousel-slide-image {
        height: 380px;
    }
    
    .carousel-slide-title {
        font-size: 16px;
    }
    
    .carousel-prev {
        left: -25px;
    }
    
    .carousel-next {
        right: -25px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .carousel-slider-track {
        gap: 0;
    }
    
    .carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
    
    .carousel-slide-image {
        height: 380px;
    }
    
    .carousel-slide-content {
        padding: 20px;
    }
    
    .carousel-slide-title {
        font-size: 16px;
    }
    
    .carousel-nav {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        max-width: 45px !important;
        max-height: 45px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        opacity: 1 !important;
    }
    
    .carousel-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .carousel-prev {
        left: 10px !important;
        right: auto !important;
    }
    
    .carousel-next {
        right: 10px !important;
        left: auto !important;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-slide-image {
        height: 350px;
    }
    
    .carousel-category-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .carousel-slide-content {
        padding: 20px 15px;
    }
    
    .carousel-slide-title {
        font-size: 16px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-prev {
        left: -15px;
    }
    
    .carousel-next {
        right: -15px;
    }
}

/* Dark Mode */
.dark-mode .carousel-slider-section {
    background: transparent;
}

.dark-mode .carousel-slide {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.dark-mode .carousel-slide:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.dark-mode .carousel-category-badge {
    color: #ffffff;
}

.dark-mode .carousel-slide-title {
    color: #ffffff;
}

.dark-mode .carousel-slide-date {
    color: rgba(255,255,255,0.9);
}

.dark-mode .carousel-nav {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.dark-mode .carousel-nav:hover {
    background: rgba(255,255,255,0.25);
    color: #ffffff;
}

.dark-mode .carousel-nav:disabled {
    background: rgba(255,255,255,0.05);
}

.dark-mode .carousel-dot {
    border-color: rgba(255,255,255,0.8);
}

.dark-mode .carousel-dot.active {
    background: #ffffff;
}

/* ========================================
   MEGA SLIDER - 3 Büyük Kart Fullwidth
   ======================================== */
.mega-slider-section {
    padding: 0;
    margin: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.mega-slider-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.mega-slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 0;
}

.mega-slider-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.mega-slide {
    flex: 0 0 calc(100% / 3);
    min-width: calc(100% / 3);
    position: relative;
    overflow: hidden;
}

.mega-slide-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.mega-slide-image {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mega-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.mega-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    z-index: 2;
    color: white;
}

.mega-slide-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: white;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mega-slide-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Navigation Arrows */
.mega-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.mega-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

.mega-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.mega-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1);
}

.mega-prev {
    left: 30px;
}

.mega-next {
    right: 30px;
}

.mega-nav svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .mega-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
    
    .mega-slide-image {
        height: 450px;
    }
    
    .mega-slide-title {
        font-size: 28px;
    }
    
    .mega-slide-content {
        padding: 40px 30px;
    }
    
    .mega-nav {
        width: 60px;
        height: 60px;
    }
    
    .mega-nav svg {
        width: 28px;
        height: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .mega-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .mega-slide-image {
        height: 380px;
    }
    
    .mega-slide-title {
        font-size: 22px;
    }
    
    .mega-slide-excerpt {
        font-size: 15px;
        -webkit-line-clamp: 1;
    }
    
    .mega-slide-content {
        padding: 25px 20px;
    }
    
    .mega-nav {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        max-width: 40px !important;
        max-height: 40px !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
        opacity: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }
    
    .mega-nav svg {
        width: 18px !important;
        height: 18px !important;
        stroke-width: 2.5 !important;
    }
    
    .mega-prev {
        left: 10px !important;
        right: auto !important;
    }
    
    .mega-next {
        right: 10px !important;
        left: auto !important;
    }
    
    .mega-nav:active {
        transform: translateY(-50%) scale(0.9) !important;
    }
}

/* Dark Mode */
.dark-mode .mega-slider-section {
    background: #000;
}

.dark-mode .mega-slide-title {
    color: #ffffff;
}

.dark-mode .mega-slide-excerpt {
    color: rgba(255,255,255,0.95);
}

.dark-mode .mega-nav {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.dark-mode .mega-nav:hover {
    background: rgba(255,255,255,0.25);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .classic-slider-wrapper {
        height: 500px;
    }
    
    .classic-slide-title {
        font-size: 38px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-main-slider {
        grid-row: span 1;
        min-height: 400px;
    }
    
    .hero-slider-wrapper {
        min-height: 400px;
    }
    
    .hero-side-cards {
        flex-direction: row;
    }
    
    .hero-side-image {
        min-height: 200px;
    }
    
    .fullwidth-slider-wrapper {
        height: 550px;
    }
    
    .fullwidth-title {
        font-size: 42px;
    }
    
    .grid-slider-wrapper {
        grid-template-columns: 1fr;
    }
    
    .grid-side-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .grid-side-card {
        flex: 1;
        min-width: 250px;
    }
    
    /* Dual Slider Responsive - 1024px */
    .dual-slider-prev {
        left: 10px;
    }
    
    .dual-slider-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .classic-slider-wrapper {
        height: 400px;
    }
    
    .classic-slide-content {
        padding: 40px 20px;
    }
    
    .classic-slide-title {
        font-size: 28px;
    }
    
    .classic-slide-excerpt {
        font-size: 16px;
    }
    
    .classic-slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .hero-section {
        padding: 0;
        margin-bottom: 0 !important;
    }
    
    .classic-slider-section,
    .fullwidth-slider-section,
    .dual-slider-section,
    .grid-slider-section {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .hero-grid {
        gap: 15px;
    }
    
    .hero-main-slider {
        min-height: 350px;
    }
    
    .hero-slider-wrapper {
        min-height: 350px;
    }
    
    .hero-main-content {
        padding: 30px 25px;
    }
    
    .hero-main-title {
        font-size: 24px;
    }
    
    .hero-main-excerpt {
        font-size: 14px;
    }
    
    .hero-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-prev {
        left: 15px;
    }
    
    .hero-slider-next {
        right: 15px;
    }
    
    .hero-side-cards {
        flex-direction: column;
    }
    
    .hero-side-image {
        min-height: 180px;
    }
    
    .fullwidth-slider-wrapper {
        height: 450px;
    }
    
    .fullwidth-title {
        font-size: 32px;
    }
    
    .fullwidth-excerpt {
        font-size: 16px;
    }
    
    .fullwidth-slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .grid-main-image {
        height: 350px;
    }
    
    .grid-side-cards {
        flex-direction: column;
        height: auto;
    }
    
    .grid-side-card {
        min-height: 120px;
    }
    
    .grid-side-image {
        width: 120px;
        height: 120px;
    }
    
    /* Dual Slider Responsive - 768px */
    .dual-main-track,
    .dual-side-track {
        height: 350px;
    }
    
    .dual-main-content {
        padding: 30px 25px;
    }
    
    .dual-main-title {
        font-size: 22px;
    }
    
    .dual-side-title {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .classic-slider-wrapper {
        height: 350px;
    }
    
    .classic-slide-content {
        padding: 30px 15px;
    }
    
    .classic-slide-title {
        font-size: 24px;
    }
    
    .classic-slider-nav {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        padding: 0 !important;
        border-radius: 50% !important;
    }
    
    .classic-slider-nav svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .classic-slider-prev {
        left: 10px !important;
    }
    
    .classic-slider-next {
        right: 10px !important;
    }
    
    .classic-slide-excerpt {
        font-size: 14px;
    }
    
    .classic-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .classic-slider-prev {
        left: 15px;
    }
    
    .classic-slider-next {
        right: 15px;
    }
    
    .hero-main-slider {
        min-height: 300px;
        border-radius: 8px;
    }
    
    .hero-slider-wrapper {
        min-height: 300px;
    }
    
    .hero-main-content {
        padding: 25px 20px;
    }
    
    .hero-main-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .hero-main-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 1;
    }
    
    .hero-main-meta {
        font-size: 12px;
        gap: 15px;
    }
    
    .hero-slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .hero-slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-side-image {
        min-height: 150px;
    }
    
    .hero-side-content {
        padding: 15px;
    }
    
    .hero-side-title {
        font-size: 13px;
    }
    
    .fullwidth-slider-wrapper {
        height: 400px;
    }
    
    .fullwidth-title {
        font-size: 26px;
    }
    
    .fullwidth-excerpt {
        font-size: 14px;
    }
    
    .fullwidth-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .grid-main-image {
        height: 300px;
    }
    
    .grid-main-content {
        padding: 25px;
    }
    
    .grid-main-title {
        font-size: 24px;
    }
    
    .grid-side-cards {
        height: auto;
    }
    
    .grid-side-card {
        min-height: 100px;
    }
    
    .grid-side-image {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   DARK MODE - ALL SLIDERS
   ======================================== */

/* Classic Slider Dark Mode */
.dark-mode .classic-slider-section {
    background: transparent;
}

.dark-mode .classic-category-badge {
    color: #ffffff;
}

.dark-mode .classic-slide-title,
.dark-mode .classic-slide-title a {
    color: #ffffff;
}

.dark-mode .classic-slide-excerpt {
    color: rgba(255,255,255,0.95);
}

.dark-mode .classic-slide-meta {
    color: rgba(255,255,255,0.9);
}

/* Hero Section Dark Mode */
.dark-mode .hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.dark-mode .hero-category,
.dark-mode .hero-category-small {
    color: #ffffff;
}

.dark-mode .hero-main-title,
.dark-mode .hero-side-title {
    color: #ffffff;
}

.dark-mode .hero-main-excerpt {
    color: rgba(255,255,255,0.9);
}

.dark-mode .hero-main-meta {
    color: rgba(255,255,255,0.8);
}

/* Fullwidth Slider Dark Mode */
.dark-mode .fullwidth-slider-section {
    background: transparent;
}

.dark-mode .fullwidth-category {
    color: #ffffff;
}

.dark-mode .fullwidth-title,
.dark-mode .fullwidth-title a {
    color: #ffffff;
}

.dark-mode .fullwidth-excerpt {
    color: rgba(255,255,255,0.95);
}

.dark-mode .fullwidth-meta {
    color: rgba(255,255,255,0.9);
}

.dark-mode .fullwidth-read-more {
    color: #ffffff;
}

/* Dual Slider Dark Mode */
.dark-mode .dual-slider-section {
    background: transparent;
}

.dark-mode .dual-main-category,
.dark-mode .dual-side-category {
    color: #ffffff;
}

.dark-mode .dual-main-title,
.dark-mode .dual-side-title {
    color: #ffffff;
}

.dark-mode .dual-main-excerpt {
    color: rgba(255,255,255,0.9);
}

/* Grid Slider Dark Mode */
.dark-mode .grid-slider-section {
    background: #0d0d0d;
}

.dark-mode .grid-main-card,
.dark-mode .grid-side-card {
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.dark-mode .grid-main-card:hover,
.dark-mode .grid-side-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.dark-mode .grid-category,
.dark-mode .grid-category-small {
    color: #ffffff;
}

.dark-mode .grid-main-title {
    color: #ffffff;
}

.dark-mode .grid-main-excerpt {
    color: rgba(255,255,255,0.9);
}

.dark-mode .grid-main-meta {
    color: rgba(255,255,255,0.8);
}

.dark-mode .grid-side-card {
    background: #1a1a1a;
}

.dark-mode .grid-side-title {
    color: #ffffff;
}

.dark-mode .grid-side-date {
    color: #999;
}

/* Navigation Buttons Dark Mode */
.dark-mode .classic-slider-nav,
.dark-mode .hero-slider-nav,
.dark-mode .fullwidth-slider-nav,
.dark-mode .dual-main-nav,
.dark-mode .dual-side-nav {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
}

.dark-mode .classic-slider-nav:hover,
.dark-mode .hero-slider-nav:hover,
.dark-mode .fullwidth-slider-nav:hover,
.dark-mode .dual-main-nav:hover,
.dark-mode .dual-side-nav:hover {
    color: #ffffff;
}

/* Pagination Dots Dark Mode */
.dark-mode .classic-pagination-dot,
.dark-mode .hero-slider-dot,
.dark-mode .fullwidth-pagination-dot,
.dark-mode .dual-main-number,
.dark-mode .dual-side-dot {
    border-color: rgba(255,255,255,0.8);
}

.dark-mode .classic-pagination-dot.active,
.dark-mode .hero-slider-dot.active,
.dark-mode .fullwidth-pagination-dot.active {
    transform: scale(1.2);
}

.dark-mode .dual-main-number {
    background: rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.8);
    color: #ffffff;
}

.dark-mode .dual-main-number:hover {
    transform: translateY(-2px);
}

.dark-mode .dual-main-number.active {
    transform: scale(1.1);
}

.dark-mode .dual-main-total {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.8);
}

.dark-mode .dual-side-dot.active {
    transform: scale(1.3);
}

/* Progress Bar Dark Mode */
.dark-mode .hero-slider-progress,
.dark-mode .fullwidth-slider-progress {
    background: rgba(255,255,255,0.2);
}

.dark-mode .hero-slider-progress-bar,
.dark-mode .fullwidth-progress-bar {
    /* Dynamic color applied via primary-color.php */
}

/* ========================================
   NUMBERED SLIDER - Sol Numara, Sağ Görsel + Overlay Başlık
   ======================================== */
.numbered-slider-section {
    padding: 20px 0 0 0;
    margin: 0;
    background: #f5f5f5;
}

.numbered-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.numbered-slider-wrapper {
    position: relative;
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    min-height: 420px;
}

/* Sol Taraf - Numaralar */
.numbered-slider-nav {
    flex: 0 0 70px;
    background: #2c3e50;
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 5;
}

.numbered-nav-item {
    flex: 0 0 calc(100% / 8);
    min-height: calc(420px / 8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
}

.numbered-nav-item:hover {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.05);
}

.numbered-nav-item.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
    font-size: 22px;
}

/* Sağ Taraf - Görsel + Başlık */
.numbered-slider-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.numbered-image-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.numbered-image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.numbered-image-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.numbered-image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.numbered-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Sol Taraf Karartma Overlay */
.numbered-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(to right, rgba(20,30,48,0.95) 0%, rgba(20,30,48,0.85) 50%, transparent 100%);
    z-index: 2;
}

/* Başlık - Sol Tarafta Beyaz */
.numbered-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: flex-end;
    padding: 60px 50px;
    z-index: 3;
}

.numbered-title-text {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Progress Bar */
.numbered-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}

.numbered-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0.1s linear;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .numbered-slider-wrapper {
        min-height: 450px;
    }
    
    .numbered-slider-nav {
        flex: 0 0 60px;
    }
    
    .numbered-nav-item {
        font-size: 18px;
    }
    
    .numbered-nav-item.active {
        font-size: 20px;
    }
    
    .numbered-slider-content {
        min-height: 450px;
    }
    
    .numbered-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .numbered-title-overlay {
        padding: 50px 40px;
    }
    
    .numbered-title-text {
        font-size: 28px;
        line-height: 1.3;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .numbered-slider-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .numbered-slider-content {
        height: 320px;
        min-height: 320px;
        position: relative;
    }
    
    .numbered-image-track {
        height: 100%;
    }
    
    .numbered-image-item {
        height: 100%;
    }
    
    .numbered-image-link {
        display: block;
        height: 100%;
    }
    
    .numbered-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .numbered-image-overlay {
        display: none;
    }
    
    .numbered-title-overlay {
        display: none;
    }
    
    .numbered-title-text {
        display: none;
    }
    
    .numbered-mobile-title {
        width: 100%;
        padding: 15px 20px;
        background: #34495e;
        color: #fff;
        font-size: 15px;
        line-height: 1.5;
        font-weight: 700;
        word-wrap: break-word;
        margin: 0;
        order: 2;
    }
    
    .numbered-slider-nav {
        flex: 0 0 50px;
        flex-direction: row;
        padding: 0;
        order: 3;
    }
    
    .numbered-nav-item {
        flex: 1;
        min-height: 50px;
        font-size: 14px !important;
        font-weight: 600 !important;
        padding: 0 5px !important;
    }
    
    .numbered-nav-item.active {
        font-size: 16px !important;
        font-weight: 700 !important;
    }
    
    /* Mobil Navigation Arrows - Küçük Boyut */
    .numbered-mobile-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.9) !important;
        color: #333 !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        opacity: 0.8 !important;
    }
    
    .numbered-mobile-arrow:hover,
    .numbered-mobile-arrow:active {
        opacity: 1 !important;
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .numbered-mobile-arrow svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .numbered-mobile-prev {
        left: 8px !important;
    }
    
    .numbered-mobile-next {
        right: 8px !important;
    }
}

/* Dark Mode */
.dark-mode .numbered-slider-section {
    background: #0d0d0d;
}

.dark-mode .numbered-slider-wrapper {
    background: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.dark-mode .numbered-slider-nav {
    background: #1a1a1a;
}

.dark-mode .numbered-slide-title {
    color: #ffffff;
}