/* Breadcrumb */

.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #298ade;
}


/* Page Title */

.page-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
}


/* Layout Grid */

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}


/* Left Content */

.left-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tag-label {
    display: inline-block;
    background: #e3f2ff;
    color: #298ade;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-detail-provider {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary-detail-provider {
    background: white;
    color: #333;
    border: 1px solid #e5e7eb;
}

.btn-primary-detail-provider:hover {
    background: #f9fafb;
}

.btn-secondary {
    background: #298ade;
    color: white;
}

.btn-secondary:hover {
    background: #2176c7;
}

.description {
    margin-bottom: 30px;
}

.description p {
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}

.description strong {
    color: #1f2937;
}

.link-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.link-box p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.link-box a {
    color: #298ade;
    text-decoration: none;
    word-break: break-all;
}

.link-box a:hover {
    text-decoration: underline;
}


/* Right Sidebar */

.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.provider-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #298ade;
}

.provider-name {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #4b5563;
    font-size: 14px;
}

.service-item i {
    margin-right: 8px;
    color: #298ade;
    width: 16px;
}

.feature-item-provider {
    background: #f9fafb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.feature-item-provider:last-child {
    margin-bottom: 0;
}


/* CTA Banner */

.cta-banner {
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.cta-banner h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta-banner .btn-detail-provider {
    background: white;
    color: #3b82f6;
    padding: 12px 32px;
    font-size: 16px;
    margin-top: 20px;
}

.cta-banner .btn-detail-provider:hover {
    background: #f9fafb;
}


/* Responsive */

@media (max-width: 968px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .right-sidebar {
        order: -1;
    }
    .page-title {
        font-size: 28px;
    }
    .cta-banner {
        padding: 30px 20px;
    }
    .cta-banner h2 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .left-content {
        padding: 20px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .btn-detail-provider {
        width: 100%;
    }
}