/* Premium Social Media Care Page Styles */

:root {
    --primary: #0d6efd;
    --primary-dark: #004ecc;
    --primary-glow: rgba(13, 110, 253, 0.4);
    --secondary: #0ea5e9;
    --accent: #f43f5e;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #f8fafc;
}

.section-padding {
    padding: 100px 0;
}

/* Typography & Titles */
.title-tech {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-tech.text-white {
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-tech {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px var(--primary-glow);
    transition: var(--transition);
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow);
    color: white;
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-main);
    background: white;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline-premium:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Section */
.social-hero {
    position: relative;
    padding: 140px 0 100px;
    background: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 10s infinite alternate ease-in-out;
}

.orb-primary {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.orb-secondary {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.social-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.social-hero__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--dark-bg);
}

.social-hero__desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* 3D Visual Scene */
.social-hero__visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.glass-dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-15deg) rotateX(10deg);
    width: 380px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 24px;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.social-hero__visual:hover .glass-dashboard {
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(5deg);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dash-circles {
    display: flex;
    gap: 6px;
}

.dash-circles span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-circles span:nth-child(1) {
    background: #ff5f56;
}

.dash-circles span:nth-child(2) {
    background: #ffbd2e;
}

.dash-circles span:nth-child(3) {
    background: #27c93f;
}

.dash-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

.metric-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.m-card {
    background: white;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.m-card i {
    font-size: 20px;
    margin-bottom: 12px;
}

.m-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

.m-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.chart-container {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 6px 6px 0 0;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.floating-social {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: floatIcon 6s ease-in-out infinite;
    transform: translateZ(50px);
}

.icon-fb {
    top: 20%;
    left: 0%;
    color: #1877F2;
    animation-delay: 0s;
}

.icon-ig {
    top: 10%;
    right: 10%;
    color: #E4405F;
    animation-delay: 1s;
}

.icon-tk {
    bottom: 20%;
    right: -5%;
    color: #000000;
    animation-delay: 2s;
}

.icon-yt {
    bottom: 10%;
    left: 10%;
    color: #FF0000;
    animation-delay: 3s;
}

@keyframes floatIcon {
    0% {
        transform: translateZ(50px) translateY(0px);
    }

    50% {
        transform: translateZ(50px) translateY(-20px);
    }

    100% {
        transform: translateZ(50px) translateY(0px);
    }
}

/* Consult Bar Glass */
.social-consult-bar {
    margin-top: 60px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 12px 12px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.sc-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    flex-shrink: 0;
}

.sc-form {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sc-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    flex-shrink: 1;
    min-width: 140px;
}

.sc-input i {
    color: var(--primary);
}

.sc-input input,
.sc-input select {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
    min-width: 0;
}

.sc-input select {
    color: var(--text-muted);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
}

.sc-input select:focus,
.sc-input select:valid {
    color: var(--text-main);
}

.sc-input.select-wrapper {
    position: relative;
}

.sc-input.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary);
    font-size: 12px;
}

.modern-form .wpcf7-submit {
    margin: 40px auto 0;
    display: block;
    width: fit-content;
    min-width: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.modern-form .wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--primary-glow);
}

/* Bento Roles Section */
.social-roles {
    background: #f8fafc;
    position: relative;
}

.bento-grid-roles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bento-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 28px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 110, 253, 0.3);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.1);
}

.hover-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(80px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.bento-card:hover .hover-glow {
    opacity: 0.15;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover .card-icon {
    color: white;
    background: transparent;
    transform: scale(1.1) rotate(5deg);
}

.bento-card:hover .card-icon::after {
    opacity: 1;
}

.bento-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-bg);
}

.bento-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 160px;
    color: var(--primary);
    opacity: 0.03;
    transition: var(--transition);
    z-index: -1;
}

.bento-card:hover .card-bg-icon {
    opacity: 0.08;
    transform: scale(1.1) rotate(-10deg);
}

/* Platforms Section */
.bg-dark-tech {
    background: linear-gradient(135deg,
            #000000 20%,
            #0f172a 50%,
            #38bdf8 80%,
            #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bg-dark-tech::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.platforms-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.platform-cards-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.plat-card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    width: 220px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plat-card:nth-child(even) {
    transform: translateY(25px);
}

.plat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: var(--transition);
}

.plat-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plat-card:nth-child(even):hover {
    transform: translateY(15px);
}

/* Brand specific glows on hover */
.plat-card.fb:hover::before {
    background: #1877F2;
}

.plat-card.tk:hover::before {
    background: linear-gradient(45deg, #00f2fe, #fe0979);
}

.plat-card.ig:hover::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.plat-card.yt:hover::before {
    background: #FF0000;
}

.plat-card.li:hover::before {
    background: #0A66C2;
}

.plat-card.fb:hover {
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.2);
}

.plat-card.tk:hover {
    box-shadow: 0 20px 40px rgba(254, 9, 121, 0.2);
}

.plat-card.ig:hover {
    box-shadow: 0 20px 40px rgba(220, 39, 67, 0.2);
}

