/* Static Advocate Profile Styles - Modern Design with Knowledge Base Navigation */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 80px; /* Account for fixed premium nav */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Breadcrumb Navigation - from Knowledge Base */
.breadcrumb-nav {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666666;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.current {
    color: #000000;
    font-weight: 500;
}

.breadcrumb-arrow {
    width: 16px;
    height: 16px;
    margin: 0 0.5rem;
    color: #666666;
}

.breadcrumb-item:last-child .breadcrumb-arrow {
    display: none;
}

/* Hero Section */
.equinox-hero {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-container {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #e5e5e5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

}

.hero-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-text {
    text-align: center;
}

.hero-name {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 1rem;
}

.hero-location svg {
    width: 18px;
    height: 18px;
}

/* Main Content */
.equinox-main {
    padding: 4rem 0;
    background: #ffffff;
}

.content-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #f5f5f5;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: -0.02em;
}

/* Bio Content */
.bio-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 2rem;
}

.content-well {
    background: #f8f8f8;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e5e5;
}

.joined-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666666;
    font-size: 1rem;
    margin-top: 2rem;
}

.joined-info svg {
    width: 18px;
    height: 18px;
}

/* Credentials Section */
.credential-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.credential-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.credential-header h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
}

.credential-header svg {
    width: 24px;
    height: 24px;
    color: #000000;
}

.credential-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential-item {
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    border-radius: 0.75rem;
    color: #333333;
    font-size: 1rem;
}

/* Legacy styles for existing content */
.stacked-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stacked-list li {
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    border-radius: 0.75rem;
    color: #333333;
    font-size: 1rem;
}

.stacked-list h4 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 1rem;
}

/* Specialties */
.specialties-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.specialty-category {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    padding: 2rem;
}

.specialty-category h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 1rem;
}

.specialty-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.specialty-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #000000;
    color: #ffffff;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.specialties-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Services Section */
.services-offered {
    margin-bottom: 2rem;
}

.services-offered h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

.service-item {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    color: #4a4a4a;
    font-weight: 500;
    text-align: left;
}

/* Rate Structure */
.rate-structure {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rate-structure h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.rate-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.rate-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.rate-unit {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Market Comparison */
.market-comparison {
    margin-top: 1.5rem;
}

.comparison-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.rate-scale {
    margin-bottom: 1rem;
}

.scale-track {
    position: relative;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.scale-fill {
    height: 100%;
    background: #d1d5db;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.market-range-indicator {
    position: absolute;
    top: 0;
    height: 100%;
    background: #93c5fd;
    border-radius: 4px;
    opacity: 0.6;
}

.advocate-marker {
    position: absolute;
    top: -4px;
    transform: translateX(-50%);
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #1a1a1a;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.rate-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.advocate-dot {
    background: #1a1a1a;
}

.range-dot {
    background: #93c5fd;
}

.comparison-text {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.comparison-text.below-average {
    background: #dcfce7;
    color: #166534;
}

.comparison-text.average {
    background: #fef3c7;
    color: #92400e;
}

.comparison-text.above-average {
    background: #fee2e2;
    color: #991b1b;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.payment-list {
    font-size: 0.875rem;
    color: #666;
}

/* Service Modal */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.service-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.service-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-modal-close:hover {
    background: #e9ecef;
    color: #1a1a1a;
}

.service-modal-close svg {
    width: 16px;
    height: 16px;
}

.service-modal-body {
    padding: 1rem 1.5rem 1.5rem;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
}

.service-modal-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-modal-details {
    margin-top: 1rem;
}

.service-modal-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #666;
}

.service-modal-details li::before {
    content: "•";
    color: #008080;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Clickable Service Items */
.service-item {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

/* Hover Effect - add a delay to the hover effect */
.service-item:hover {
    background: #e9e9e9;
}

/* Floating Action Button */
.profile-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: #000000;
    border-radius: 50%;
    border: none;
    box-shadow: 0 8px 24px rgba(24, 24, 24, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
    color: white;
}

.profile-fab:hover {
    background: #303030;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 24, 24, 0.3);
}

.profile-fab:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
}

.profile-fab svg {
    width: 24px;
    height: 24px;
}

.profile-fab-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    white-space: nowrap;
    margin-right: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.profile-fab-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.profile-fab:hover .profile-fab-tooltip {
    opacity: 1;
}

/* Mobile Responsive FAB */
@media (max-width: 768px) {
    .profile-fab {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }
    
    .profile-fab svg {
        width: 20px;
        height: 20px;
    }
    
    .profile-fab-tooltip {
        display: none;
    }
}

/* Unified CTA Button */
.unified-cta-button {
    width: 100%;
    max-width: 400px;
    height: 64px;
    background: #000000;
    border: none;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    border: 1px solid #e5e5e5;
}

.unified-cta-button:hover {
    background: #303030;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.unified-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    flex: 1;
    text-align: left;
}

.cta-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 1.5rem;
}

.cta-rate {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: right;
}

/* Mobile Responsive CTA */
@media (max-width: 768px) {
    .unified-cta-button {
        height: 56px;
        padding: 0 1.5rem;
        border-radius: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-rate {
        font-size: 1rem;
    }
    
    .cta-divider {
        margin: 0 1rem;
    }
}

.service-item:hover::after {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .service-modal-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .service-modal-header h3 {
        font-size: 1.125rem;
    }
    
    .service-modal-body {
        padding: 0.75rem 1rem 1rem;
        max-height: calc(90vh - 80px);
    }
}

/* Age Groups */
.age-groups-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.age-group-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f8f8f8;
    color: #333333;
    border: 1px solid #e5e5e5;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.age-label {
    font-weight: 500;
}

.age-groups-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Location & Availability */
.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
}

.location-item svg {
    width: 24px;
    height: 24px;
    color: #000000;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.location-label {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.location-value {
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}

/* Availability Display */
.availability-display {
    margin-top: 0.5rem;
}

.availability-summary {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.availability-days {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.availability-hours {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Contact CTA */
.equinox-cta {
    background: #000000;
    padding: 3rem 0;
    margin-top: 4rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.rate-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rate-label {
    font-size: 0.875rem;
    color: #cccccc;
    margin-bottom: 0.25rem;
}

.rate-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

/* Footer */
.equinox-footer {
    background: #0a0a0a;
    padding: 3rem 0 2rem;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid #333333;
    border-radius: 50%;
    color: #cccccc;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

/* Toast Notifications */
.equinox-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.equinox-toast.show {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .equinox-hero {
        padding: 2rem 0;
    }
    
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.125rem;
    }
    
    .equinox-main {
        padding: 2rem 0;
    }
    
    .content-section {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .credential-card,
    .rate-structure {
        padding: 1.5rem;
    }
    
    .rate-amount {
        font-size: 2.5rem;
    }
    
    .rate-legend {
        flex-direction: column;
    }
    
    .location-item {
        padding: 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
}

/* Print Styles */
@media print {
    .breadcrumb-nav,
    .profile-header,
    .equinox-cta,
    .equinox-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .equinox-hero {
        border-bottom: 1px solid #ccc;
    }
    
    .content-section {
        border-bottom: 1px solid #ccc;
    }
}