/**
 * City Page Styles
 * Fizyoterapist Platform - Tema Renkleri (#047857)
 */

/* ============================================
   BREADCRUMB
   ============================================ */
.page-breadcrumb {
    padding: 1.5rem 0 0.5rem 0;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #4B5563;
    padding: 0 0.5rem;
}

.breadcrumb-item a {
    color: #4B5563;
    text-decoration: none;
    transition: color 200ms ease;
}

.breadcrumb-item a:hover {
    color: #047857;
}

.breadcrumb-item.active {
    color: #111827;
    font-weight: 600;
}

.breadcrumb-item a i {
    margin-right: 0.25rem;
}

/* ============================================
   CITY HEADER
   ============================================ */
.city-page-section {
    padding: 0 0 4rem 0;
    background: #F9FAFB;
}

.city-header {
    text-align: center;
    padding: 2rem 0 3rem 0;
    margin-bottom: 2rem;
}

.city-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.city-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    margin: 0;
}

.city-subtitle i {
    color: #047857;
    margin-right: 0.375rem;
}

.city-subtitle strong {
    color: #047857;
    font-weight: 700;
}

/* ============================================
   FILTERS SIDEBAR
   ============================================ */
.filters-sidebar {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #E5E7EB;
    position: sticky;
    top: 20px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E5E7EB;
}

.sidebar-header .filters-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.sidebar-header .filters-title i {
    color: #047857;
    margin-right: 0.5rem;
}

.sidebar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-clear-filters {
    color: #4B5563;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-clear-filters:hover {
    color: #047857;
}

.btn-close-filters {
    background: #F3F4F6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    cursor: pointer;
    transition: all 200ms ease;
}

.btn-close-filters:hover {
    background: #E5E7EB;
    color: #111827;
}

/* Mobile Filter Toggle Button */
.filter-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border: 2px solid #047857;
    border-radius: 0.75rem;
    background: white;
    color: #047857;
    transition: all 200ms ease;
}

.filter-toggle-btn:hover {
    background: #047857;
    color: white;
}

.filter-toggle-btn .toggle-icon {
    font-size: 0.75rem;
    transition: transform 300ms ease;
}

.filter-toggle-btn .toggle-icon.rotated {
    transform: rotate(180deg);
}

/* Collapsible Filter Groups */
.filter-group.collapsible {
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    overflow: hidden;
}

.filter-group-header {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
}

.filter-group-header:hover {
    background: #F3F4F6;
}

.filter-group-header span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group-header span i {
    color: #047857;
    font-size: 1rem;
}

.filter-group-header .collapse-icon {
    font-size: 0.75rem;
    color: #4B5563;
    transition: transform 300ms ease;
}

.filter-group-header .collapse-icon.rotated {
    transform: rotate(180deg);
}

.filter-group-content {
    padding: 1rem;
    background: white;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 300ms ease, padding 300ms ease;
}

.filter-group-content.collapsed {
    max-height: 0;
    padding: 0 1rem;
}

/* District Search Box */
.district-search-box {
    margin-bottom: 0.75rem;
}

.district-search-box .form-control {
    border: 1.5px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.district-search-box .form-control:focus {
    border-color: #047857;
    box-shadow: 0 0 0 2px rgba(44, 179, 79, 0.1);
}

/* Filter Options List */
.filter-options-list {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-options-list::-webkit-scrollbar {
    width: 6px;
}

.filter-options-list::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 3px;
}

.filter-options-list::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.filter-options-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 200ms ease;
    border: 1px solid transparent;
    margin: 0;
}

.filter-option:hover {
    background: #F3F4F6;
}

.filter-option.active {
    background: #d1fae5;
    border-color: #047857;
}

.filter-option input[type="radio"] {
    display: none;
}

