/**
 * =========================================
 * PAGE: DỊCH VỤ VẬN HÀNH SHOPEE - TABCOM CARE
 * SECTION: 3 GIAI ĐOẠN CỐT LÕI
 * =========================================
 * File: assets/css/shopee-process.css
 * Scope: .tabcom-process
 * =========================================
 */

.tabcom-process {
    --process-bg: #ffffff;
    --process-bg-alt: #f8f8f5;
    --process-text-dark: #0f172a;
    --process-text-muted: #64748b;
    --process-cyan: #06b6d4;
    --process-blue: #3b82f6;
    --process-indigo: #6366f1;
}

.tabcom-process {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--process-bg);
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 100px 20px;
    overflow: hidden;
}

.tabcom-process * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.tabcom-process .container {
    max-width: 1100px;
    margin: 0 auto;
}

.tabcom-process .section-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Section Header */
.tabcom-process .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tabcom-process .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: #0038FF;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.tabcom-process .section-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--process-text-dark);
    margin-bottom: 24px;
}

.tabcom-process .section-title .highlight {
    color: #0038FF;
}

.tabcom-process .section-desc {
    font-size: 1.1rem;
    color: var(--process-text-muted);
    line-height: 1.8;
}

.tabcom-process .section-desc .bold {
    font-weight: 700;
    color: var(--process-text-dark);
}

