.provider-detail-section {
    padding: 40px 0 80px;
    background: #f8fafc;
}
.provider-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 40px 0;
    margin-top: 70px;
}
.provider-hero-content {
    display: flex;
    align-items: center;
    gap: 32px;
}
.provider-hero-logo {
    width: 7rem;
    height: 7rem;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.provider-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.provider-hero-info {
    flex: 1;
    color: white;
}
.provider-hero-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.provider-hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.provider-hero-badge {
    padding: 6px 16px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}
.provider-hero-stats {
    display: flex;
    gap: 40px;
}
.provider-hero-stat {
    text-align: center;
}
.provider-hero-stat .value {
    font-size: 32px;
    font-weight: 700;
    display: block;
}
.provider-hero-stat .label {
    font-size: 14px;
    opacity: 0.9;
}
.provider-hero-actions {
    display: flex;
    gap: 12px;
}
.provider-hero-actions .btn-primary {
    background: white;
    color: #1e40af;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.provider-hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.provider-hero-actions .btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.provider-hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}
.provider-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}
.provider-tabs-nav {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow-x: auto;
}
.provider-tabs-nav.sticky-active {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 889;
    border-radius: 0;
    background: white;
}
.provider-tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: max-content;
}
.provider-tab-btn:hover {
    color: #1e40af;
    background: #f1f5f9;
}
.provider-tab-btn.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}
.provider-tab-panel {
    display: none;
}
.provider-tab-panel.active {
    display: block;
}
.provider-card-block {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.provider-card-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}
.provider-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}
.provider-service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.provider-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}
.provider-service-item:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.provider-service-item .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    margin-bottom: 14px;
}
.provider-service-item .service-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.provider-service-item .service-info p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}
.provider-solution-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.provider-solution-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}
.provider-solution-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}
.provider-solution-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.provider-solution-item .solution-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}
.provider-solution-item .solution-info p {
    font-size: 12px;
    color: #64748b;
}
.provider-case-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 12px;
}
.provider-case-card:last-child {
    margin-bottom: 0;
}
.provider-case-card img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.provider-case-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.provider-case-info p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.5;
}
.provider-case-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.provider-case-tag {
    padding: 3px 10px;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 4px;
    font-size: 11px;
}
.provider-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.provider-cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
}
.provider-cert-item .cert-icon {
    font-size: 24px;
}
.provider-cert-item .cert-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}
.provider-team-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.provider-team-member {
    text-align: center;
    padding: 20px 12px;
    background: #f8fafc;
    border-radius: 10px;
}
.provider-team-member .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 600;
}
.provider-team-member .name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}
.provider-team-member .position {
    font-size: 12px;
    color: #64748b;
}
.provider-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}
.provider-contact-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.provider-contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}
.provider-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.provider-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}
.provider-contact-item .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.provider-contact-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.provider-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}
.provider-recommend-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.provider-recommend-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}
.provider-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.provider-recommend-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.provider-recommend-item:hover {
    background: #f1f5f9;
}
.provider-recommend-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}
.provider-recommend-item .item-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}
.provider-recommend-item .item-info p {
    font-size: 11px;
    color: #64748b;
}

.provider-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.process-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}
.process-step:hover {
    background: #f1f5f9;
    transform: translateX(8px);
}
.process-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.process-step-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.provider-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.provider-equipment-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.provider-equipment-item:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.equipment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.equipment-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}
.equipment-info p {
    font-size: 13px;
    color: #64748b;
}
.equipment-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.provider-review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.provider-review-card {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}
.provider-review-card:hover {
    background: #f1f5f9;
}
.review-header {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}
.review-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}
.review-rating {
    font-size: 14px;
}
.review-content {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-date {
    font-size: 12px;
    color: #94a3b8;
}
.review-tag {
    padding: 4px 12px;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 20px;
    font-size: 12px;
}

.provider-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.provider-advantage-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
}
.provider-advantage-item:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.advantage-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.advantage-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}
.advantage-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.provider-partners-section {
    margin-bottom: 24px;
}
.provider-partners-section:last-child {
    margin-bottom: 0;
}
.partners-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid #3b82f6;
}
.provider-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.provider-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s;
}
.provider-partner-item:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
}
.provider-partner-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
}
.provider-partner-item span {
    font-size: 13px;
    color: #475569;
    text-align: center;
}

@media (max-width: 1200px) {
    .provider-tabs-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .provider-tabs-nav::-webkit-scrollbar {
        display: none;
    }
}
@media (max-width: 1024px) {
    .provider-detail-grid {
        grid-template-columns: 1fr;
    }
    .provider-sidebar {
        position: static;
    }
    .provider-hero-stats {
        gap: 20px;
    }
    .provider-hero-stat .value {
        font-size: 24px;
    }
    .provider-service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-team-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .provider-detail-grid {
        grid-template-columns: 1fr;
    }
    .provider-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .provider-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-advantages-grid {
        grid-template-columns: 1fr;
    }
    .provider-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .provider-detail-grid{display: block;}
    .provider-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .provider-hero-badges {
        justify-content: center;
    }
    .provider-hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    .provider-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .provider-tabs-nav {
        padding: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .provider-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .provider-tab-btn {
        flex: 0 0 auto;
        min-width: 0;
        white-space: nowrap;
    }
    .provider-service-list {
        grid-template-columns: 1fr;
    }
    .provider-equipment-grid {
        grid-template-columns: 1fr;
    }
    .provider-team-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .provider-sidebar {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .provider-hero-info h1 {
        font-size: 20px;
    }
    .provider-hero-stat .value {
        font-size: 20px;
    }
    .provider-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .provider-hero-actions .btn-primary,
    .provider-hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .provider-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .provider-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .provider-tab-btn {
        flex: 0 0 auto;
        min-width: 0;
        white-space: nowrap;
    }
    .provider-solution-list {
        grid-template-columns: 1fr;
    }
    .provider-case-card {
        flex-direction: column;
    }
    .provider-case-card img {
        width: 100%;
        height: 160px;
    }
    .provider-cert-grid {
        grid-template-columns: 1fr;
    }
    .provider-team-list {
        grid-template-columns: 1fr;
    }
    .provider-partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-step {
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .provider-hero-content {
        gap: 16px;
    }
    .provider-hero-info h1 {
        font-size: 18px;
    }
    .provider-hero-badges {
        gap: 8px;
    }
    .provider-hero-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
    .provider-hero-stats {
        gap: 16px;
    }
    .provider-hero-stat .value {
        font-size: 18px;
    }
    .provider-hero-stat .label {
        font-size: 12px;
    }
    .provider-tabs-nav {
        padding: 4px;
    }
    .provider-service-list {
        grid-template-columns: 1fr;
    }
    .provider-equipment-grid {
        grid-template-columns: 1fr;
    }
    .provider-team-list {
        grid-template-columns: 1fr;
    }
    .provider-partners-grid {
        grid-template-columns: 1fr;
    }
    .provider-recommend-item {
        min-width: 0;
    }
}
