/**
 * Banner Overlay Düzeltmeleri
 * Services bloklarının banner üzerine gelmesi
 */

/* Banner slider z-index */
.prt-slider-wrapper {
    position: relative;
    z-index: 1;
}

/* Services section bannerın ALTINDA - 60px boşluk */
.broken-section {
    margin-top: 60px !important;      /* Banner ile 60px boşluk */
    position: relative !important;
    z-index: 1 !important;            /* Normal akış */
}

.broken-section .container { position: relative; z-index: 1; }

/* Services row içeriği */
.broken-section .mt_105 {
    margin-top: 105px;
}

/* Services kartları background beyaz */
.broken-section .featured-icon-box {
    background: white !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
    border-top: 4px solid #ff6b35 !important; /* Üst çerçeve - turuncu */
    padding: 40px 30px !important;
    transition: all 0.3s !important;
    min-height: 350px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Icon ve numara */
.broken-section .featured-icon {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    margin-bottom: 20px !important;
}

/* Başlık ve açıklama görünür */
.broken-section .featured-content {
    flex: 1 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.broken-section .featured-title,
.broken-section .featured-desc {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.broken-section .featured-title h3 {
    margin-bottom: 15px !important;
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.broken-section .featured-desc p {
    margin-bottom: 20px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

/* Read More buton */
.broken-section .prt-iconbox-button {
    margin-top: auto !important;
    display: block !important;
}

.broken-section .featured-icon-box:hover {
    box-shadow: 0 15px 60px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Banner dots kaldır */
.banner-slider .slick-dots {
    display: none !important;
}

/* Banner arrows stili */
.banner-slider .slick-prev,
.banner-slider .slick-next {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 50% !important;
    z-index: 1000 !important;
    transition: all 0.3s !important;
}

.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover {
    background: rgba(255,107,53,0.9) !important;
    transform: scale(1.1) !important;
}

.banner-slider .slick-prev {
    left: 30px !important;
}

.banner-slider .slick-next {
    right: 30px !important;
}

.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
    font-size: 24px !important;
    color: white !important;
    font-weight: bold !important;
}

/* Mobilde ok butonlarını gizle */
@media (max-width: 768px) {
    .banner-slider .slick-prev,
    .banner-slider .slick-next {
        display: none !important;
    }
    
    .broken-section { margin-top: 40px !important; }
}

/* Tablet */
@media (max-width: 992px) {
    .broken-section { margin-top: 50px !important; }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .broken-section { margin-top: 80px !important; }
}

