/* ═══════════════════════════════════════
   MITCHEL JONSON FEATURED SECTION
═══════════════════════════════════════ */

.tm-mitchel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    padding: 80px 40px;
    color: #ffffff;
    font-family: 'Urbanist', sans-serif;
    background: rgba(0, 16, 25, 0.35);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid transparent;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.mj-hero-wrapper {
    position: relative;
    z-index: 15;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: heroLoadReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* LEFT COLUMN */
.mj-hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mj-greeting {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.mj-hero-left h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-transform: uppercase;
}

.mj-hero-left h1 span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.mj-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 90%;
}

/* PREMIUM CTA BUTTON */
.mj-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    width: fit-content;
    margin-top: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1.75rem;
    border-radius: 100px;
    background-color: #DBFF49;
    color: #001019;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(219, 255, 73, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mj-cta-btn .mj-arrow-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #001019;
    color: #DBFF49;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mj-cta-btn .mj-arrow-box i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.mj-cta-btn:hover {
    transform: translateY(-3px);
    padding-right: 1.2rem;
    box-shadow: 0 10px 25px rgba(219, 255, 73, 0.4);
}

.mj-cta-btn:hover .mj-arrow-box {
    transform: scale(1.05);
    background-color: #ffffff;
    color: #001019;
}

.mj-cta-btn:hover .mj-arrow-box i {
    transform: rotate(45deg) translate(2px, -2px);
}

/* CENTER COLUMN */
.mj-hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mj-image-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mj-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mj-image-card:hover img {
    transform: scale(1.04);
}

.mj-social-floating-bar {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mj-social-item {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mj-social-item:hover {
    background-color: #DBFF49;
    color: #001019;
    transform: translateX(-5px) scale(1.1);
    border-color: #DBFF49;
    box-shadow: 0 4px 14px rgba(219, 255, 73, 0.2);
}

.mj-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.mj-status-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #DBFF49;
    box-shadow: 0 0 10px rgba(219, 255, 73, 0.5);
}

/* RIGHT COLUMN */
.mj-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 3.5rem;
    padding-left: 1.5rem;
}

.mj-meta-tagline {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.mj-meta-tagline p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.mj-hero-right h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #ffffff;
}

.mj-hero-right h2 span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.mj-social-proof-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mj-avatar-group {
    display: flex;
    align-items: center;
}

.mj-avatar-slot {
    width: 40px;
    height: 40px;
    margin-right: -12px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #001019;
    background-color: rgba(255, 255, 255, 0.05);
}

.mj-avatar-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mj-avatar-slot.mj-feedback-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #DBFF49;
    color: #001019;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.mj-client-stats strong {
    font-weight: 700;
    color: #ffffff;
}

.mj-client-stats p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ANIMATION */
@keyframes heroLoadReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .mj-hero-left h1 {
        font-size: 3.5rem;
    }

    .mj-hero-right h2 {
        font-size: 3rem;
    }

    .mj-hero-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .tm-mitchel-section {
        padding: 60px 20px;
    }

    .mj-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .mj-hero-left,
    .mj-hero-center,
    .mj-hero-right {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .mj-hero-left h1 {
        font-size: 3.2rem;
    }

    .mj-hero-right h2 {
        font-size: 2.8rem;
    }

    .mj-description {
        max-width: 100%;
    }

    .mj-meta-tagline {
        padding-left: 0;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .mj-image-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .mj-avatar-group {
        justify-content: center;
    }

    .mj-hero-right {
        padding-left: 0;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .tm-mitchel-section {
        padding: 50px 15px;
    }

    .mj-hero-left h1 {
        font-size: 2.8rem;
    }

    .mj-hero-right h2 {
        font-size: 2.4rem;
    }

    .mj-image-card {
        max-width: 380px;
    }
}

@media (max-width: 576px) {
    .tm-mitchel-section {
        padding: 40px 15px;
    }

    .mj-hero-left h1,
    .mj-hero-right h2,
    .tm-hero-title .tm-word-fill,
    .tm-hero-title .tm-word-outline {
        font-size: clamp(2rem, 9vw, 2.5rem) !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.1 !important;
    }

    .mj-greeting {
        font-size: 1.2rem;
    }

    .mj-cta-btn {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
        font-size: 0.95rem;
        padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    }

    .mj-cta-btn .mj-arrow-box {
        width: 40px;
        height: 40px;
    }

    .mj-image-card {
        max-width: 100%;
        aspect-ratio: 4 / 5;
    }

    .mj-social-floating-bar {
        top: 15px;
        right: 15px;
    }

    .mj-social-item {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .mj-status-badge {
        font-size: 0.9rem;
    }
}