/**
 * =========================================
 * PAGE: DỊCH VỤ VẬN HÀNH SHOPEE - TABCOM CARE
 * SECTION: CTA CHỐT LEAD
 * =========================================
 * File: assets/css/shopee-cta.css
 * Scope: .tabcom-cta
 * =========================================
 */

.tabcom-cta {
    --cta-blue: #083344;
    --cta-cyan: #155e75;
    --cta-primary: #f9f506;
    --cta-primary-dark: #dacc05;
}

.tabcom-cta {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 40%);
    padding: 100px 20px;
}

.tabcom-cta * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Effects */
.tabcom-cta .cta-bg-glow-1 {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(249, 245, 6, 0.05);
    filter: blur(100px);
    pointer-events: none;
}

.tabcom-cta .cta-bg-glow-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    filter: blur(80px);
    pointer-events: none;
}

.tabcom-cta .cta-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.tabcom-cta .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Grid */
.tabcom-cta .cta-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.tabcom-cta .cta-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tabcom-cta .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cta-primary);
    width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tabcom-cta .cta-badge .material-symbols-outlined {
    font-size: 18px;
}

.tabcom-cta .cta-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.tabcom-cta .cta-title .highlight {
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
}

.tabcom-cta .cta-desc {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: #fff;
    max-width: 600px;
}

/* Trust Box */
.tabcom-cta .trust-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(8px);
    max-width: 520px;
    transition: all 0.3s ease;
}

.tabcom-cta .trust-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tabcom-cta .trust-avatars {
    display: flex;
}

.tabcom-cta .trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--cta-blue);
    background-size: cover;
    background-position: center;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabcom-cta .trust-avatar:first-child {
    margin-left: 0;
}

.tabcom-cta .trust-avatar.count {
    background: var(--cta-primary);
    color: var(--cta-blue);
    font-size: 0.75rem;
    font-weight: 700;
}

.tabcom-cta .trust-info {
    flex: 1;
}

.tabcom-cta .trust-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.tabcom-cta .trust-text strong {
    font-weight: 700;
}

.tabcom-cta .trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.tabcom-cta .trust-rating .material-symbols-outlined {
    font-size: 14px;
    color: var(--cta-primary);
}

.tabcom-cta .trust-rating span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-left: 8px;
}

/* CTA Buttons */
.tabcom-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tabcom-cta .btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 60px;
    padding: 0 36px;
    background: #fff;
    color: #0038FF;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tabcom-cta .btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

.tabcom-cta .btn-primary-cta .material-symbols-outlined {
    transition: transform 0.3s ease;
    color: #0038FF;
}

.tabcom-cta .btn-primary-cta:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.tabcom-cta .btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 60px;
    padding: 0 36px;
    background: #fff;
    border: 1px solid #fff;
    color: #0038FF;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tabcom-cta .btn-secondary-cta:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Features List */
.tabcom-cta .cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tabcom-cta .cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(191, 219, 254, 0.8);
}

.tabcom-cta .cta-feature .material-symbols-outlined {
    font-size: 18px;
    color: var(--cta-primary);
}

/* Right Visual */
.tabcom-cta .cta-visual {
    position: relative;
}

.tabcom-cta .visual-card {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.tabcom-cta .visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tabcom-cta .visual-card:hover img {
    transform: scale(1.05);
}

.tabcom-cta .visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cta-blue) 0%, rgba(8, 51, 68, 0.2) 50%, transparent 100%);
    opacity: 0.8;
}

/* Status Badge */
.tabcom-cta .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tabcom-cta .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tabcom-cta .status-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Info Card */
.tabcom-cta .info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tabcom-cta .info-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.tabcom-cta .info-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tabcom-cta .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cta-primary) 0%, #fef08a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cta-blue);
    box-shadow: 0 4px 16px rgba(249, 245, 6, 0.3);
    flex-shrink: 0;
}

.tabcom-cta .info-icon .material-symbols-outlined {
    font-size: 26px;
}

.tabcom-cta .info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.tabcom-cta .info-content p {
    font-size: 0.85rem;
    color: rgba(191, 219, 254, 0.9);
    line-height: 1.5;
}

.tabcom-cta .info-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tabcom-cta .info-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.tabcom-cta .info-check .material-symbols-outlined {
    font-size: 16px;
    color: var(--cta-primary);
}

.tabcom-cta .info-rating {
    text-align: right;
}

.tabcom-cta .info-rating-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.tabcom-cta .info-rating-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cta-primary);
    margin-left: 4px;
}

/* Decorative Elements */
.tabcom-cta .visual-deco {
    position: absolute;
    top: 40px;
    right: -40px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(3deg);
    z-index: -1;
}

.tabcom-cta .visual-glow {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(249, 245, 6, 0.2);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .tabcom-cta .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tabcom-cta .cta-content {
        text-align: center;
        align-items: center;
    }

    .tabcom-cta .cta-title {
        font-size: 2.5rem;
    }

    .tabcom-cta .cta-desc {
        max-width: 100%;
    }

    .tabcom-cta .trust-box {
        max-width: 100%;
        justify-content: center;
    }

    .tabcom-cta .cta-buttons {
        justify-content: center;
    }

    .tabcom-cta .cta-features {
        justify-content: center;
    }

    .tabcom-cta .cta-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tabcom-cta {
        padding: 60px 20px;
    }

    .tabcom-cta .cta-title {
        font-size: 2rem;
    }

    .tabcom-cta .cta-desc {
        font-size: 1rem;
    }

    .tabcom-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .tabcom-cta .btn-primary-cta,
    .tabcom-cta .btn-secondary-cta {
        width: 100%;
        max-width: 320px;
    }

    .tabcom-cta .trust-box {
        flex-direction: column;
        text-align: center;
    }

    .tabcom-cta .trust-info {
        text-align: center;
    }

    .tabcom-cta .trust-rating {
        justify-content: center;
    }

    .tabcom-cta .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .tabcom-cta .visual-card {
        height: 400px;
    }

    .tabcom-cta .visual-deco {
        display: none;
    }
}