.plat-card.yt:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.plat-card.li:hover {
    box-shadow: 0 20px 40px rgba(10, 102, 194, 0.2);
}

.plat-icon {
    font-size: 55px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.plat-card:hover .plat-icon {
    transform: scale(1.15) translateY(-5px);
}

.plat-card.fb .plat-icon {
    color: #1877F2;
}

.plat-card.tk .plat-icon {
    color: #fff;
}

.plat-card.ig .plat-icon {
    color: #E4405F;
}

.plat-card.yt .plat-icon {
    color: #FF0000;
}

.plat-card.li .plat-icon {
    color: #0A66C2;
}

.plat-card h4 {
    color: white;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.plat-card p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Creative Tasks Grid Section */
.creative-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(90deg, rgba(13, 110, 253, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--primary);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.creative-tasks-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

.c-task-card {
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.c-task-card:hover {
    transform: translateY(-8px);
}

.card-creative {
    grid-row: 1 / 3;
    background: #0f172a;
    color: white;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.ct-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(13, 110, 253, 0.35), transparent 60%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.25), transparent 60%);
    z-index: 0;
}

.card-creative .ct-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ct-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ct-icon-wrapper.small {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 0;
}

.card-creative h3 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ct-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.ct-list-premium {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 2;
}

.ct-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    border-radius: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ct-list-premium li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ct-list-premium li i {
    color: #ec4899;
    font-size: 20px;
    margin-top: 2px;
}

.ct-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.ct-tags span {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ct-tags span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.abstract-shape {
    position: absolute;
    filter: blur(50px);
    z-index: 0;
    border-radius: 50%;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: #0ea5e9;
    top: -50px;
    right: -50px;
    animation: floatShape 10s infinite alternate ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    bottom: -100px;
    right: -50px;
    animation: floatShape 12s infinite alternate-reverse ease-in-out;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 40px) scale(1.1);
    }
}

.card-dark {
    background: #1e293b;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-dark h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
}

.pulsing-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pulsing-status span {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.ct-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ct-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.ct-list li i {
    color: #0ea5e9;
    font-size: 18px;
}

.card-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.card-glass h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-bg);
    margin: 0;
}

.card-glass .ct-icon-wrapper.small {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.2);
    color: var(--primary);
    box-shadow: none;
}

.ct-stats-demo {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    animation: slideFill 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: left;
}

@keyframes slideFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Premium Lifecycle & Process Section */
.social-lifecycle-section {
    background: #ffffff;
}

.premium-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-benefit-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 110, 253, 0.3);
}

.pbc-icon-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.premium-benefit-card:hover .pbc-icon-wrapper {
    background: #0ea5e9;
    color: white;
    transform: rotate(-10deg);
}

.pbc-content h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1e293b;
}

.pbc-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Right Card Flowchart - Premium Dark Mode */
.premium-dark-mode {
    background: linear-gradient(145deg, #0f172a, #020617);
    border-radius: 32px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.premium-dark-mode::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.tech-heading {
    color: #f8fafc !important;
}

.diagram-grid {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 50px 20px;
}

.node-1 {
    grid-column: 1;
    grid-row: 1;
}

.node-2 {
    grid-column: 2;
    grid-row: 1;
}

.node-3 {
    grid-column: 3;
    grid-row: 1;
}

.node-4 {
    grid-column: 2;
    grid-row: 2;
}

.node-5 {
    grid-column: 3;
    grid-row: 2;
}

.node-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.node-circle {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2), inset 0 0 15px rgba(13, 110, 253, 0.2);
    animation: floatNode 3s ease-in-out infinite alternate;
}

.node-1 .node-circle {
    animation-delay: 0s;
}

.node-2 .node-circle {
    animation-delay: 0.5s;
}

.node-3 .node-circle {
    animation-delay: 1s;
}

.node-4 .node-circle {
    animation-delay: 1.5s;
}

.node-5 .node-circle {
    animation-delay: 2s;
}

@keyframes floatNode {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4), inset 0 0 20px rgba(13, 110, 253, 0.4);
        border-color: #38bdf8;
        color: #bae6fd;
    }
}