.tabcom-process .section-desc .cyan { color: #0038FF; font-weight: 600; }
.tabcom-process .section-desc .blue { color: #0038FF; font-weight: 600; }
.tabcom-process .section-desc .indigo { color: #0038FF; font-weight: 600; }

/* Steps */
.tabcom-process .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Step Item */
.tabcom-process .step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tabcom-process .step-item.reverse {
    direction: rtl;
}

.tabcom-process .step-item.reverse > * {
    direction: ltr;
}

/* Step Visual */
.tabcom-process .step-visual {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
}

/* Step Image */
.tabcom-process .step-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 56, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, 
                linear-gradient(180deg, #001BE6 50%, #0FDEC9 100%) border-box;
}

.tabcom-process .step-item:hover .step-image {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 56, 255, 0.25), 0 12px 32px rgba(0, 0, 0, 0.15);
}

.tabcom-process .step-visual.cyan {
    background: transparent;
    border: none;
}

.tabcom-process .step-visual.blue {
    background: transparent;
    border: none;
}

.tabcom-process .step-visual.indigo {
    background: transparent;
    border: none;
}

/* Remove dot pattern for image visuals */
.tabcom-process .step-visual::before {
    display: none;
}

/* Visual Card Inner */
.tabcom-process .visual-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    transition: transform 0.5s ease;
}

.tabcom-process .step-item:hover .visual-inner {
    transform: scale(1.03);
}

/* Visual Card Header */
.tabcom-process .visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.tabcom-process .visual-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tabcom-process .visual-dot.red { background: #f87171; }
.tabcom-process .visual-dot.yellow { background: #fbbf24; }
.tabcom-process .visual-dot.green { background: #34d399; }

/* Step 1 - Shop Icon */
.tabcom-process .shop-icon-wrapper {
    height: 96px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
    margin-bottom: 16px;
}

.tabcom-process .shop-icon-wrapper .material-symbols-outlined {
    font-size: 48px;
    color: #0038FF;
}

.tabcom-process .visual-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tabcom-process .visual-line {
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
}

.tabcom-process .visual-line.w-75 { width: 75%; }
.tabcom-process .visual-line.w-100 { width: 100%; }
.tabcom-process .visual-line.w-50 { width: 50%; }

/* Step 2 - Chart Bars */
.tabcom-process .chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 128px;
    gap: 8px;
}

.tabcom-process .chart-bar {
    flex: 1;
    border-radius: 8px 8px 0 0;
    transition: height 0.7s ease;
}

.tabcom-process .chart-bar.h-40 { height: 40%; background: #bfdbfe; }
.tabcom-process .chart-bar.h-60 { height: 60%; background: #93c5fd; }
.tabcom-process .chart-bar.h-50 { height: 50%; background: #60a5fa; }
.tabcom-process .chart-bar.h-80 { height: 80%; background: #3b82f6; }
.tabcom-process .chart-bar.h-70 { height: 70%; background: #2563eb; box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }

.tabcom-process .step-item:hover .chart-bar.h-40 { height: 50%; }
.tabcom-process .step-item:hover .chart-bar.h-60 { height: 70%; }
.tabcom-process .step-item:hover .chart-bar.h-50 { height: 65%; }
.tabcom-process .step-item:hover .chart-bar.h-80 { height: 90%; }
.tabcom-process .step-item:hover .chart-bar.h-70 { height: 100%; }

.tabcom-process .chart-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
    color: var(--process-text-muted);
}

.tabcom-process .chart-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tabcom-process .legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tabcom-process .legend-dot.blue { background: #0038FF; }
.tabcom-process .legend-dot.light { background: #bfdbfe; }

/* GMV Badge */
.tabcom-process .gmv-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #f9f506;
    color: #181811;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tabcom-process .gmv-badge .material-symbols-outlined {
    font-size: 16px;
}

/* Step 3 - Shield Card */
.tabcom-process .shield-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tabcom-process .shield-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tabcom-process .shield-icon .material-symbols-outlined {
    font-size: 24px;
    color: #16a34a;
}

.tabcom-process .shield-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--process-text-dark);
    margin-bottom: 4px;
}

.tabcom-process .shield-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #16a34a;
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: 50px;
}

.tabcom-process .progress-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tabcom-process .progress-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tabcom-process .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.tabcom-process .progress-label span:first-child {
    color: var(--process-text-muted);
}

.tabcom-process .progress-label span:last-child {
    color: #10b981;
    font-weight: 700;
}

.tabcom-process .progress-track {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.tabcom-process .progress-fill {
    height: 100%;
    background: #10b981;
    border-radius: 4px;
}

.tabcom-process .progress-fill.w-5 { width: 5%; }
.tabcom-process .progress-fill.w-2 { width: 2%; }

/* Decorative glow */
.tabcom-process .visual-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    transition: all 0.5s ease;
}

.tabcom-process .step-item:hover .visual-glow {
    opacity: 0.6;
    transform: scale(1.2);
}

.tabcom-process .visual-glow.cyan { background: linear-gradient(180deg, #001BE6, #0FDEC9); bottom: -30px; right: -30px; }
.tabcom-process .visual-glow.blue { background: linear-gradient(180deg, #001BE6, #0FDEC9); top: -30px; left: -30px; }
.tabcom-process .visual-glow.indigo { background: linear-gradient(180deg, #001BE6, #0FDEC9); bottom: -30px; left: -30px; }

/* Step Content */
.tabcom-process .step-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tabcom-process .step-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tabcom-process .step-tag .line {
    width: 32px;
    height: 2px;
}

.tabcom-process .step-tag.cyan { color: #0038FF; }
.tabcom-process .step-tag.cyan .line { background: #0038FF; }

.tabcom-process .step-tag.blue { color: #0038FF; }
.tabcom-process .step-tag.blue .line { background: #0038FF; }

.tabcom-process .step-tag.indigo { color: #0038FF; }
.tabcom-process .step-tag.indigo .line { background: #0038FF; }

.tabcom-process .step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--process-text-dark);
    line-height: 1.3;
}

.tabcom-process .step-desc {
    font-size: 1.05rem;
    color: var(--process-text-muted);
    line-height: 1.7;
}

/* Feature List */
.tabcom-process .feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.tabcom-process .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tabcom-process .feature-icon {
    padding: 6px;
    border-radius: 8px;
    margin-top: 2px;
}

.tabcom-process .feature-icon.cyan {
    background: #0038FF;
    color: #fff;
}

.tabcom-process .feature-icon.blue {
    background: #0038FF;
    color: #fff;
}

.tabcom-process .feature-icon.indigo {
    background: #0038FF;
    color: #fff;
}

.tabcom-process .feature-icon .material-symbols-outlined {
    font-size: 18px;
    display: block;
}

.tabcom-process .feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--process-text-dark);
    margin-bottom: 4px;
}

.tabcom-process .feature-text span {
    font-size: 0.9rem;
    color: var(--process-text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .tabcom-process .step-item,
    .tabcom-process .step-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .tabcom-process .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .tabcom-process {
        padding: 60px 20px;
    }

    .tabcom-process .section-content {
        gap: 48px;
    }

    .tabcom-process .steps-wrapper {
        gap: 48px;
    }

    .tabcom-process .section-title {
        font-size: 1.8rem;
    }

    .tabcom-process .step-title {
        font-size: 1.4rem;
    }

    .tabcom-process .visual-inner {
        max-width: 100%;
    }
}
