/* =========================== */
/* Z-INDEX HIERARCHY FIX      */
/* =========================== */

/* Global navbar and dropdown z-index fix */
.navbar-area,
.navbar,
.main-navbar,
.navbar-content-wrapper {
    z-index: 10000 !important;
    position: relative !important;
}

.navbar .dropdown-menu,
.dropdown-menu.show {
    z-index: 10001 !important;
}

#categoriesDropdown .dropdown-menu {
    z-index: 10002 !important;
}

/* =========================== */
/* SCROLL OPTIMIZATION        */
/* =========================== */

/* Scroll titremesini önlemek için */
html {
    scroll-behavior: auto !important;
}

body {
    scroll-behavior: auto !important;
    overflow-x: hidden !important;
}

/* Tüm elementler için smooth scroll'u devre dışı bırak */
* {
    scroll-behavior: auto !important;
}

/* =========================== */
/* DARK/LIGHT MODE VARIABLES  */
/* =========================== */

:root {
  /* Light Mode Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #868e96;
  --border-color: #dee2e6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --card-bg: #ffffff;
  --nav-bg: #ffffff;
  --modal-bg: #ffffff;
  --input-bg: #ffffff;
  --overlay-bg: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] {
  /* Dark Mode Colors */
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-tertiary: #3d3d3d;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #999999;
  --border-color: #404040;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --card-bg: #2d2d2d;
  --nav-bg: #1e1e1e;
  --modal-bg: #2d2d2d;
  --input-bg: #3d3d3d;
  --overlay-bg: rgba(0, 0, 0, 0.7);
}

/* Theme Toggle Button */
.theme-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-toggle i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.theme-toggle:hover i {
  transform: rotate(180deg);
}

