/* Hospital Main Image */
.hospital-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hospital Header */
.hospital-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hospital-name {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Rating Section */
.rating-section {
    margin-bottom: 1.5rem;
}

.stars {
    display: inline-block;
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-count {
    color: #718096;
    margin-left: 8px;
}

/* Hospital Meta */
.hospital-meta {
    display: grid;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
}

.meta-item i {
    width: 20px;
    color: #4299e1;
}

/* About Section */
.about-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.about-section h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Doctors Section */
.doctors-section {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    color: #2d3748;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Doctor Card */
.doctor-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.doctor-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f7fafc;
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.doctor-content {
    padding: 1.5rem;
}

/* Doctor Rating */
.doctor-rating {
    font-size: 0.9rem;
}

.doctor-rating .fa-star {
    color: #e2e8f0;
}

.doctor-rating .text-warning {
    color: #ffc107 !important;
}

/* Doctor Info */
.doctor-name {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.doctor-specialty {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.doctor-info {
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-item i {
    width: 16px;
    text-align: center;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.btn-view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: transparent;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-view-profile:hover {
    background-color: #f8fafc;
    color: #0d6efd;
    text-decoration: none;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #0d6efd;
    color: white;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
}

.btn-book:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
    color: white;
    text-decoration: none;
}

.btn-view-profile i,
.btn-book i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* No Doctors Message */
.no-doctors {
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 8px;
}

.no-doctors i {
    font-size: 3rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.no-doctors p {
    color: #718096;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hospital-header {
        margin-top: 1.5rem;
    }

    .hospital-name {
        font-size: 2rem;
    }

    .hospital-meta {
        grid-template-columns: 1fr;
    }

    .doctor-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .action-buttons {
        flex-direction: column;
    }
    .btn-view-profile,
    .btn-book {
        width: 100%;
    }
} 