/* ===================================
   THERAPIST DETAIL PAGE
   =================================== */

.therapist-detail-page {
    padding: 2rem 0 4rem 0;
    background: #F9FAFB;
    min-height: 100vh;
}

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

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

.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;
}

/* ===================================
   HERO SECTION
   =================================== */

.therapist-hero {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

/* Photo */

.therapist-photo-large img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
    border: 3px solid #E5E7EB;
}

.photo-placeholder-large {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    font-size: 5rem;
}

/* Header Info */
.therapist-header-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Name and Services */
.name-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.therapist-name-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.therapist-meta-large {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    color: #4B5563;
}

.therapist-meta-large .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.therapist-meta-large .meta-item i {
    color: #047857;
}

.service-tags-large {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-tags-large .tag {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.service-tags-large .tag-home {
    background: #d1fae5;
    color: #047857;
}

.service-tags-large .tag-clinic {
    background: #FEF3C7;
    color: #92400E;
}

.service-tags-large .tag-online {
    background: #D1FAE5;
    color: #065F46;
}

/* Rating and Price */
.rating-price-large {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.rating-stars-large {
    display: flex;
    gap: 0.25rem;
    font-size: 1.25rem;
}

.rating-stars-large .fa-star.filled,
.rating-stars-large .fa-star-half-alt.filled {
    color: #F59E0B;
}

.rating-stars-large .fa-star:not(.filled) {
    color: #D1D5DB;
}

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

.rating-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.rating-count {
    font-size: 1rem;
    color: #4B5563;
}

.price-box-large {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.price-box-large .price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.price-box-large .price-amount {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Action Buttons */
.action-buttons-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons-large .btn {
    flex: 1;
    min-width: 200px;
    font-weight: 600;
}

.btn-appointment-large {
    background: linear-gradient(135deg, #047857 0%, #047857 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(44, 179, 79, 0.3) !important;
}

.btn-appointment-large:hover {
    background: linear-gradient(135deg, #047857 0%, #1E3A8A 100%) !important;
    transform: translateY(-2px);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content-section {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #047857;
    font-size: 1.125rem;
}

.section-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #4B5563;
}

/* Specialties */
.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.specialty-badge {
    background: #F3F4F6;
    color: #374151;
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #E5E7EB;
    transition: all 200ms ease;
}

.specialty-badge:hover {
    background: #047857;
    color: white;
    border-color: #047857;
}

/* ===================================
   SIDEBAR
   =================================== */

.sidebar-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E5E7EB;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #4B5563;
}

.info-item i {
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: #F9FAFB;
    color: #374151;
    text-decoration: none;
    transition: all 200ms ease;
}

.contact-item:hover {
    background: #d1fae5;
    color: #047857;
}

.contact-item i {
    font-size: 1rem;
    color: #047857;
    width: 20px;
    text-align: center;
}

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

@media (max-width: 992px) {
    .therapist-hero {
        padding: 1.5rem;
    }

    .therapist-name-large {
        font-size: 1.375rem;
    }

    .rating-price-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .action-buttons-large .btn {
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .therapist-detail-page {
        padding: 1rem 0 2rem 0;
    }

    .therapist-hero {
        padding: 1.25rem;
    }

    .therapist-name-large {
        font-size: 1.25rem;
    }

    .name-services-header {
        flex-direction: column;
    }

    .service-tags-large {
        width: 100%;
    }

    .content-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.125rem;
    }

    .sidebar-card {
        padding: 1.25rem;
    }
}

/* ===================================
   REVIEWS SECTION
   =================================== */

.review-count-badge {
    background: #E5E7EB;
    color: #1F2937;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    margin-left: auto;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    background: #F9FAFB;
    transition: all 200ms ease;
}

.review-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #047857;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #047857 0%, #047857 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem 0;
}

.review-date {
    font-size: 1rem;
    color: #4B5563;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1rem;
}

.review-rating .fa-star.filled {
    color: #F59E0B;
}

.review-rating .fa-star:not(.filled) {
    color: #D1D5DB;
}

.review-comment {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
}

@media (max-width: 768px) {
    .review-item {
        padding: 1.25rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .review-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .review-rating {
        align-self: flex-start;
    }
}

/* ===================================
   REVIEW FORM
   =================================== */

.review-form {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
}

.review-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

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

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

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

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    color: #D1D5DB;
    transition: all 200ms ease;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #F59E0B;
    transform: scale(1.1);
}

.star-rating-input input[type="radio"]:checked ~ label {
    color: #F59E0B;
}

.star-rating-input label:hover {
    transform: scale(1.2);
}

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

#reviewAlert ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .review-form {
        padding: 1.25rem;
    }

    .star-rating-input {
        font-size: 1.375rem;
    }
}



/* Therapist Profile Page Styles */

/* Profile Photo Container */
.therapist-photo-large {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.therapist-photo-large img {
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-placeholder-large {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder-large i {
    font-size: 5rem;
    color: white;
}

/* Profile Badges Container - Side by Side */
.profile-badges-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    align-items: flex-start;
}

/* Verified Badge */
.verified-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
    color: white;
    border: none;
    cursor: default;
    width: 100%;
    max-width: 280px;
}

.verified-badge-large i {
    font-size: 1.125rem;
}

.verified-badge-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

/* Availability Badge */
.availability-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 280px;
}

.availability-badge-large i {
    font-size: 1.125rem;
}

/* Available - Green */
.availability-badge-large.availability-available {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

/* Limited - Orange */
.availability-badge-large.availability-limited {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
}

/* Full - Red */
.availability-badge-large.availability-full {
    background: linear-gradient(135deg, #fc8181 0%, #f56565 100%);
    color: white;
}

.availability-badge-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-badges-container {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .verified-badge-large,
    .availability-badge-large {
        width: auto !important;
        padding: 8px 14px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .therapist-photo-large img {
        max-width: 100%;
    }

    .verified-badge-large,
    .availability-badge-large {
        font-size: 1rem;
        padding: 6px 12px;
    }
}
/* ========== MOBILE FIXES ========== */

/* Mobile Name Style */
.therapist-name-mobile {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* Mobile/Tablet: Sidebar above main content */
@media (max-width: 991px) {
    .therapist-detail-page .row.mt-4 {
        display: flex !important;
        flex-direction: column-reverse !important;
        flex-wrap: nowrap !important;
    }
    
    .therapist-detail-page .row.mt-4 > .col-lg-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 2rem !important;
    }
    
    .therapist-detail-page .row.mt-4 > .col-lg-8 {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}


/* Membership Badge Styles */
.membership-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.membership-badge-large i {
  font-size: 14px;
}

.membership-pro {
  background: linear-gradient(135deg, #0d7d74 0%, #0a5c55 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 125, 116, 0.3);
}

.membership-premium {
  background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.membership-temel {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: #fff;
}

/* ===================================
   SPECIALTY TAGS (SEO-OPTIMIZED)
   =================================== */

.specialty-tags-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  font-size: 14px;
  color: #0369a1;
  transition: all 0.2s ease;
}

.specialty-tag:hover {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  transform: translateY(-1px);
}

.specialty-tag.featured {
  background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%);
  border-color: #facc15;
  color: #854d0e;
  font-weight: 600;
}

.specialty-tag.featured i {
  color: #eab308;
}

/* ===================================
   SERVICE DISTRICTS (Çalıştığı Bölgeler)
   =================================== */

.service-districts-display {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border: 1px solid #38bdf8;
  border-radius: 20px;
  color: #0369a1;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.district-tag:hover {
  background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.district-tag i {
  color: #0ea5e9;
  font-size: 12px;
}