/* Apply theme to common elements */
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.card, .sidebar-card, .rating-card, .stat-card, .info-card, .ilan-card, .clinic-card {
  background-color: var(--card-bg) !important;
  color: var(--text-primary) !important;
  box-shadow: 0 2px 8px var(--shadow-color) !important;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.modal-content {
  background-color: var(--modal-bg) !important;
  color: var(--text-primary) !important;
}

.navbar, .nav-tabs {
  background-color: var(--nav-bg) !important;
  border-color: var(--border-color) !important;
}

.form-control, .form-select {
  background-color: var(--input-bg) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}

.form-control:focus, .form-select:focus {
  background-color: var(--input-bg) !important;
  color: var(--text-primary) !important;
  border-color: #06a3da !important;
  box-shadow: 0 0 0 0.2rem rgba(6, 163, 218, 0.25) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.bg-light {
  background-color: var(--bg-secondary) !important;
}

.border {
  border-color: var(--border-color) !important;
}

.dropdown-menu {
  background-color: var(--card-bg) !important;
  border-color: var(--border-color) !important;
  max-width: 280px !important;
  overflow: visible !important;
}

.dropdown-item {
  color: var(--text-primary) !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  line-height: 1.4 !important;
  padding: 0.5rem 1rem !important;
}

.dropdown-item:hover {
  background-color: var(--bg-secondary) !important;
}

/* Dark mode için özel responsive adjustments */
@media (max-width: 768px) {
  .theme-toggle {
    width: 45px;
    height: 45px;
  }
  
  .theme-toggle i {
    font-size: 1rem;
  }
}

/* =========================== */
/* EXISTING STYLES CONTINUE   */
/* =========================== */

    /* Galeri Stili */
    .gallery-section {
        margin-top: -30px;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-rows: repeat(3, 1fr);
        height: 100%;
        gap: 2px;
    }
    
    .main-image {
        display: block;
        height: 600px; /* Ana görsel yüksekliği */
        overflow: hidden;
    }
    
    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-item {
        display: block;
        height: 200px;
        overflow: hidden;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
    
    .show-all {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }
    
    .show-all:hover {
        background: rgba(0,0,0,0.7);
    }
    
    .show-all .btn {
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 8px;
    }

    /* Değerlendirme Kartları */
    .rating-card {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .rating-value {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }
    
    .rating-stars {
        color: #ffc107;
        font-size: 1.2rem;
    }
    
    .rating-count {
        color: #666;
        font-size: 0.9rem;
    }
/* İstatistik Kartları */
    .stat-card {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .stat-card i {
        font-size: 2rem;
        color: #007bff;
    }
    
    .stat-value {
        font-weight: bold;
        color: #333;
    }
    
    .stat-label {
        color: #666;
        font-size: 0.9rem;
    }

    /* Sidebar */
    .sidebar-card {
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .clinic-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .clinic-logo {
        border-radius: 50%;
    }
    
.social-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.social-buttons .btn {
    padding: 10px;
}

/* Mevcut stiller korunacak, aşağıdakiler eklenecek */

.nav-tabs {
    border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    padding: 1rem 1.5rem;
    font-weight: 500;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: #06a3da;
    background: none;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #06a3da;
}
.guarantee-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.highlight-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #06a3da;
}

.form-select {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.btn-link {
    color: #06a3da;
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: underline;
}
/* Reviews Stili */

@media (max-width: 991px) {
    .nomobile {
        display: none !important;
    }
}

.overall-score .score-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #06a3da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.overall-score .score {
    font-size: 2rem;
    font-weight: bold;
    color: #06a3da;
}

.rating-bars {
    padding: 1rem;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-bar-item .progress {
    flex: 1;
    height: 8px;
}

.star-label {

@media (max-width: 991px) {
    .nomobile {
        display: none !important;
    }
}

    min-width: 60px;
}

.percentage {
    min-width: 40px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.rating-item i {
    font-size: 2rem;
    color: #06a3da;
}

.rating-score {
    font-weight: bold;
    color: #06a3da;
}

.review-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
}

.review-highlight {
    border-left: 4px solid #06a3da;
}

.verified-reviews {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.verified-reviews:hover {
    text-decoration: underline;
}
/* Video Reviews Stili */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1rem;
}

.video-info h5 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.video-meta span::before {
    font-family: 'boxicons';
    font-size: 1.1rem;
}

.video-meta .date::before {
    content: '\eb1c';
}

.video-meta .views::before {
    content: '\ebf1';
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
/* Location Stili */
.location-section {
    padding: 1rem 0;
}

.address-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.address-info .lead {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.address-info i {
    color: #06a3da;
    font-size: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    height: 100%;
}

.info-card h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    margin-bottom: 1rem;
}

.info-card h5 i {
    color: #06a3da;
}

.info-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card ul li i {
    color: #06a3da;
}

.rating {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating .score {
    font-weight: bold;
    color: #333;
}

.rating .stars {
    color: #ffc107;
}

.reviews-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.reviews-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .location-details .row > div {
        margin-bottom: 1rem;
    }
}

/* Special Offers Section */
.special-offers-section {
    background: #fff;
    border-radius: 8px;
}

.special-offers-section .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.info-message {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.info-message i {
    font-size: 20px;
}

.info-message p {
    color: #666;
    font-size: 14px;
}

.offers-list .offer-item {
    transition: background-color 0.2s ease;
}

.offers-list .offer-item:hover {
    background-color: #f8f9fa;
}

.offers-list .offer-item a {
    flex: 1;
    padding-right: 20px;
}

.offer-price {
    color: #333;
    font-size: 16px;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offers-list .offer-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .offers-list .offer-item a {
        padding-right: 0;
    }
}

/* Prices Section */
.prices-section {
    padding: 1rem 0;
}

.prices-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prices-section h2 i {
    color: #666;
    font-size: 1.2rem;
}

.dropdown-section .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.price-header {
    margin-bottom: 1rem;
}

.price-header h6 {
    color: #666;
    font-weight: 500;
}

.price-items .price-item {
    transition: background-color 0.2s ease;
}

.price-items .price-item:hover {
    background-color: #f8f9fa;
}

.price-item .price {
    color: #333;
    font-weight: 500;
}

.price-item .btn-link {
    color: #666;
}

.price-item .btn-link:hover {
    color: #3366;
}

.price-item .bx-chevron-right {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-item .row {
        font-size: 0.9rem;
    }
    
    .price-item .price {
        font-size: 0.9rem;
    }
}

/* Ana İçerik Stilleri */
.location-info {
    color: #666;
    font-size: 1rem;
}

.location-info i {
    color: #06a3da;
}

/* Değerlendirme Kartları */
.ratings-overview {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.rating-main {
    padding-right: 2rem;
    margin-right: 2rem;
    border-right: 1px solid #eee;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.reviews-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-detail-item {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card i {
    font-size: 2rem;
}

.stat-label {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.guarantee-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.guarantee-section h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.about-section h3,
.highlights-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlight-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item i {
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rating-main {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .rating-details {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* Overview Tab Styles */
.tab-pane h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.location-info {
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-info i {
    color: #06a3da;
}

.ratings-overview {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
}

.rating-main {
    padding-right: 2rem;
    margin-right: 2rem;
    border-right: 1px solid #eee;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.reviews-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-detail-item {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card i {
    font-size: 2rem;
}

.stat-label {
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.stat-desc {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.guarantee-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.guarantee-section h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.about-section h3,
.highlights-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlight-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-item i {
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rating-main {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .rating-details {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* Certificates Tab Styles */
.certificates-list {
    margin-bottom: 3rem;
}

.certificate-item {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.certificate-logo img {
    object-fit: contain;
}

.certificate-info h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.certificate-info p {
    font-size: 0.95rem;
}

.location {
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.departments-list {
    list-style: none;
    padding: 0;
}

.departments-list li {
    margin-bottom: 0.75rem;
    color: #333;
}

.departments-list a {
    text-decoration: none;
}

.departments-list a:hover {
    text-decoration: underline;
}

.hospital-info p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    margin-bottom: 1.5rem;
}

.advantages-list p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .certificate-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .certificate-logo {
        text-align: center;
    }
}

.guarantee-icon {
    object-fit: cover;
    border: 1px solid #eee;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    padding: 1.5rem 1.5rem 0;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 0 1.5rem 1.5rem;
}

.form-floating {
    margin-bottom: 0;
}

.form-floating > .form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 1rem;
    height: calc(3.5rem + 2px);
}

.form-floating > .form-control:focus {
    border-color: #06a3da;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-floating > textarea.form-control {
    height: 120px;
}

.form-check-input:checked {
    background-color: #06a3da;
    border-color: #06a3da;
}



/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.ilan-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    border: none;
}

.ilan-card:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.ilan-image {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
}

.badge {
    padding: 6px 10px;
    font-weight: 500;
    border-radius: 4px;
}

.verified-badge {
    color: #007bff;
    font-size: 1.2rem;
}

.diagnostics {
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
}

.actions .btn {
    padding: 10px 15px;
    font-weight: 600;
}

.stars {
    font-size: 18px;
    margin-bottom: 5px;
}
/* Klinik Kartı Stilleri */
.clinic-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.clinic-card:hover {
    transform: translateY(-5px);
}

.clinic-image {
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

.clinic-badge {
    color: #06a3da;
    font-size: 0.9rem;
    font-weight: 500;
}

.clinic-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    font-size: 0.95rem;
}

.certifications {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cert-icons {
    display: flex;
    gap: 0.5rem;
}

.cert-icons img {
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.2s;
}

.cert-icons img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.rating-score {
    font-size: 1.8rem;
    color: #333;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.price-item {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Sabit Alt Alan */
.floating-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .clinic-image {
        height: 200px;
        border-radius: 8px 8px 0 0;
    }
    
    .floating-bottom-bar {
        padding: 0.5rem 0;
    }
    
    .floating-bottom-bar h4 {
        font-size: 1rem;
    }
}
.cert-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cert-icon {
    border-radius: 4px;
    object-fit: cover;
    filter: grayscale(0.8);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    padding: 2px;
    background: white;
}

.cert-icon:hover {
    filter: grayscale(0);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button_color {
    background-color: #06a3da;
    border-color: #06a3da;
}
.button_color:focus {
    background-color: #06a3da;
    border-color: #06a3da;
}
.button_color:hover {
    background-color: #06a3da;
    border-color: #06a3da;
}
.text_color {
    color: #06a3da;
}
.pagination-section {
    padding: 20px 0;
}

.progress-text {
    font-size: 1.1rem;
    color: #333;
}

.progress {
    max-width: 500px;
    margin: 0 auto;
    background-color: #e9ecef;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

.rounded-4 {
    border-radius: 12px !important;
}

/* WhatsApp Sabit Butonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    border-radius: 50px;
}

.whatsapp-float i {
    font-size: 32px;
    margin-top: 2px;
}

/* WhatsApp butonu animasyonu */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobil cihazlar için küçük ayarlama */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 25px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}

/* Sözleşme Onayı Stilleri */
.form-check {
    padding-left: 0;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.form-check-label a {
    color: #06a3da;
    font-weight: 500;
}

.form-check-label a:hover {
    color: #0488b8;
}

/* Modal İyileştirmeleri */
.modal-lg {
    max-width: 800px;
}

.modal-body {
    line-height: 1.6;
}

.modal-body h6 {
    color: #06a3da;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-body ul {
    margin-left: 1rem;
}

/* Disabled Button Stili */
.default-btn:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

.default-btn:disabled:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95%;
        margin: 10px auto;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 60vh;
    }
    
    .form-check-label {
        font-size: 0.85rem;
    }
}

/* =================================
   LOGO TASARIMI - MODERN VE RESPONSIVE
   ================================= */
.logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.site-logo {
    height: 80px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo-link:hover .site-logo {
    filter: drop-shadow(0 4px 12px rgba(6, 163, 218, 0.2));
}

/* Mobil logo responsive */
@media (max-width: 991px) {
    .site-logo {
        height: 60px !important;
        max-width: 150px !important;
    }
}

@media (max-width: 767px) {
    .site-logo {
        height: 50px !important;
        max-width: 120px !important;
    }
}

/* =================================
   MENÜ TASARIMI - MODERN USER-FRIENDLY
   ================================= */
.main-navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-top: 1px solid rgba(6, 163, 218, 0.1) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.navbar-content-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 0 25px !important;
}

.navbar {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    background-color: transparent !important;
}

.navbar-nav {
    gap: 8px !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #06a3da !important;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 163, 218, 0.15);
}

.nav-link.active {
    color: #06a3da !important;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.12) 0%, rgba(14, 165, 233, 0.08) 100%) !important;
    font-weight: 600 !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(135deg, #06a3da 0%, #0ea5e9 100%);
    border-radius: 1px;
}

.dropdown-menu {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
    border: 1px solid rgba(6, 163, 218, 0.15) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    padding: 8px 0 !important;
    margin-top: 8px !important;
    backdrop-filter: blur(10px);
    min-width: 220px !important;
    max-width: 280px !important;
    overflow: visible !important;
}

.dropdown-item {
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    margin: 2px 8px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
}

.dropdown-item:hover {
    color: #06a3da !important;
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%) !important;
    transform: translateX(4px);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: #06a3da;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 8px;
    max-width: 280px !important;
    overflow: visible !important;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-item::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    color: #9ca3af;
    font-size: 12px;
}

/* Modern mobil toggle buton */
.modern-toggle {
    border: 2px solid #06a3da !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(6, 163, 218, 0.15) !important;
}

.modern-toggle:hover {
    background: linear-gradient(135deg, #06a3da 0%, #0ea5e9 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(6, 163, 218, 0.25) !important;
}

.modern-toggle:hover .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox=\'0 0 32 32\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath stroke=\'white\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 8h24M4 16h24M4 24h24\'/%3E%3C/svg%3E') !important;
}

.modern-toggle .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox=\'0 0 32 32\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath stroke=\'%2306a3da\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 8h24M4 16h24M4 24h24\'/%3E%3C/svg%3E') !important;
    width: 24px !important;
    height: 24px !important;
}

/* Mobil menü iyileştirmeleri */
@media (max-width: 991px) {
    .navbar {
        min-height: 60px !important;
        padding: 10px 0 !important;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }
    
    .dropdown-menu {
        margin-top: 4px !important;
        border-radius: 8px !important;
    }
    
    .dropdown-item {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* =================================
   ARAMA ALANI STİLLERİ - PREMIUM MODERN DESIGN
   ================================= */
.search-area {
    margin: 0;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin: 15px;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 3px solid transparent;
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 65px;
    overflow: hidden;
    background-clip: padding-box;
}

.search-input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #06a3da 0%, #0ea5e9 50%, #0284c7 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-input-wrapper:hover {
    transform: translateY(-2px);
    box-shadow:
        0 25px 50px rgba(6, 163, 218, 0.15),
        0 12px 30px rgba(6, 163, 218, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-input-wrapper:hover::before {
    opacity: 1;
}

.search-input-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow:
        0 25px 50px rgba(6, 163, 218, 0.2),
        0 12px 30px rgba(6, 163, 218, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-input-wrapper:focus-within::before {
    opacity: 1;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 30px;
    padding-right: 80px;
    font-size: 17px;
    font-weight: 500;
    color: #1e293b;
    height: 100%;
    border-radius: 25px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.01em;
}

.search-input::placeholder {
    color: #64748b;
    font-weight: 400;
    font-size: 16px;
}

.search-input:focus::placeholder {
    color: #94a3b8;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 53px;
    height: 53px;
    background: linear-gradient(135deg, #06a3da 0%, #0ea5e9 30%, #0284c7 100%);
    border: none;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 12px 25px rgba(6, 163, 218, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.search-btn:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 30%, #075985 100%);
    transform: translateY(-50%) scale(1.08);
    box-shadow:
        0 18px 35px rgba(6, 163, 218, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow:
        0 8px 20px rgba(6, 163, 218, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.1);
}

.search-btn i {
    transition: transform 0.2s ease;
}

.search-btn:hover i {
    transform: scale(1.1);
}

.search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    background-clip: padding-box;
}

.search-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #06a3da 0%, #0ea5e9 50%, #0284c7 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.search-result-item {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    position: relative;
    border-radius: 0;
}

.search-result-item:last-child {
    border-bottom: none;
    border-radius: 0 0 18px 18px;
}

.search-result-item:first-child {
    border-radius: 18px 18px 0 0;
}

.search-result-item:hover {
    background: linear-gradient(135deg, rgba(6, 163, 218, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
    transform: translateX(4px);
    box-shadow: inset 4px 0 0 #06a3da;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-icon {
    color: #06a3da;
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.search-result-subtitle {
    color: #666;
    font-size: 12px;
    margin: 2px 0 0 0;
    line-height: 1.2;
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: #666;
    background: white;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    background: white;
}

.search-category-header {
    padding: 10px 16px;
    background: #f8f9fa;
    font-weight: 600;
    color: #06a3da;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
}

/* Mobil responsive - Premium */
@media (max-width: 991px) {
    .search-area {
        padding: 20px 0;
        margin: 10px;
        border-radius: 15px;
    }

    .search-container {
        max-width: 100%;
        margin: 0 15px;
    }

    .search-input-wrapper {
        height: 60px;
        border-radius: 20px;
    }

    .search-input {
        padding: 0 26px;
        padding-right: 72px;
        font-size: 16px;
    }

    .search-btn {
        width: 48px;
        height: 48px;
        right: 6px;
        font-size: 18px;
        border-radius: 16px;
    }

    .search-results {
        max-height: 300px;
    }

    .search-result-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .search-result-title {
        font-size: 13px;
    }

    .search-result-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .search-area {
        padding: 18px 0;
        margin: 8px;
        border-radius: 12px;
    }

    .search-container {
        margin: 0 12px;
    }

    .search-input-wrapper {
        height: 55px;
        border-radius: 18px;
    }

    .search-input {
        padding: 0 24px;
        padding-right: 65px;
        font-size: 15px;
    }

    .search-btn {
        width: 45px;
        height: 45px;
        right: 5px;
        font-size: 17px;
        border-radius: 14px;
    }

    .search-results {
        max-height: 280px;
        top: calc(100% + 6px);
    }

    .search-result-item {
        padding: 8px 12px;
        gap: 8px;
    }

    .search-result-title {
        font-size: 13px;
    }

    .search-result-subtitle {
        font-size: 11px;
    }

    .search-loading,
    .search-no-results {
        padding: 16px 12px;
    }

    .search-category-header {
        padding: 8px 12px;
        font-size: 10px;
    }
}

/* Sidebar Menü Modernizasyonu */
.sidebar-card .list-group-item,
.card .list-group-item {
  background: #f4f6fb !important;
  border: 1px solid #e0e3ea !important;
  color: #222 !important;
  margin-bottom: 8px;
  border-radius: 8px !important;
  transition: background 0.2s, color 0.2s;
}

.sidebar-card .list-group-item.active,
.card .list-group-item.active {
  background: #06a3da !important;
  color: #fff !important;
  border-color: #06a3da !important;
}

.sidebar-card .list-group-item:hover,
.card .list-group-item:hover {
  background: #e6f4fa !important;
  color: #06a3da !important;
}

.sidebar-card .list-group-item.text-danger,
.card .list-group-item.text-danger {
  color: #e74c3c !important;
}

.sidebar-card .list-group-item:last-child,
.card .list-group-item:last-child {
  margin-bottom: 0;
}