.filter-option .option-text {
    flex: 1;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.filter-option.active .option-text {
    color: #047857;
    font-weight: 600;
}

.filter-option .option-count {
    font-size: 0.75rem;
    color: #4B5563;
    background: #F3F4F6;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    font-weight: 600;
}

.filter-option.active .option-count {
    background: #047857;
    color: white;
}

/* Filter Submit */
.filter-submit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.filter-submit .btn-primary {
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

/* Legacy filter styles */
.filter-group:not(.collapsible) {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    display: block;
}

.filter-label i {
    color: #047857;
    margin-right: 0.375rem;
}

.filter-group .form-control,
.filter-group .form-select {
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #111827;
    transition: all 200ms ease;
}

.filter-group .form-control:focus,
.filter-group .form-select:focus {
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(44, 179, 79, 0.1);
    outline: none;
}

.filters-sidebar .btn-primary {
    font-weight: 600;
}

/* ============================================
   SORT BAR
   ============================================ */
.sort-bar {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #E5E7EB;
}

.results-info {
    font-size: 1rem;
    color: #4B5563;
    font-weight: 500;
}

.results-info strong {
    color: #047857;
    font-size: 1.125rem;
    font-weight: 700;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-options label {
    font-size: 0.875rem;
    color: #4B5563;
    font-weight: 600;
    margin: 0;
}

.sort-options .form-select {
    width: auto;
    min-width: 200px;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.sort-options .form-select:focus {
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(44, 179, 79, 0.1);
    outline: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-nav {
    margin-top: 3rem;
}

.pagination {
    gap: 0.375rem;
    margin: 0;
}

.page-item {
    margin: 0;
}

.page-link {
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    color: #4B5563;
    font-weight: 600;
    padding: 0.625rem 1rem;
    transition: all 200ms ease;
    background: #FFFFFF;
}

.page-link:hover {
    border-color: #047857;
    background: #047857;
    color: white;
}

.page-item.active .page-link {
    background: #047857;
    border-color: #047857;
    color: white;
}

.page-link i {
    font-size: 0.875rem;
}

/* ============================================
   THERAPIST CARDS (HORIZONTAL LIST)
   ============================================ */
.therapists-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.therapist-card-horizontal {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    transition: all 300ms ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.therapist-card-horizontal:hover {
    box-shadow: 0 8px 20px rgba(44, 179, 79, 0.12);
    border-color: #047857;
}

/* Desktop Layout - Butonlar alta gelsin */
@media (min-width: 769px) {
    .therapist-card-horizontal .therapist-photo {
        flex: 0 0 auto;
    }

    .therapist-card-horizontal .therapist-info {
        flex: 1 1 0;
        min-width: 300px;
    }

    .therapist-card-horizontal .therapist-actions {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid #E5E7EB;
        margin-top: 0;
    }

    .therapist-card-horizontal .therapist-actions .btn {
        flex: 0 1 auto;
        min-width: 120px;
        max-width: 160px;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 0.5rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 200ms ease;
    }

    .therapist-card-horizontal .therapist-actions .btn-primary,
    .therapist-card-horizontal .therapist-actions .btn-appointment {
        background: #047857;
        border: 2px solid #047857;
        color: #fff;
    }

    .therapist-card-horizontal .therapist-actions .btn-primary:hover,
    .therapist-card-horizontal .therapist-actions .btn-appointment:hover {
        background: #065f46;
        border-color: #065f46;
    }

    .therapist-card-horizontal .therapist-actions .btn-outline-primary {
        background: #fff;
        border: 2px solid #047857;
        color: #047857;
    }

    .therapist-card-horizontal .therapist-actions .btn-outline-primary:hover {
        background: #047857;
        color: #fff;
    }

    .therapist-card-horizontal .therapist-actions .btn-success {
        background: #25D366;
        border: 2px solid #25D366;
        color: #fff;
    }

    .therapist-card-horizontal .therapist-actions .btn-success:hover {
        background: #128C7E;
        border-color: #128C7E;
    }

    .therapist-card-horizontal .therapist-actions .btn-outline-secondary {
        background: #fff;
        border: 2px solid #6B7280;
        color: #4B5563;
    }

    .therapist-card-horizontal .therapist-actions .btn-outline-secondary:hover {
        background: #6B7280;
        color: #fff;
    }
}

/* Photo Section */
.therapist-card-horizontal .therapist-photo {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.therapist-card-horizontal .therapist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #E5E7EB;
}

.therapist-card-horizontal .photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    font-size: 3rem;
}

.therapist-card-horizontal .verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #10B981;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Info Section */
.therapist-card-horizontal .therapist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.therapist-card-horizontal .therapist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

/* Meta Info Row */
.therapist-card-horizontal .therapist-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.therapist-card-horizontal .therapist-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: #4B5563;
    font-weight: 500;
}

.therapist-card-horizontal .therapist-meta i {
    color: #047857;
    font-size: 1rem;
}

/* Rating Section */
.therapist-card-horizontal .rating-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.therapist-card-horizontal .stars {
    display: flex;
    gap: 0.25rem;
}

.therapist-card-horizontal .stars i {
    color: #D1D5DB;
    font-size: 1rem;
}

.therapist-card-horizontal .stars i.filled {
    color: #F59E0B;
}

.therapist-card-horizontal .rating-text {
    font-size: 0.9375rem;
    color: #4B5563;
    font-weight: 600;
}

/* Bio/Description */
.therapist-card-horizontal .therapist-bio {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Tags */
.therapist-card-horizontal .service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.therapist-card-horizontal .tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid;
}

.therapist-card-horizontal .tag i {
    font-size: 0.875rem;
}

.therapist-card-horizontal .tag-home {
    background: #d1fae5;
    color: #047857;
    border-color: #a7f3d0;
}

.therapist-card-horizontal .tag-clinic {
    background: #155E75;
    color: #FFFFFF;
    border-color: #155E75;
}

.therapist-card-horizontal .tag-online {
    background: #92400E;
    color: #FFFFFF;
    border-color: #92400E;
}


/* Price Range */
.therapist-card-horizontal .price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.therapist-card-horizontal .price-range i {
    color: #10B981;
    font-size: 1.125rem;
}

/* Appointment Calendar */
.appointment-calendar {
    border-top: 1px solid #E5E7EB;
    padding-top: 1rem;
    margin-top: 1rem;
}

.calendar-header {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-header i {
    color: #047857;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
    padding: 0.375rem;
    background: #F9FAFB;
    border-radius: 0.375rem;
}

.day-date {
    display: block;
    font-size: 0.75rem;
    color: #4B5563;
    font-weight: 500;
    margin-top: 0.125rem;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.time-slot {
    padding: 0.5rem 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    background: white;
    color: #047857;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
    text-align: center;
}

.time-slot.available:hover {
    background: #047857;
    color: white;
    border-color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 179, 79, 0.2);
}

.time-slot.booked {
    background: #F3F4F6;
    color: #4B5563;
    border-color: #E5E7EB;
    cursor: not-allowed;
    text-decoration: line-through;
}

.no-slots {
    font-size: 0.75rem;
    color: #4B5563;
    text-align: center;
    padding: 0.5rem;
    font-style: italic;
}

.show-more-times {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    color: #047857;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 200ms ease;
}

.show-more-times:hover {
    color: #047857;
}

.show-more-times i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Action Buttons */
.therapist-card-horizontal .therapist-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.therapist-card-horizontal .therapist-actions .btn {
    flex: 1;
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.therapist-card-horizontal .btn-outline-primary {
    color: #047857;
    border: 2px solid #047857;
    background: white;
}

.therapist-card-horizontal .btn-outline-primary:hover {
    background: #047857;
    color: white;
}

.therapist-card-horizontal .btn-primary {
    background: #047857;
    border: 2px solid #047857;
    color: white;
}

    background: #047857;
    border: 2px solid #047857;
    border-color: #047857;
}

.therapist-card-horizontal .btn-success {
    background: #047857;
    border: 2px solid #047857;
    color: white;
}

.therapist-card-horizontal .btn-success:hover {
    background: #047857;
    border-color: #047857;
}

/* ============================================
   NO RESULTS
   ============================================ */
.no-results {
    background: #FFFFFF;
    padding: 5rem 3rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #E5E7EB;
}

.no-results-icon {
    font-size: 5rem;
    color: #E5E7EB;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */
.seo-content-section {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
}

.seo-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-bottom: 3px solid #047857;
    padding-bottom: 1rem;
}

.seo-text {
    color: #374151;
    line-height: 1.8;
}

.seo-text p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.seo-text strong {
    color: #111827;
    font-weight: 700;
}

.seo-text h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.seo-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #047857;
    border-radius: 2px;
}

.seo-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.seo-text ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
}

.seo-text ul li:last-child {
    border-bottom: none;
}

.seo-text ul li i {
    position: absolute;
    left: 0;
    top: 0.875rem;
    color: #047857;
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    /* Hide filter sidebar by default on mobile */
    .filters-sidebar {
        display: none;
        margin-bottom: 2rem;
        position: relative;
        top: 0;
    }

    .filters-sidebar.show {
        display: block;
        animation: slideDown 300ms ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .sort-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .sort-options {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-options .form-select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-breadcrumb {
        padding: 1rem 0 0.25rem 0;
        margin-bottom: 0.5rem;
    }

    .breadcrumb {
        font-size: 0.8125rem;
    }

    .city-header {
        padding: 1.5rem 0 2rem 0;
        margin-bottom: 1.5rem;
    }

    .city-header h1 {
        font-size: 2rem;
    }

    .city-subtitle {
        font-size: 1rem;
    }

    .city-page-section {
        padding: 0 0 3rem 0;
    }

    .filters-sidebar {
        padding: 1.5rem;
    }

    /* =============================================
       MOBİL KART - BASİT VE TEMİZ TASARIM
       ============================================= */
    .therapist-card-horizontal {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        padding: 0 !important;
        gap: 0 !important;
        background: #fff !important;
        border-radius: 0.5rem !important;
        overflow: hidden !important;
        border: 1px solid #E5E7EB !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    }

    /* FOTOĞRAF - Sol taraf, tam yükseklik */
    .therapist-card-horizontal .therapist-photo {
        width: 120px !important;
        min-height: 100% !important;
        flex-shrink: 0 !important;
        position: relative !important;
        background: #F3F4F6 !important;
        align-self: stretch !important;
    }

    .therapist-card-horizontal .therapist-photo img {
        width: 120px !important;
        height: 100% !important;
        min-height: 180px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        border: none !important;
        display: block !important;
    }

    .therapist-card-horizontal .therapist-photo .photo-placeholder {
        width: 120px !important;
        height: 100% !important;
        min-height: 180px !important;
        border-radius: 0 !important;
        font-size: 2.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #E5E7EB !important;
    }

    .therapist-card-horizontal .therapist-photo .verified-badge {
        position: absolute !important;
        bottom: 10px !important;
        right: 10px !important;
        width: 24px !important;
        height: 24px !important;
        font-size: 0.7rem !important;
        border: 2px solid #fff !important;
        z-index: 2 !important;
    }

    /* BİLGİLER - Sağ taraf */
    .therapist-card-horizontal .therapist-info {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    /* İsim satırı */
    .therapist-card-horizontal .name-services-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }

    .therapist-card-horizontal .name-availability {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
    }

    .therapist-card-horizontal .therapist-name {
        font-size: 1.0625rem !important;
        font-weight: 700 !important;
        color: #111827 !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }

    .therapist-card-horizontal .availability-badge {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.75rem !important;
    }

    /* Servis etiketleri */
    .therapist-card-horizontal .service-tags {
        display: flex !important;
        gap: 0.375rem !important;
        flex-wrap: wrap !important;
    }

    .therapist-card-horizontal .service-tags .tag {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.75rem !important;
    }

    /* Meta bilgiler */
    .therapist-card-horizontal .therapist-meta {
        display: flex !important;
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
    }

    .therapist-card-horizontal .therapist-meta span {
        font-size: 0.8125rem !important;
        color: #4B5563 !important;
    }

    /* Rating */
    .therapist-card-horizontal .rating-section {
        display: flex !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }

    .therapist-card-horizontal .stars i {
        font-size: 0.8125rem !important;
    }

    .therapist-card-horizontal .rating-text {
        font-size: 0.8125rem !important;
        color: #4B5563 !important;
    }

    /* Rating ve Fiyat satırı */
    .therapist-card-horizontal .rating-price-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.5rem !important;
        flex-wrap: wrap !important;
        margin-top: auto !important;
    }

    .therapist-card-horizontal .price-range-badge {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #111827 !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Bio gizle */
    .therapist-card-horizontal .therapist-bio {
        display: none !important;
    }

    /* =============================================
       BUTONLAR - Temiz yatay düzen
       ============================================= */
    .therapist-card-horizontal .therapist-actions {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        border-top: 1px solid #E5E7EB !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .therapist-card-horizontal .therapist-actions .btn {
        flex: 1 !important;
        min-height: 52px !important;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.8125rem !important;
        font-weight: 600 !important;
        border-radius: 0 !important;
        border: none !important;
        border-right: 1px solid #E5E7EB !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.375rem !important;
        margin: 0 !important;
        background: #fff !important;
        color: #374151 !important;
        text-decoration: none !important;
    }

    .therapist-card-horizontal .therapist-actions .btn:last-child {
        border-right: none !important;
    }

    .therapist-card-horizontal .therapist-actions .btn i {
        font-size: 1.125rem !important;
    }

    /* Randevu butonu - Mavi */
    .therapist-card-horizontal .therapist-actions .btn-primary,
    .therapist-card-horizontal .therapist-actions .btn-appointment {
        background: #047857 !important;
        color: #FFFFFF !important;
    }

    /* Ara butonu */
    .therapist-card-horizontal .therapist-actions .btn-outline-primary {
        color: #047857 !important;
        background: transparent !important;
        border-color: #047857 !important;
    }

    /* WhatsApp butonu */
    .therapist-card-horizontal .therapist-actions .btn-success {
        color: #25D366 !important;
    }

    /* Calendar Mobile */
    .calendar-days {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .city-header {
        padding: 1rem 0 1.5rem 0;
        margin-bottom: 1rem;
    }

    .city-header h1 {
        font-size: 1.75rem;
    }

    .sort-bar {
        padding: 1rem;
    }

    .filters-sidebar {
        padding: 1.25rem;
    }

    /* =============================================
       KÜÇÜK MOBİL (576px)
       ============================================= */
    .therapist-card-horizontal .therapist-photo {
        width: 100px !important;
    }

    .therapist-card-horizontal .therapist-photo img {
        width: 100px !important;
        min-height: 160px !important;
    }

    .therapist-card-horizontal .therapist-info {
        padding: 0.875rem !important;
        gap: 0.375rem !important;
    }

    .therapist-card-horizontal .therapist-name {
        font-size: 1rem !important;
    }

    .therapist-card-horizontal .therapist-actions .btn {
        min-height: 48px !important;
        padding: 0.625rem 0.375rem !important;
        font-size: 0.75rem !important;
    }

    .seo-content-section {
        padding: 1.5rem;
    }

    .seo-title {
        font-size: 1.5rem;
    }

    .seo-text h3 {
        font-size: 1.125rem;
    }
}

/* =============================================
   ÇOK KÜÇÜK MOBİL (400px altı)
   ============================================= */
@media (max-width: 400px) {
    .therapist-card-horizontal .therapist-photo {
        width: 90px !important;
    }

    .therapist-card-horizontal .therapist-photo img {
        width: 90px !important;
        min-height: 150px !important;
    }

    .therapist-card-horizontal .therapist-info {
        padding: 0.75rem !important;
        gap: 0.25rem !important;
    }

    .therapist-card-horizontal .therapist-name {
        font-size: 0.9375rem !important;
    }

    .therapist-card-horizontal .service-tags {
        display: none !important;
    }

    .therapist-card-horizontal .therapist-actions .btn {
        min-height: 46px !important;
        padding: 0.5rem 0.25rem !important;
    }

    /* Küçük ekranda buton yazılarını gizle, sadece ikon */
    .therapist-card-horizontal .therapist-actions .btn span:not(.sr-only) {
        display: none !important;
    }
}

/* ===================================
   APPOINTMENT MODAL
   =================================== */

.modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #047857 0%, #047857 100%);
    color: white;
    border-radius: 1rem 1rem 0 0;
    padding: 1.25rem 1.5rem;
    border: none;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-title i {
    margin-right: 0.5rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #E5E7EB;
    padding: 1rem 1.5rem;
    background: #F9FAFB;
    border-radius: 0 0 1rem 1rem;
}

/* Appointment Info Box */
.appointment-info-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #047857;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.appointment-info-box .info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.appointment-info-box .info-row:last-child {
    margin-bottom: 0;
}

.appointment-info-box .info-label {
    font-weight: 600;
    color: #047857;
    min-width: 80px;
}

.appointment-info-box .info-label i {
    margin-right: 0.375rem;
    width: 16px;
    text-align: center;
}

.appointment-info-box .info-value {
    color: #111827;
    font-weight: 500;
}

/* Form Styling */
#appointmentForm .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

#appointmentForm .form-label i {
    color: #047857;
    margin-right: 0.375rem;
    width: 16px;
    text-align: center;
}

#appointmentForm .form-control {
    border: 1.5px solid #D1D5DB;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    transition: all 200ms ease;
}

#appointmentForm .form-control:focus {
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(44, 179, 79, 0.1);
}

#appointmentForm .form-control::placeholder {
    color: #4B5563;
}

#appointmentForm textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

#appointmentForm .form-text {
    font-size: 0.8125rem;
    color: #4B5563;
    margin-top: 0.375rem;
}

/* Alert Styling */
#appointmentAlert {
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
}

#appointmentAlert ul {
    padding-left: 1.25rem;
}