.node-label {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.node-label strong {
    color: #f8fafc;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Animated Data Flow Arrows */
.css-arrow {
    position: absolute;
    z-index: -1;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border-radius: 4px;
}

.css-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
}

.right-arrow {
    top: 50%;
    left: 80px;
    width: 80px;
    height: 3px;
    transform: translateY(-50%);
}

.right-arrow::before {
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
    animation: dataFlowX 2s linear infinite;
}

.down-arrow {
    top: 80px;
    left: 50%;
    height: 60px;
    width: 3px;
    transform: translateX(-50%);
}

.down-arrow::before {
    background: linear-gradient(180deg, transparent, #38bdf8, transparent);
    animation: dataFlowY 2s linear infinite;
}

.left-arrow {
    top: 50%;
    right: 80px;
    width: 80px;
    height: 3px;
    transform: translateY(-50%);
}

.left-arrow::before {
    background: linear-gradient(-90deg, transparent, #38bdf8, transparent);
    animation: dataFlowXReverse 2s linear infinite;
}

@keyframes dataFlowX {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes dataFlowXReverse {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes dataFlowY {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Horizontal Steps for Dark Mode */
.sl-horizontal-steps {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 40px;
}

.sl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    cursor: default;
}

.step-dot {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.sl-step:hover .step-dot {
    background: #0ea5e9;
    color: white;
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
    transform: scale(1.1);
}

.sl-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-text span {
    font-weight: 800;
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.step-text p {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s;
}

.sl-step:hover .step-text p {
    color: #f8fafc;
}

/* Pricing Card Premium */
.social-pricing-banner {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.premium-pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 50px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.ppc-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 34px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.ppc-badge {
    display: inline-block;
    background: #fffbeb;
    color: #d97706;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid #fde68a;
}

.ppc-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ppc-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 40px;
}

.ppc-price .currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 10px;
    margin-right: 4px;
}

.ppc-price .amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
}

.ppc-price .period {
    font-size: 16px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

.ppc-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.ppc-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.ppc-icon {
    width: 32px;
    height: 32px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ppc-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.ppc-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.ppc-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA Glass Box */
.social-cta-banner {
    background: white;
}

.contact-glass-box {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(13, 71, 161, 0.2);
    max-width: 1100px;
    margin: 0 auto;
}

.cta-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-info-side {
    padding: 60px 80px !important;
    position: relative;
    z-index: 1;
    color: white;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.cta-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cm-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.cm-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.cm-text span {
    display: block;
    font-size: 13px;
    color: #94a3b8;
}

.cm-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    word-break: break-word;
}

.cta-form-side {
    background: white;
    padding: 60px 80px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CF7 wrapper cũng cần flex để fill height */
.cta-form-side .wpcf7 {
    width: 100%;
}

.modern-form .form-group {
    margin-bottom: 24px;
}

.modern-form label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modern-form input,
.modern-form textarea,
.modern-form select {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.modern-form input:focus,
.modern-form textarea:focus,
.modern-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CF7 .form-row = 2 columns (Họ và tên + Số điện thoại) */
.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-form .form-row .form-group {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
}

.custom-select-wrapper {
    position: relative;
}

.custom-select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .social-hero__inner {
        gap: 40px;
    }

    .social-hero__title {
        font-size: 48px;
    }

    .bento-grid-roles {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-info-side {
        padding: 50px 40px !important;
    }

    .cta-form-side {
        padding: 50px 40px !important;
    }
}

@media (max-width: 992px) {
    .social-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .social-hero__desc {
        margin: 0 auto 40px;
    }

    .social-hero {
        padding-top: 120px;
    }

    .social-hero__visual {
        transform: scale(0.9);
        height: 450px;
        margin-top: 30px;
    }

    .cta-info-side {
        padding: 40px 30px !important;
    }

    .cta-form-side {
        padding: 40px 30px !important;
    }

    .sc-bar-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .glass-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .creative-tasks-grid {
        grid-template-columns: 1fr;
    }

    .card-creative {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .diagram-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
    }

    .node-1,
    .node-2,
    .node-3,
    .node-4,
    .node-5 {
        grid-column: 1;
        grid-row: auto;
    }

    .css-arrow {
        display: none;
    }

    .sl-horizontal-steps {
        flex-direction: column;
        gap: 30px;
        border-top: none;
        padding-top: 20px;
    }

    .sl-step:not(:last-child)::after {
        top: 40px;
        left: 20px;
        width: 2px;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .bento-grid-roles {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .sc-form {
        flex-direction: column;
        width: 100%;
    }

    .sc-input,
    .btn-sc-submit {
        width: 100%;
        justify-content: center;
    }

    .sc-input input,
    .sc-input select {
        width: 100%;
    }

    .social-hero__title {
        font-size: 36px;
    }

    .social-hero__visual {
        transform: scale(0.65);
        height: 350px;
        margin-top: -20px;
    }

    .icon-fb {
        left: 5%;
    }

    .icon-tk {
        right: 2%;
    }

    .title-tech {
        font-size: 32px;
    }

    .ppc-price .amount {
        font-size: 42px;
    }

    .cta-info-side {
        padding: 50px 40px !important;
    }

    .cta-form-side {
        padding: 50px 40px !important;
    }

    .cta-heading {
        font-size: 28px;
        line-height: 1.4;
        letter-spacing: 0;
    }
}

@media (max-width: 400px) {
    .social-hero__visual {
        transform: scale(0.55);
        height: 300px;
    }
    
    .icon-fb {
        left: 8%;
    }

    .icon-tk {
        right: 5%;
    }
}

/* CF7 Wrapper Fix for Inline Forms */
.sc-input .wpcf7-form-control-wrap {
    display: block;
    flex-grow: 1;
    width: 100%;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    text-overflow: ellipsis;
}