/* Slider Metin Düzeltmeleri */
.sw-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    text-align: left;
}

.sw-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.sw-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
    max-width: 600px;
}

.sw-caption .btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255,255,255,0.9);
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none;
}

.sw-caption .btn-main:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .sw-caption h1 {
        font-size: 2.5rem;
    }
    
    .sw-caption p {
        font-size: 1rem;
    }
    
    .sw-caption {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .sw-caption h1 {
        font-size: 2rem;
    }
    
    .sw-caption p {
        font-size: 0.9rem;
    }
}

/* HİZMETLER KARTLARI (services) */
.service-card {
    position: relative;
    min-height: 420px;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #222;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, background 0.3s;
}
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.service-card .service-detail-btn {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    color: #fff;
    padding: 14px 36px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
    z-index: 10;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}
.service-card:hover .service-detail-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 32px rgba(0,123,255,0.25);
}
.service-detail-btn:hover {
    background: #0056b3;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.13);
}
.service-card .abs.z-2.bottom-0.mb-3.w-100.text-center.hover-op-0 h4 {
    position: relative;
    z-index: 11;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.service-card:hover {
    background: #222;
    box-shadow: 0 8px 32px rgba(0,123,255,0.10);
}
.service-card .bg-color {
    background: transparent !important;
}

/* Responsive grid için */
@media (max-width: 991px) {
    .service-card {
        min-height: 380px;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .service-card {
        min-height: 320px;
    }
    .service-card img {
        height: 160px;
    }
    .service-card .service-detail-btn {
        font-size: 1rem;
        padding: 10px 22px;
    }
} 