/* ===================================
   HOSPITALS SHOWCASE SECTION
   =================================== */

.hospitals-showcase {
    padding: 80px 0;
    background: #FFFFFF;
}

/* Section Header */
.hospitals-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hospitals-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0B2C54;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.hospitals-section-title::before {
    content: 'HASTANELER';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF6B35;
    text-transform: uppercase;
}

.hospitals-section-description {
    font-size: 18px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.hospital-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 480px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hospital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 44, 84, 0.3) 0%, rgba(11, 44, 84, 0.85) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.hospital-card:hover::before {
    background: linear-gradient(180deg, rgba(11, 44, 84, 0.2) 0%, rgba(11, 44, 84, 0.75) 100%);
}

.hospital-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(11, 44, 84, 0.25);
}

.hospital-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hospital-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hospital-card:hover .hospital-card-image img {
    transform: scale(1.1);
}

.hospital-card-header {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hospital-title {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hospital-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.btn-discover-hospital {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #FFFFFF;
    color: #0B2C54;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-discover-hospital:hover {
    background: #FF6B35;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-discover-hospital i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-discover-hospital:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .hospitals-showcase {
        padding: 60px 0;
    }

    .hospital-card {
        height: 420px;
    }

    .hospital-title {
        font-size: 22px;
    }

    .hospital-card-header {
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .hospitals-showcase {
        padding: 40px 0;
    }

    .hospital-card {
        height: 380px;
    }

    .hospital-title {
        font-size: 20px;
    }

    .hospital-description {
        font-size: 14px;
        opacity: 1;
        transform: translateY(0);
    }

    .btn-discover-hospital {
        opacity: 1;
        transform: translateY(0);
    }

    .hospital-card-header {
        padding: 24px 20px;
    }
}