#appointmentAlert li {
    margin-top: 0.25rem;
}

/* Modal Buttons */
.modal-footer .btn {
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 200ms ease;
}

.modal-footer .btn i {
    margin-right: 0.375rem;
}

.modal-footer .btn-secondary {
    background: #6B7280;
    border-color: #4B5563;
}

.modal-footer .btn-secondary:hover {
    background: #4B5563;
    border-color: #4B5563;
    transform: translateY(-1px);
}

.modal-footer .btn-primary {
    background: #047857;
    border-color: #047857;
}

.modal-footer .btn-primary:hover {
    background: #047857;
    border-color: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 179, 79, 0.3);
}

.modal-footer .btn-primary:disabled {
    background: #6ee7b7;
    border-color: #6ee7b7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Modal Adjustments */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .appointment-info-box {
        padding: 0.875rem 1rem;
    }

    .appointment-info-box .info-label {
        min-width: 70px;
        font-size: 0.875rem;
    }

    .appointment-info-box .info-value {
        font-size: 0.875rem;
    }
}

/* Larger tablets and small desktops */
@media (max-width: 1200px) {
    .calendar-days {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Compact card adjustments */
.therapist-card-horizontal .therapist-name {
    font-size: 1.125rem !important;
    margin-bottom: 0.5rem !important;
}

.therapist-card-horizontal .therapist-meta,
.therapist-card-horizontal .therapist-bio,
.therapist-card-horizontal .price-range {
    font-size: 0.875rem !important;
}

.therapist-card-horizontal .rating-section {
    margin: 0.5rem 0 !important;
}

.therapist-card-horizontal .service-tags {
    margin: 0.75rem 0 !important;
}

.therapist-card-horizontal .service-tags .tag {
    font-size: 0.75rem !important;
    padding: 0.25rem 0.625rem !important;
}

.appointment-calendar {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

.calendar-header {
    font-size: 0.875rem !important;
    margin-bottom: 0.75rem !important;
}

.calendar-day .day-label {
    font-size: 0.75rem !important;
    padding: 0.375rem !important;
}

.time-slot {
    font-size: 0.75rem !important;
    padding: 0.375rem 0.5rem !important;
}

.therapist-actions .btn {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
    min-width: 120px !important;
}

.calendar-days {
    gap: 0.5rem !important;
}

.calendar-day {
    padding: 0.5rem !important;
}

.time-slots {
    gap: 0.375rem !important;
}

/* Modal header - force white text */
.modal-header,
.modal-header .modal-title,
.modal-header h5 {
    color: #FFFFFF !important;
}

.modal-header .modal-title i {
    color: #FFFFFF !important;
}

/* X button - force white */
.modal-header .btn-close {
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
    background-color: transparent !important;
}

.modal-header .btn-close:hover {
    opacity: 0.8 !important;
    transform: scale(1.1);
}

/* Modal footer buttons - ensure text colors */
.modal-footer .btn-secondary {
    color: #FFFFFF !important;
    background: #6B7280 !important;
    border-color: #4B5563 !important;
}

.modal-footer .btn-secondary:hover {
    color: #FFFFFF !important;
    background: #4B5563 !important;
    border-color: #4B5563 !important;
}

.modal-footer .btn-primary {
    color: #FFFFFF !important;
    background: #047857 !important;
    border-color: #047857 !important;
}

.modal-footer .btn-primary:hover {
    color: #FFFFFF !important;
    background: #047857 !important;
    border-color: #047857 !important;
}

/* Appointment Button Styling */
.btn-appointment {
    background: linear-gradient(135deg, #047857 0%, #047857 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(44, 179, 79, 0.3) !important;
    flex: 1 !important;
    min-width: 180px !important;
}

.btn-appointment:hover {
    background: linear-gradient(135deg, #047857 0%, #1E3A8A 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(44, 179, 79, 0.4) !important;
}

.btn-appointment:active {
    transform: translateY(0) !important;
}

/* ===================================
   REDESIGNED COMPACT CARD LAYOUT
   =================================== */

/* Fotoğraf boyutunu büyüt */
.therapist-card-horizontal .therapist-photo {
    width: 140px !important;
    height: 140px !important;
}

/* İsim ve Servis Etiketleri - Aynı Satır */
.name-services-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem !important;
    flex-wrap: wrap;
}

.name-services-row .therapist-name {
    margin: 0 !important;
    flex: 0 0 auto;
}

.name-services-row .service-tags {
    display: flex;
    gap: 0.375rem;
    margin: 0 !important;
    flex-wrap: wrap;
}

/* Rating ve Fiyat - Aynı Satır */
.rating-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 0.75rem 0 !important;
    flex-wrap: wrap;
}

.rating-price-row .rating-section {
    margin: 0 !important;
    flex: 0 0 auto;
}

/* Fiyat Badge - Temiz Tasarım */
.price-range-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: #111827;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
}

.price-range-badge i {
    color: #10B981;
    font-size: 0.875rem;
}

.price-range-badge strong {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 700;
}

.price-range-badge .price-label {
    color: #4B5563;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Bio kısaltma */
.therapist-bio {
    margin: 0.5rem 0 !important;
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
}

/* Meta bilgiler */
.therapist-meta {
    margin-bottom: 0.5rem !important;
}

/* Butonlar daha kompakt */
.therapist-actions {
    margin-top: 0.75rem !important;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .name-services-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .price-range-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Name + Availability Row */
.therapist-card-horizontal .name-availability {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

/* Availability Badges - Inline Style */
.therapist-card-horizontal .availability-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.therapist-card-horizontal .availability-badge i {
    font-size: 0.625rem;
}

.therapist-card-horizontal .availability-available {
    background: #D1FAE5;
    color: #065F46;
}

.therapist-card-horizontal .availability-limited {
    background: #FEF3C7;
    color: #92400E;
}

.therapist-card-horizontal .availability-full {
    background: #FEE2E2;
    color: #991B1B;
}

.therapist-card-horizontal .therapist-photo {
    position: relative;
}



/* ============================================
   FAQ SECTION - SIKÇA SORULAN SORULAR
   ============================================ */
.faq-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.faq-section .section-title i {
    color: #047857;
    margin-right: 0.5rem;
}

/* Accordion Styles */
.faq-section .accordion-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-header {
    margin: 0;
}

.faq-section .accordion-button {
    background: #F9FAFB;
    color: #111827;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #047857;
    color: #fff;
}

.faq-section .accordion-button:not(.collapsed) i {
    color: #fff;
}

.faq-section .accordion-button i {
    color: #047857;
    width: 24px;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23047857'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 1.25rem 1.5rem;
    background: #fff;
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-section .accordion-body ul,
.faq-section .accordion-body ol {
    padding-left: 1.25rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
}

.faq-section .accordion-body strong {
    color: #111827;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .faq-section .section-title {
        font-size: 1.25rem;
    }

    .faq-section .accordion-button {
        font-size: 0.9375rem;
        padding: 1rem 1.25rem;
    }

    .faq-section .accordion-body {
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }
}
