/* ========================================
   MODERN HOSPITAL CARDS - CSS
   ======================================== */

/* Reset ve Base Styles */
.modern-hospital-card {
    margin-bottom: 40px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.hospital-card-container {
    display: flex;
    min-height: 280px;
}

/* ========================================
   HASTANE GÖRSEL BÖLÜMÜ
   ======================================== */

.hospital-image-section {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.hospital-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hospital-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hospital-image:hover .hospital-main-image {
    transform: scale(1.05);
}

.hospital-image.placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.placeholder-content {
    text-align: center;
    color: #8a8a8a;
}

.placeholder-content i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.placeholder-content span {
    font-size: 14px;
    font-weight: 500;
}

/* Top Rated Badge */
.top-rated-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFBB05;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.badge-stars {
    text-align: center;
}

.badge-stars .fa-star {
    color: #ffd700;
    font-size: 10px;
    margin: 0 1px;
}

/* ========================================
   HASTANE İÇERİK BÖLÜMÜ
   ======================================== */
.hospital-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ecedef;
    margin-bottom: 20px;

    & > .pricing {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        & > .amount {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1;
        }

        & > .label {
            font-size: 14px;
            font-weight: 500;
            color: #666;
        }
    }
}

.hospital-content-section {
    flex: 1;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.hospital-content-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
    justify-content: start;
}

.hospital-content-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    align-self: center;
    border-left: 1px solid #e3e3e3;
    padding-left: 20px;
}

/* Konum ve Yıldızlar Aynı Satırda */
.hospital-location-rating {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}


