/* ===================================
   HOSPITALS PAGE STYLES
   =================================== */

.page-header {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(11, 44, 84, 0.9) 0%, rgba(11, 44, 84, 0.4) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FF6B35;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: #FFFFFF;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.hospitals-grid-section {
    padding-bottom: 80px;
}

/* Customizing existing hospital-card for this page if needed */
.hospitals-grid-section .hospital-card {
    margin-bottom: 30px;
}

/* Call to Action Section */
.hospitals-cta {
    padding: 80px 0;
    background: #F8FAFC;
    text-align: center;
}

.cta-box {
    background: #FFFFFF;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(11, 44, 84, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #0B2C54;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
}

/* Hospital Detail Specifics */
.stat-pill {
    background: var(--doruk-white);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.unit-item-small {
    transition: all 0.3s ease;
}

.unit-item-small:hover {
    background: var(--doruk-primary);
    transform: translateY(-5px);
}

.unit-item-small:hover span {
    color: var(--doruk-white) !important;
}

.hospital-featured-image {
    box-shadow: 0 20px 60px rgba(11, 44, 84, 0.1);
}

.bg-primary {
    background-color: var(--doruk-primary) !important;
}

.text-orange {
    color: var(--doruk-accent) !important;
}

@media (max-width: 991px) {
    .hospital-info-box {
        text-align: center;
    }
    .hospital-stats-row {
        justify-content: center;
    }
    .action-buttons {
        justify-content: center;
    }
}

/* New Alternating Rows Layout */
.hospitals-list-rows .hospital-row {
    padding: 20px 0;
}

.hospital-visual {
    box-shadow: 0 30px 60px rgba(11, 44, 84, 0.12);
    border-radius: 0 !important; /* Sharp corners */
    overflow: hidden;
}

.hospital-visual img {
    transition: transform 0.8s ease;
}

.hospital-row:hover .hospital-visual img {
    transform: scale(1.05);
}

.hospital-title {
    color: var(--doruk-primary);
    margin-bottom: 24px;
    font-size: 42px; /* Matching homepage promotion-title */
    font-weight: 800;
    line-height: 1.2;
}

.hospital-desc {
    font-size: 16px; /* Matching homepage promotion-description */
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--doruk-text-light);
}

.btn-outline-orange {
    border: 2px solid var(--doruk-accent);
    color: var(--doruk-accent);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-orange:hover {
    background: var(--doruk-accent);
    color: #fff;
}

@media (max-width: 991px) {
    .hospital-text-content {
        text-align: center !important;
        margin-top: 30px;
    }
    .hospital-stats, .hospital-actions {
        justify-content: center !important;
    }
}
