/* Content Image Slider Styles */
.content-image-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 80px;
}

.content-slider-container {
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 1;
}

.content-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.content-slide.active {
    display: block;
    opacity: 1;
}

.content-slide-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
    position: relative;
    z-index: 2;
}

.content-slide-image {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.content-slide-text {
    flex: 1;
    max-width: 50%;
}

.content-slide-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.content-slide-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666666;
    margin: 0 0 20px 0;
    font-style: italic;
}

.content-slide-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 30px 0;
}

.content-slide-button {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: none;
    padding: 0;
}

.content-slide-button img {
    transition: all 0.3s ease;
    display: block;
}

.content-slide-button:hover img {
    transform: scale(1.05);
}

.content-slide-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Navigation Styles - Desktop Only */
.content-image-slider-navigation.desktop-only {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Hide desktop navigation on mobile/tablet */
@media (max-width: 1024px) {
    .content-image-slider-navigation.desktop-only {
        display: none !important;
    }
}

.content-image-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    border-radius: 50px;
}

.content-image-slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.content-image-slider-nav svg {
    width: 24px;
    height: 24px;
    color: #333333;
}

.content-image-slider-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.content-image-prev {
    left: -60px;
}

.content-image-next {
    right: -60px;
}

/* Slide Indicators/Dots */
.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.slide-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Hide dots on desktop, show on mobile/tablet */
@media (min-width: 1025px) {
    .slide-indicators {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-slide-content {
        gap: 40px;
    }
    
    .content-slide-title {
        font-size: 2rem;
    }
    
    /* Tablet'te buton logoyu gizle */
    .content-slide-button {
        display: none !important;
    }
    
    /* Tablet navigation - hide arrows, show dots */
    .content-image-slider-navigation {
        display: none; /* Okları gizle */
    }
}

@media (max-width: 768px) {
    .content-image-slider-wrapper {
        padding: 20px 15px;
    }
    
    .content-slide-content {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .content-slide-text,
    .content-slide-image {
        max-width: 100%;
        order: 0;
    }
    
    .content-slide-image {
        order: 1;
    }
    
    .content-slide-text {
        order: 2;
    }
    
    .content-slide-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .content-slide-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .content-slide-description {
        text-align: center;
    }
    
    .content-slide-button {
        display: none !important; /* Tablet ve mobilde buton logoyu gizle */
    }
    
    /* Mobile navigation - hide arrows, show dots */
    .content-image-slider-navigation {
        display: none; /* Okları gizle */
    }
    
    /* Mobile navigation - keep on sides */
    .content-image-slider-wrapper[data-mobile-nav="sides"] .content-image-slider-navigation {
        position: absolute;
        top: 50%;
        width: 100%;
        justify-content: space-between;
        margin-top: 0;
    }
    
    .content-image-slider-wrapper[data-mobile-nav="sides"] .content-image-prev {
        position: absolute;
        left: -30px;
    }
    
    .content-image-slider-wrapper[data-mobile-nav="sides"] .content-image-next {
        position: absolute;
        right: -30px;
    }
}

@media (max-width: 480px) {
    .content-slide-title {
        font-size: 1.5rem;
    }
    
    .content-slide-subtitle {
        font-size: 1rem;
    }
    
    .content-slide-description {
        font-size: 0.9rem;
    }
    
    /* Mobilde buton logoyu gizle */
    .content-slide-button {
        display: none !important;
    }
    
    .content-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .content-slider-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* Animation Effects */
.content-slide-image {
    animation: slideInLeft 0.6s ease-out;
}

.content-slide-text > * {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Elementor Editor Fixes */
.elementor-editor-active .content-slide {
    display: block !important;
    opacity: 1 !important;
}

.elementor-editor-active .content-slide:not(.active) {
    display: none !important;
} 