.elementor-21039 .elementor-element.elementor-element-de78ed8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21039 .elementor-element.elementor-element-7dfc968{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* 
    ========================================
    LUXURY BIO LINKS - THEME TOKENS
    ========================================
    */
    :root {
        /* Palette: Deep Luxury Purple */
        --bio-bg-dark: #0f0518;
        --bio-bg-card: rgba(30, 15, 50, 0.4);
        --bio-bg-card-hover: rgba(114, 42, 238, 0.15);

        --bio-primary: #722AEE;
        --bio-primary-glow: rgba(114, 42, 238, 0.6);

        --bio-accent-gold: #D4AF37;
        --bio-text-main: #FFFFFF;
        --bio-text-muted: #B3B3B3;

        --bio-glass-border: rgba(255, 255, 255, 0.08);
        --bio-glass-shine: rgba(255, 255, 255, 0.1);

        /* Spacing */
        --bio-gap: 1.25rem;
        --bio-radius: 1.5rem;
    }

    /* CONTAINER WRAPPER - To isolate styles from rest of page if needed */
    .bio-links-wrapper {
        background-color: var(--bio-bg-dark);
        color: var(--bio-text-main);
        font-family: 'Outfit', sans-serif;
        min-height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 2rem 1rem;
        background-image:
            radial-gradient(circle at 10% 0%, rgba(114, 42, 238, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 90% 90%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
        background-attachment: fixed;
        box-sizing: border-box;
    }

    .bio-links-wrapper * {
        box-sizing: border-box;
    }

    /* BACKGROUND NOISE */
    .noise-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        opacity: 0.03;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* LAYOUT CONTAINER */
    .main-container {
        width: 100%;
        max-width: 680px;
        z-index: 1;
        position: relative;
    }

    /* PROFILE HEADER */
    .profile-section {
        text-align: center;
        margin-bottom: 2.5rem;
        animation: fadeInDown 0.8s ease-out;
    }

    .profile-img-wrap {
        width: 110px;
        height: 110px;
        margin: 0 auto 1.2rem;
        border-radius: 50%;
        padding: 4px;
        background: linear-gradient(135deg, var(--bio-primary), var(--bio-accent-gold));
        position: relative;
    }

    .profile-img {
        width: 100%;
        height: 100% !important;
        border-radius: 50% !important;
        object-fit: cover;
        border: 4px solid var(--bio-bg-dark) !important;
        background-color: #2a153c;
        /* Placeholder bg */
        display: block;
    }

    .profile-name {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 0.3rem;
        letter-spacing: -0.02em;
        line-height: 1.2;
        color: #fff;
    }

    .profile-title {
        color: var(--bio-primary);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 600;
        margin-bottom: 0.8rem;
    }

    .profile-bio {
        color: var(--bio-text-muted);
        font-size: 0.95rem;
        max-width: 432px;
        margin: 0 auto;
        line-height: 1.5;
    }

    /* BENTO GRID SYSTEM */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--bio-gap);
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }

    /* CARD STYLES */
    .card {
        background: var(--bio-bg-card);
        border: 1px solid var(--bio-glass-border);
        border-radius: var(--bio-radius);
        padding: 1.5rem;
        overflow: hidden;
        position: relative;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        text-decoration: none;
        color: var(--bio-text-main);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .card:hover {
        transform: translateY(-5px);
        background: var(--bio-bg-card-hover);
        border-color: rgba(114, 42, 238, 0.4);
        box-shadow: 0 15px 40px rgba(114, 42, 238, 0.15);
    }

    /* Shine Effect */
    .card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent 30%, var(--bio-glass-shine) 50%, transparent 70%);
        transform: skewX(-15deg) translateX(-150%);
        transition: transform 0.6s;
        pointer-events: none;
    }

    .card:hover::after {
        transform: skewX(-15deg) translateX(150%);
        transition: transform 0.8s;
    }

    /* Card Content */
    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--bio-text-muted);
        transition: color 0.3s;
    }

    .card:hover .card-icon {
        color: var(--bio-primary);
    }

    .card-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        color: #fff;
    }

    .card-desc {
        font-size: 0.85rem;
        color: var(--bio-text-muted);
        line-height: 1.4;
    }

    .card-arrow {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        opacity: 0.4;
        transform: rotate(-45deg);
        transition: all 0.3s;
    }

    .card:hover .card-arrow {
        opacity: 1;
        transform: rotate(0deg) translate(2px, -2px);
        color: var(--bio-primary);
    }

    /* SPECIFIC CARD LAYOUTS */
    .col-span-2 {
        grid-column: span 2;
    }

    .row-span-2 {
        grid-row: span 2;
    }

    .card-agency {
        background: linear-gradient(135deg, rgba(114, 42, 238, 0.2), rgba(30, 15, 50, 0.6));
        border-color: rgba(114, 42, 238, 0.3);
        min-height: 180px;
    }

    .card-agency .card-title {
        font-size: 1.4rem;
        font-family: 'Playfair Display', serif;
    }

    .card-agency .card-icon {
        color: var(--bio-primary);
    }

    .card-newsletter {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    }

    .card-youtube {
        border-color: rgba(255, 0, 0, 0.2);
    }

    .card-youtube:hover {
        border-color: rgba(255, 0, 0, 0.5);
        background: rgba(255, 0, 0, 0.05);
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
    }

    .card-youtube .card-icon {
        color: #FF0000;
    }

    .card-youtube:hover .card-icon {
        color: #FF0000;
    }


    .card-resource {
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

    .card-resource .card-icon {
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }

    .card-resource .card-arrow {
        top: 1rem;
        right: 1rem;
    }

    /* Training Highlight Label */
    .highlight-label {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--bio-accent-gold);
        color: #000;
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        border-bottom-right-radius: 10px;
    }

    /* SECTION DIVIDERS */
    .grid-header {
        grid-column: span 2;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        opacity: 0.7;
    }

    .grid-header span {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--bio-text-muted);
        white-space: nowrap;
    }

    .grid-header::after {
        content: '';
        height: 1px;
        width: 100%;
        background: linear-gradient(to right, var(--bio-glass-border), transparent);
    }

    /* ANIMATIONS */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* MOBILE OPTIMIZATION */
    @media (max-width: 600px) {
        .bento-grid {
            display: flex;
            flex-direction: column;
        }

        .profile-name {
            font-size: 1.7rem;
        }

        .main-container {
            padding: 0 0.5rem;
        }

        .bio-links-wrapper {
            padding: 1rem 0.5rem;
        }
    }

    /* FLOATING ICONS STACK */
    .float-icon {
        position: fixed;
        right: 2rem;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #FFF;
        z-index: 9999;
        /* Higher z-index for elementor compatibility */
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .float-icon:hover {
        transform: scale(1.1);
        color: #FFF;
    }

    /* Specific Colors & Positions */
    /* Stack from bottom: WA -> LinkedIn -> YouTube */

    .float-wa {
        bottom: 2rem;
        background-color: #25D366;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    .float-li {
        bottom: 7.5rem;
        /* 2rem + 60px + 1.5rem gap */
        background-color: #0077b5;
        box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
    }

    .float-yt {
        bottom: 13rem;
        /* 7.5rem + 60px + 1.5rem gap */
        background-color: #FF0000;
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    }

    /* Pulse Ring (Keep only for WhatsApp as it's the primary contact) */
    .float-wa::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #25D366;
        animation: pulse-ring 2s infinite;
        z-index: -1;
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }/* End custom CSS */