/* ========================================
   THERAPIST PROFILE PAGE - PROFESSIONAL DESIGN
   Theme Color: #3fa5e7
   ======================================== */

/* Main Container */
.therapist-profile {
    /*background: #f5f7fa;*/
    padding: 40px 0;
}

/* Hero Section */
.therapist-hero {
    background: white;
    /*border-radius: 8px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);*/
    /*padding: 40px;*/
    margin-bottom: 30px;
    
}

/* Therapist Image */
.therapist-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /*border: 3px solid #e9ecef;*/
}

.therapist-image {
      width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    object-position: top;
}

/* Therapist Details */
.therapist-details h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.therapist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 5px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 0.95rem;
}

.meta-item i {
    color: #3fa5e7;
    font-size: 1rem;
}

.meta-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Fee Badge */
.fee-badge {
    display: inline-block;

    color: #1a1a1a;
   
    border-radius: 6px;
    font-size:24px;
    font-weight: 600;
    margin-bottom:10px;
   
}
.fee-badge  span.small{
    font-size: 14px;
    color: #555;
}

.fee-badge i {
    color: #3fa5e7;
    margin-right: 4px;
}

/* Primary Button - Reusable across site */
.btn-primary-custom {
    background: #3fa5e7;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0px;
    box-shadow: 0 2px 6px rgba(63, 165, 231, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-custom:hover {
    background: #2d8fcc;
    box-shadow: 0 4px 12px rgba(63, 165, 231, 0.35);
    color: white;
    transform: translateY(-1px);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-primary-custom i {
    margin-right: 8px;
}

/* Full width button variant */
.btn-primary-custom.btn-block {
    width: 100%;
}

/* Section Cards */
.section-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #3fa5e7;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
    display: block;
}

/* Specialty and Language Tags */
.specialty-tag,
.language-tag {
display: inline-block;
    background: #e7f5fd;
    color: #1a5a7a;
    padding: 3px 7px;
    border-radius: 4px;
    margin: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #3fa5e7;
}

.specialty-tag i,
.language-tag i {
    margin-right: 6px;
    color: #3fa5e7;
}

.language-tag {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.language-tag i {
    color: #6c757d;
}

/* About Text */
.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    text-align: left;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #3fa5e7;
    box-shadow: 0 4px 12px rgba(63, 165, 231, 0.15);
}

.info-card-icon {
    font-size: 2rem;
    color: #3fa5e7;
    margin-bottom: 0;
}

.info-card-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Security Badge */
.security-badge {
    font-size: 0.75rem;
    color: #6c757d;
}

.security-badge i {
    color: #28a745;
    margin-right: 4px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .therapist-hero {
        padding: 24px;
    }

    .therapist-details h1 {
        font-size: 1.6rem;
    }

    .btn-primary-custom {
        margin-top: 20px;
        width: 100%;
    }

    .therapist-image {
        height: 250px;
    }

    .section-card {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .therapist-meta {
        gap: 12px;
    }
}