    /* Team Page Specific Styles */
    .team-hero {
        background: linear-gradient(135deg, #eaf7f9 0%, #f0f8ff 100%);
        color: var(--text-bright);
        padding: 150px 0 100px;
        position: relative;
        overflow: hidden;
    }
    
    /* Team hero — concentric arcs top-right + warm glow bottom-center */
    .team-hero::before {
        content: '';
        position: absolute;
        top: -80px; right: -80px;
        width: 460px; height: 460px;
        border-radius: 50%;
        border: 1.5px solid rgba(18,179,197,0.14);
        box-shadow:
            inset 0 0 0 40px rgba(18,179,197,0.0),
            0 0 0 40px rgba(18,179,197,0.05),
            0 0 0 80px rgba(18,179,197,0.03),
            0 0 0 120px rgba(18,179,197,0.015);
        pointer-events: none;
    }

    .team-hero::after {
        content: '';
        position: absolute;
        bottom: -60px; left: 50%;
        transform: translateX(-50%);
        width: 500px; height: 200px;
        background: radial-gradient(ellipse, rgba(18,179,197,0.06) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .breadcrumb {
        background: transparent;
        padding: 0;
    }
    
    .breadcrumb-item a {
        color: var(--text);
    }
    
    .breadcrumb-item.active {
        color: var(--primary-light);
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        color: var(--text-muted);
    }
    
    .team-section {
        padding: 100px 0;
        background: #ffffff;
    }
    
    .team-intro {
        text-align: center;
        margin-bottom: 80px;
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .team-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }
    
    .team-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .team-image-container {
        position: relative;
        overflow: hidden;
        height: 350px;
    }
    
    .team-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .team-card:hover .team-image {
        transform: scale(1.05);
    }
    
    .team-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: var(--white);
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }
    
    .team-card:hover .team-overlay {
        transform: translateY(0);
    }
    
    .team-info {
        padding: 30px;
        text-align: center;
    }
    
    .team-name {
        font-size: 1.4rem;
        margin-bottom: 5px;
        color: var(--text);
    }
    
    .team-role {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .team-bio {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .team-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .skill-tag {
        background: var(--bg-alt);
        color: var(--primary);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .team-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        background: var(--bg-alt);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text);
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-3px);
    }
    
    .team-stats {
        background: var(--gradient);
        color: var(--white);
        padding: 80px 0;
        text-align: center;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .team-stats .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #ffffff !important;
    }

    .team-stats .stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
        color: #ffffff !important;
    }
    
    .team-cta {
        background: var(--bg-alt);
        padding: 100px 0;
        text-align: center;
    }
    
    /* Enhanced Mobile Responsiveness */
    @media (max-width: 991.98px) {
        .team-hero {
            padding: 120px 0 80px;
        }
        
        .team-section {
            padding: 80px 0;
        }
        
        .team-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .team-image-container {
            height: 300px;
        }
    }
    
    @media (max-width: 767.98px) {
        .team-hero {
            padding: 100px 0 60px;
        }
        
        .team-section {
            padding: 60px 0;
        }
        
        .team-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .team-image-container {
            height: 280px;
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-stats {
            padding: 60px 0;
        }
        
        .team-cta {
            padding: 80px 0;
        }
    }
    
    @media (max-width: 575.98px) {
        .team-hero {
            padding: 90px 0 50px;
        }
        
        .team-section {
            padding: 50px 0;
        }
        
        .team-image-container {
            height: 250px;
        }
        
        .team-info {
            padding: 20px;
        }
        
        .team-name {
            font-size: 1.3rem;
        }
        
        .team-bio {
            font-size: 0.9rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 375px) {
        .team-hero {
            padding: 80px 0 40px;
        }
        
        .team-section {
            padding: 40px 0;
        }
        
        .team-image-container {
            height: 220px;
        }
        
        .team-info {
            padding: 15px;
        }
        
        .team-name {
            font-size: 1.2rem;
        }
    }
    
    /* Safe area support for notched phones */
    @supports(padding: max(0px)) {
        .team-hero,
        .team-section,
        .team-stats,
        .team-cta {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
    }
    
    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
        .team-card:hover {
            transform: none;
        }
        
        .team-card:hover .team-image {
            transform: none;
        }
        
        .team-overlay {
            transform: translateY(0);
            background: rgba(0,0,0,0.7);
        }
    }
