 /* === ANA SLIDER & SOSYAL MEDYA (8:4 ORANI) === */
        .hero-section {
            display: flex;
            gap: 20px;
            margin: 10px 0;
            height: 700px;
        }
        
        .slider-container {
            flex: 8;
            min-width: 0;
            height: 700px;
       
        }
        
        .social-sidebar {
            flex: 4;
            display: flex;
            flex-direction: column;
            gap: 20px;
            min-width: 0;
        }
        
        /* ANA SLIDER */
        .main-slider {
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 700px;
            position: relative;
        }
        
        .main-slide {
            position: relative;
            height: 700px;
        }
        
        .main-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .main-slide-content {
            position: absolute;
            z-index: 50;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 25px;
        }
        
        .slide-badge {
            background: var(--emergency-red);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 8px;
        }
        
        .slide-title {
            font-size: 1.5rem;
            margin-bottom: 48px;
            line-height: 1.3;
        }
             .slick-dots {
            bottom: 20px;
        }
        
        .slick-dots li button:before {
            color: white;
            opacity: 0.5;
        }
        
        .slick-dots li.slick-active button:before {
            color: white;
            opacity: 1;
        }
        .slick-dots li button:before {
    display: none !important;
    
}


.slick-dots li {
    width: auto !important;
    height: auto !important;
    border-radius: 50%;
    transition: all 0.5s ease !important;
}
.slick-dots li:hover {
   box-shadow: 0 0 10px #000;
}

.slick-dots li button {
    width: 30px !important; /* Buton genişliği */
    height: 30px !important; /* Buton yüksekliği */
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.number-dot {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #4385e2 !important;
    color: #eee !important;
    font-size: 14px !important;
    font-weight: bold !important;
    border: 0 !important;
}

.slick-dots li.slick-active .number-dot {
    background: #e63946 !important;
}

        /* SOSYAL MEDYA KUTULARI */
        .social-sidebar{
            background-color:#fff;
            width:100%;
            height:500px;
            overflow: hidden;
        }
        .social-box {
            background: var(--white);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            height: calc(50% - 10px);
            display: flex;
            flex-direction: column;
        }
        
        .social-title {
            color: var(--medical-blue);
            margin-bottom: 20px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s;
            flex: 1;
        }
        
        .social-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        
        .social-icon-wrapper {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: white;
            flex-shrink: 0;
        }
        
        .facebook-bg { background: #3b5998; }
        .twitter-bg { background: #1da1f2; }
        .instagram-bg { background: #e4405f; }
        .youtube-bg { background: #ff0000; }
      

/* Responsive */
@media (max-width: 768px) {
    .image-progress-wrapper {
        bottom: 20px;
        width: 95%;
    }
    
    .image-progress-bar {
        height: 6px;
    }
    
    .image-progress-fill::after {
        width: 16px;
        height: 16px;
    }
    
    .progress-percent {
        top: -30px;
        font-size: 12px;
        padding: 3px 10px;
    }
}
/* Dots'ları container'ın DIŞINA al */
.slider-container {
    position: relative;
}

.custom-dots {
    position: absolute !important;
    bottom: -50px !important; /* Slider'ın DIŞINA */
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 20px !important;
    padding: 0 !important;
    list-style: none !important;
}

.custom-dot {
    position: absolute;
    z-index: inherit;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #4385e2 !important;
    color: white !important;
    border: 3px solid white !important;
    font-weight: bold !important;
    font-size: 16px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2) !important;
    transition: all 0.3s !important;
}

.custom-dot:hover {
    background: #2a6fd6 !important;
    transform: translateY(-3px);
}

.custom-dot.slick-active {
    background: #e63946 !important;
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}