/* Konum */
.hospital-location {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.hospital-location i {
    margin-right: 8px;
    color: #007cba;
    font-size: 16px;
}

/* Hastane Adı */
.hospital-name {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
}

.hospital-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hospital-name a:hover {
    color: #007cba;
}

.recommendation-rate {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #27ae60;
}

.recommendation-rate i {
    margin-right: 8px;
    font-size: 16px;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;

    &>.feature-item-icon i {
        color: #007cba;
        width: 16px !important;
        display: block;
        line-height: 1.5;
        margin-right: 8px;
    }
}

.hospital-map {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Learn More */

.learn-more a {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more a:hover {
    color: #005a8b;
    text-decoration: underline;
}

/* ========================================
   FİYAT VE CTA BÖLÜMÜ
   ======================================== */

.hospital-pricing-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.pricing-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

/* CTA Button */
.btn-contact-clinic {
    white-space: nowrap;
    color: white !important;
    background-color: #3badaf;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: transparent 1px solid;
    cursor: pointer;

    &:hover {
        color: #3badaf !important;
        background-color: white;
        text-decoration: none;
        border: #3badaf 1px solid;
    }
}

/* ========================================
   RATING VE REVIEWS
   ======================================== */

.hospital-rating {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-rating .fa-star {
    font-size: 16px;
    transition: all 0.2s ease;
}

.star-filled {
    color: #FFBB05;
    text-shadow: 0 1px 2px rgba(255, 187, 5, 0.3);
}

.star-half {
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
}

.star-empty {
    color: #e0e0e0;
}

/* Yıldız hover efektleri */
.hospital-rating:hover .star-filled,
.hospital-rating:hover .star-half {
    color: #FFBB05;
    text-shadow: 0 2px 4px rgba(255, 187, 5, 0.5);
    transform: scale(1.1);
}

.hospital-rating:hover .star-empty {
    color: #c0c0c0;
}

/* Rating text kaldırıldı - sadece yıldızlar gösteriliyor */

/* ========================================
   HOSPITAL NAVIGATION MENU
   ======================================== */

.hospital-navigation {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    margin: 20px 0 30px 0;
    position: fixed;
    top: 171px; /* Header yüksekliği + margin */
    left: 50%;
    transform: translateX(-50%);
    width: 66.666667%; /* col-lg-8 genişliği */
    max-width: 800px; /* Maksimum genişlik */
    z-index: 999; /* Ana menüden düşük z-index */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-link:hover {
    color: #007cba;
    background-color: #f8f9fa;
}

.nav-link.active {
    color: #007cba;
    border-bottom-color: #007cba;
    background-color: #f8f9fa;
}

.nav-menu li:not(:last-child) .nav-link::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d1d5db;
    font-size: 12px;
}

/* Section spacing */
#details,
#before-after,
#staff,
#reviews,
#cost {
    scroll-margin-top: 160px; /* Ana menü + hastane navigasyon yüksekliği */
    margin-bottom: 40px;
}

/* Placeholder sections */
.hospital-reviews,
.hospital-cost {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.hospital-reviews h3,
.hospital-cost h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.before-after-placeholder,
.reviews-placeholder,
.cost-placeholder {
    color: #6b7280;
    font-style: italic;
}

.hospital-rating-reviews {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-stars {
    display: flex;
    align-items: center;
}

.rating-stars .fa-star,
.rating-stars .fa-star-half-o,
.rating-stars .fa-star-o {
    font-size: 16px;
    margin-right: 2px;
}

.full-star {
    color: #ffd700;
}

.half-star {
    color: #ffd700;
}

.empty-star {
    color: #ddd;
}

.rating-number {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.reviews-link a {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.reviews-link a:hover {
    color: #005a8b;
    text-decoration: underline;
}

/* ========================================
   FİLTRELEME BÖLÜMÜ - YENİ TASARIM
   ======================================== */

.hospital-filters-sidebar {
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-section {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FILTERED BY Section */
.filtered-by {
    background: #f9fafb;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filter-header h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.clear-all {
    color: #6b7280;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.clear-all:hover {
    color: #374151;
    text-decoration: none;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background: #e5e7eb;
    color: #374151;
    padding: 6px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    background: #d1d5db;
}

.remove-filter {
    margin-left: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #6b7280;
    cursor: pointer;
}

.remove-filter:hover {
    color: #374151;
}

/* Filter Options */
.filter-options {
    display: flex;
    flex-direction: column;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: color 0.2s ease;
}

.filter-option:hover {
    color: #1f2937;
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}

.checkbox-option input[type="checkbox"] {
    border-radius: 3px;
}

.option-text {
    flex: 1;
    font-weight: 400;
}

.option-count {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

.show-more {
    color: #3b82f6;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    transition: color 0.2s ease;
}

.show-more:hover {
    color: #1d4ed8;
    text-decoration: none;
}

/* Form styling */
#hospital-filter-form {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hospital-filters-sidebar {
        margin-bottom: 20px;
    }
    
    .filter-section {
        padding: 15px;
    }
    
    .filter-option {
        padding: 6px 0;
    }
    
    .active-filters {
        gap: 6px;
    }
    
    .filter-tag {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* ========================================
   LOADING STATES
   ======================================== */

#hospitals-listing.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

#hospitals-listing.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   DOKTORLAR BÖLÜMÜ
   ======================================== */

.hospital-doctors {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
}

.hospital-doctors h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.doctors-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    justify-content: start;
    gap: 25px;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.doctor-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.doctor-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.doctor-photo {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-photo img {
    transform: scale(1.05);
}

.doctor-photo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.doctor-photo.placeholder i {
    font-size: 48px;
    opacity: 0.8;
}

.doctor-info {
    padding: 20px;
    text-align: center;
}

.doctor-specialty {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.doctor-card:hover .doctor-name {
    color: #3498db;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hospital-card-container {
        flex-direction: column;
        overflow: hidden;
    }
    
    .hospital-image-section {
        flex: none;
        height: 200px;
    }
    
    .hospital-content-section {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .hospital-content-left,
    .hospital-content-right {
        align-items: stretch;
    }
    
    .hospital-content-right {
        border-left: none;
        border-top: 1px solid #e3e3e3;
        padding-left: 0;
        padding-top: 10px;
        align-items: start !important;
        align-self: start !important;
        gap: 10px;
    }

    .hospital-name {
        font-size: 20px;
    }
    
    .hospital-pricing-cta {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .pricing-info {
        text-align: center;
    }
    
    .btn-contact-clinic {
        width: 100%;
        text-align: center;
    }
    
    /* Single sayfa için location-rating düzenlemesi */
    .single-hospital .hospital-location-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .single-hospital .hospital-rating {
        justify-content: flex-start;
    }
    
    .single-hospital .star-rating {
        justify-content: flex-start;
    }
    
    .rating-stars {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    /* Archive sayfası için yıldız düzenlemesi */
    .hospital-content-right .hospital-rating {
        justify-content: center;
    }
    
    /* Navigation responsive */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .reviews-link {
        text-align: center;
    }
    
    .pricing-info {
        text-align: center;
        margin-bottom: 15px;
    }
    
    #hospital-filter-form {
        grid-template-columns: 1fr;
    }
}

/* Tablet görünümü için orta nokta */
@media (max-width: 992px) and (min-width: 769px) {
    .hospital-content-section {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }
    
    .hospital-content-right {
        align-items: start;
        align-self: start !important;
        gap: 10px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
        justify-content: start;
        gap: 20px;
    }
    
    .hospital-doctors h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hospital-filters {
        padding: 20px;
    }
    
    .hospital-content-section {
        padding: 15px;
    }
    
    .hospital-name {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .btn-contact-clinic {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 20px auto 0;
    }
    
    .doctor-photo {
        height: 160px;
    }
    
    .doctor-info {
        padding: 15px;
    }
    
    .doctor-name {
        font-size: 16px;
    }
    
    .doctor-specialty {
        font-size: 12px;
    }
}

/* ========================================
   ARCHIVE PAGE STYLES
   ======================================== */

.rt-hospitals-archive {
    
}

.hospitals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
}

.hospitals-count {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.archive-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: grid;
    place-content: center;
    place-items: center;
    gap: 10px;
    margin-bottom: 40px;

    & > * {
        margin: 0;
        display: grid;
        place-content: center;
        place-items: center;
    }
}

/* ========================================
   PAGINATION
   ======================================== */

#hospitals-pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #007cba;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.pagination .current {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-hospital-card {
    animation: fadeInUp 0.6s ease-out;
}

.modern-hospital-card:nth-child(2) { animation-delay: 0.1s; }
.modern-hospital-card:nth-child(3) { animation-delay: 0.2s; }
.modern-hospital-card:nth-child(4) { animation-delay: 0.3s; }
.modern-hospital-card:nth-child(5) { animation-delay: 0.4s; }
.modern-hospital-card:nth-child(6) { animation-delay: 0.5s; }

/* ========================================
   HOSPITAL GALLERY SLIDER & FEATURED IMAGE
   ======================================== */

.hospital-gallery-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.hospital-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hospital-featured-image .hospital-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hospital-featured-image:hover .hospital-main-image {
    /* transform: scale(1.05); */
}

.hospital-slider .slider-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.hospital-slider .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hospital-slider .slider-item:hover .slider-image {
    /* transform: scale(1.05); */
}

/* Owl Carousel Custom Styles - Override default styles */
.hospital-slider .owl-dots {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    height: auto !important;
}

.hospital-slider .owl-dots .owl-dot {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    float: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

.hospital-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.hospital-slider .owl-nav button {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: none !important;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hospital-slider .owl-nav button:hover {
    background: rgba(0, 124, 186, 0.9) !important;
    transform: scale(1.1);
}

.hospital-slider .owl-nav .owl-prev {
    left: 20px;
}

.hospital-slider .owl-nav .owl-next {
    right: 20px;
}

.hospital-slider .owl-dots .owl-dot.active {
    background: #007cba !important;
    transform: scale(1.2);
}

#hospital-before-after-carousel .owl-nav {
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 14px;
    margin-top: 10px;
    position: absolute;
    bottom: -7px;
    z-index: 99999;
}

/* Before/After Carousel Pagination Styles */
#hospital-before-after-carousel .owl-dots {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: auto !important;
    height: auto !important;
    margin-top: 15px !important;
}

#hospital-before-after-carousel .owl-dots .owl-dot {
    width: 12px !important;
    height: 12px !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    float: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    cursor: pointer !important;
}

#hospital-before-after-carousel .owl-dots .owl-dot.active {
    background: #3badaf !important;
    transform: scale(1.2);
}

#hospital-before-after-carousel .owl-dots .owl-dot:hover {
    background: rgba(0, 124, 186, 0.7) !important;
}

/* Hospital Highlights Grid Layout */
.hospital-highlights {
    margin: 30px 0;
}

.hospital-highlights h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.highlights-grid {
    display: block;
    columns: 1 auto;
    column-gap: 20px;
    column-fill: balance;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #3badaf;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 8px;
}


.highlight-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
    line-break: auto;
}

/* Hospital Abilities Grid Layout */
.hospital-abilities {
    margin: 30px 0;
}

.hospital-abilities h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.abilities-grid {
    display: block;
    columns: 1 auto;
    column-gap: 20px;
    column-fill: balance;
    margin-top: 20px;
}

.ability-item {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
    break-inside: avoid;
    page-break-inside: avoid;
}

.ability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #3badaf;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 8px;
}

.ability-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
    line-break: auto;
}

/* Responsive Grid Layout */
@media (min-width: 768px) {
    .highlights-grid {
        columns: 2 auto;
        column-gap: 25px;
    }
    
    .highlight-item {
        margin-bottom: 15px;
    }
    
    .abilities-grid {
        columns: 2 auto;
        column-gap: 25px;
    }
    
    .ability-item {
        margin-bottom: 15px;
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        columns: 2 auto;
        column-gap: 30px;
    }
    
    .highlight-item {
        margin-bottom: 18px;
    }
    
    .abilities-grid {
        columns: 3 auto;
        column-gap: 30px;
    }
    
    .ability-item {
        margin-bottom: 18px;
    }
}

/* Responsive Slider */
@media (max-width: 768px) {
    .hospital-slider .slider-item {
        height: 250px;
    }
    
    .hospital-slider .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    .hospital-slider .owl-nav .owl-prev {
        left: 10px;
    }
    
    .hospital-slider .owl-nav .owl-next {
        right: 10px;
    }
    
    .hospital-slider .owl-dots {
        bottom: 15px !important;
    }
    
    .hospital-slider .owl-dots .owl-dot {
        width: 10px !important;
        height: 10px !important;
    }
}

/* ========================================
   SINGLE HOSPITAL V2 - FLYMEDI STYLE
   ======================================== */

.single-hospital-v2 {
    background: #ffffff;
}

/* Header V2 */
.hospital-header-v2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 0;
}

.hospital-breadcrumb {
    margin-bottom: 20px;
}

.hospital-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hospital-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.hospital-breadcrumb .breadcrumb-item.active {
    color: white;
}

.hospital-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.hospital-title-v2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: white;
    line-height: 1.2;
}

.hospital-location-rating-v2 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hospital-location-v2 {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
}

.hospital-location-v2 i {
    margin-right: 10px;
    font-size: 20px;
}

.hospital-rating-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-rating-v2 {
    display: flex;
    gap: 3px;
}

.star-rating-v2 .fas.fa-star,
.star-rating-v2 .fas.fa-star-half-alt {
    color: #ffd700;
    font-size: 20px;
}

.star-rating-v2 .far.fa-star {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.hospital-actions-v2 {
    text-align: right;
}

.hospital-actions-v2 .btn {
    background: #ff6b6b;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hospital-actions-v2 .btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Navigation V2 */
.hospital-navigation-v2 {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu-v2 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-menu-v2 li {
    margin: 0;
    padding: 0;
}

.nav-link-v2 {
    display: block;
    padding: 20px 30px;
    color: #6b7280;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-link-v2:hover {
    color: #667eea;
    background-color: #f8f9fa;
}

.nav-link-v2.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background-color: #f8f9fa;
}

.nav-menu-v2 li:not(:last-child) .nav-link-v2::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d1d5db;
    font-size: 14px;
}

/* Content V2 */
.hospital-content-v2 {
    padding: 40px 0;
}

/* Gallery V2 */
.hospital-gallery-v2 {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.gallery-slider {
    position: relative;
    height: 500px;
}

.gallery-slide {
    height: 500px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hospital-featured-v2 {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Sections V2 */
.hospital-details-v2,
.hospital-before-after-v2,
.hospital-reviews-v2,
.hospital-staff-v2,
.hospital-cost-v2,
.hospital-services-v2,
.hospital-premises-v2,
.hospital-accreditations-v2 {
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hospital-details-v2 h2,
.hospital-before-after-v2 h2,
.hospital-reviews-v2 h2,
.hospital-staff-v2 h2,
.hospital-cost-v2 h2,
.hospital-services-v2 h2,
.hospital-premises-v2 h2,
.hospital-accreditations-v2 h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.clinic-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Languages Spoken */

.language-spoken {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.languages-spoken h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.language-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-icon {
    background: #667eea;
    color: white;
    width: 30px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

.language-name {
    font-weight: 500;
    color: #374151;
}

/* Before/After Placeholder */

.placeholder-content i {
    font-size: 64px;
    color: #9ca3af;
    margin-bottom: 20px;
    display: block;
}

.placeholder-content p {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

/* Reviews V2 */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.overall-rating {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-stars .fas.fa-star {
    color: #ffd700;
    font-size: 20px;
}

.rating-text {
    font-size: 14px;
    opacity: 0.9;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-label {
    min-width: 80px;
    font-weight: 600;
    color: #374151;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-value {
    min-width: 30px;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

/* Staff V2 */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.staff-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.staff-photo {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-placeholder {
    color: white;
    font-size: 48px;
    opacity: 0.8;
}

.staff-info {
    padding: 20px;
    text-align: center;
}

.staff-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.staff-specialization {
    font-size: 14px;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 5px;
}

.staff-experience {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Cost V2 */
.procedures-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.procedure-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.procedure-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.procedure-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.procedure-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.procedure-name {
    font-weight: 500;
    color: #374151;
}

.procedure-price {
    font-weight: 600;
    color: #667eea;
    font-size: 16px;
}

/* Services & Premises V2 */
.services-grid,
.premises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item,
.premise-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-item:hover,
.premise-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.service-item i,
.premise-item i {
    color: #667eea;
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.service-item span,
.premise-item span {
    font-weight: 500;
    color: #374151;
}

/* Accreditations V2 */
.accreditations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accreditation-item {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
}

/* Sidebar V2 */
.hospital-sidebar-v2 {
    position: sticky;
    top: 100px;
}

/* Personal Quote V2 */
.personal-quote-v2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.quote-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.consultant-avatar {
    margin-right: 15px;
}

.consultant-avatar i {
    font-size: 48px;
    opacity: 0.9;
}

.consultant-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.consultant-info p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.quote-benefits {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.benefit-item i {
    color: #4ade80;
    margin-right: 10px;
    font-size: 16px;
}

.personal-quote-v2 .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.personal-quote-v2 .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contact Info V2 */
.contact-info-v2 {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-info-v2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.contact-item-v2 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item-v2 i {
    color: #667eea;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.contact-item-v2 strong {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.contact-item-v2 p {
    margin: 0;
    color: #6b7280;
}

.contact-item-v2 a {
    color: #667eea;
    text-decoration: none;
}

.contact-item-v2 a:hover {
    text-decoration: underline;
}

/* Similar Clinics V2 */
.similar-clinics-v2 {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.similar-clinics-v2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.clinic-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clinic-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.clinic-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.clinic-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.clinic-rating .fas.fa-star {
    color: #ffd700;
    font-size: 14px;
}

.clinic-rating span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.clinic-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* Responsive V2 */
@media (max-width: 768px) {
    .hospital-title-v2 {
        font-size: 32px;
    }
    
    .hospital-location-rating-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hospital-actions-v2 {
        text-align: left;
        margin-top: 20px;
    }
    
    .nav-menu-v2 {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link-v2 {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .gallery-slider,
    .gallery-slide,
    .featured-image {
        height: 300px;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .premises-grid {
        grid-template-columns: 1fr;
    }
    
    .hospital-sidebar-v2 {
        position: static;
        margin-top: 40px;
    }
}

/* ========================================
   HASTANE YORUMLARI - CSS
   ======================================== */

.hospital-reviews {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.hospital-reviews h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
}

.hospital-reviews h3:before {
    content: "💬";
    margin-right: 10px;
    font-size: 20px;
}

/* Yorum Listesi */
.hospital-comments-list {
    margin-bottom: 40px;
}

.hospital-comment {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.hospital-comment:hover {
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.comment-author {
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
}

.comment-date {
    color: #6c757d;
    font-size: 14px;
    font-style: italic;
}

.comment-content {
    color: #495057;
    line-height: 1.6;
    font-size: 15px;
}

/* Yorum Yok Durumu */
.no-comments {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    color: #6c757d;
}

.no-comments p {
    margin: 0;
    font-size: 16px;
    font-style: italic;
}

/* Yorum Formu */
.hospital-comment-form {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e9ecef;
    margin-top: 20px;
}

.hospital-comment-form h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hospital-comment-form h4:before {
    content: "✍️";
    margin-right: 8px;
    font-size: 18px;
}

.hospital-comment-form-class {
    margin: 0;
}

.hospital-comment-form-class .comment-form-author,
.hospital-comment-form-class .comment-form-email,
.hospital-comment-form-class .comment-form-comment {
    margin-bottom: 20px;
}

.hospital-comment-form-class label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.hospital-comment-form-class .required {
    color: #e74c3c;
}

.hospital-comment-form-class input[type="text"],
.hospital-comment-form-class input[type="email"],
.hospital-comment-form-class textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.hospital-comment-form-class input[type="text"]:focus,
.hospital-comment-form-class input[type="email"]:focus,
.hospital-comment-form-class textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.hospital-comment-form-class textarea {
    min-height: 120px;
    resize: vertical;
}

.hospital-comment-form-class .btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hospital-comment-form-class .btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Yorum Sayısı Göstergesi */
.hospital-comment-count {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hospital-reviews {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .hospital-reviews h3 {
        font-size: 20px;
    }
    
    .hospital-comment {
        padding: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hospital-comment-form {
        padding: 20px;
    }
    
    .hospital-comment-form h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hospital-reviews {
        padding: 15px;
    }
    
    .hospital-comment {
        padding: 12px;
    }
    
    .hospital-comment-form {
        padding: 15px;
    }
    
    .hospital-comment-form-class input[type="text"],
    .hospital-comment-form-class input[type="email"],
    .hospital-comment-form-class textarea {
        padding: 10px 12px;
    }
}


/* Customer Support Styles */
.hospital-customer-support {
    margin-bottom: 40px;
}

.customer-support-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.customer-support-card {
    background: white;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid #c3eaea;
    padding: 25px;
}

.support-header {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    display: block;
}

.customer-support-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 20px 0;
}


.customer-support-header .customer-support-name {
    font-size: 24px;
    font-weight: 600;
    color: #3badaf;
    margin: 0 0 5px 0;
    display: block;
}

.support-header .support-title {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-style: italic;
    display: block;
}

.customer-support-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left;
    gap: 20px;
    width: 100%;
}

.customer-support-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.support-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #e3f2fd;
    display: block;
    float: none;
}

.support-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-photo.placeholder {
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #1976d2;
}

.support-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    float: none;
}

.support-services {
    text-align: left;
}

.support-services h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.support-services ul {
    list-style: none;
    padding: 0;
}

.support-services li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.support-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3badaf;
    font-weight: bold;
}

.support-contact {
    margin-bottom: 20px;
    display: grid;
}

.support-contact .btn {
    background: linear-gradient(45deg, #3badaf, #4bc4c7);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.support-contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 173, 175, 0.3);
}

/* Accreditations Styles */
.accreditations-section {
    width: 100%;
}

.accreditations-section h5 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.accreditations-slider {
    position: relative;
}

.accreditations-carousel .accreditation-item {
    text-align: center;
    padding: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.accreditation-logo {
    max-width: 100px;
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.accreditation-logo:hover {
    filter: grayscale(0%);
}

.accreditations-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.accreditations-carousel .owl-nav button {
    background: rgba(25, 118, 210, 0.8) !important;
    color: white !important;
    border: none !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    pointer-events: all;
    transition: all 0.3s ease;
}

.accreditations-carousel .owl-nav button:hover {
    background: rgba(25, 118, 210, 1) !important;
    transform: scale(1.1);
}

.accreditations-carousel .owl-nav .owl-prev {
    left: -20px;
}

.accreditations-carousel .owl-nav .owl-next {
    right: -20px;
}

/* Fallback Grid for when Owl Carousel is not available */
.accreditations-carousel.fallback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.accreditations-carousel.fallback-grid .accreditation-item {
    text-align: center;
    padding: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}