/* ============================================
   MASTERCLASS BANNER - Premium UX Design
   Designed to STAND OUT and CONVERT
   ============================================ */

/* Nav highlight link */
.nav-link-highlight {
    color: #ff3d00 !important;
    font-weight: 700 !important;
    animation: navPulse 2s ease-in-out infinite;
}

@keyframes navPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== SECTION ===== */
.mc-section {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(165deg, #0a0a1a 0%, #0d1b3e 25%, #1a0a2e 50%, #0d1b3e 75%, #0a0a1a 100%);
    overflow: hidden;
}

/* ===== ANIMATED PARTICLES ===== */
.mc-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.mc-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.mc-p1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6d00, transparent 70%);
    top: -100px;
    right: -50px;
    animation: mcFloat1 8s ease-in-out infinite;
}

.mc-p2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #c9a84c, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: mcFloat2 10s ease-in-out infinite;
}

.mc-p3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00c853, transparent 70%);
    top: 40%;
    left: 30%;
    animation: mcFloat3 12s ease-in-out infinite;
}

.mc-p4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ff3d00, transparent 70%);
    top: 20%;
    right: 20%;
    animation: mcFloat1 9s ease-in-out infinite reverse;
}

.mc-p5 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #5b9bd5, transparent 70%);
    bottom: 30%;
    right: 40%;
    animation: mcFloat2 7s ease-in-out infinite;
}

.mc-p6 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #c9a84c, transparent 70%);
    top: 60%;
    left: 60%;
    animation: mcFloat3 11s ease-in-out infinite reverse;
}

@keyframes mcFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes mcFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes mcFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-30px, 20px); }
    50% { transform: translate(20px, -20px); }
    75% { transform: translate(-10px, -30px); }
}

/* ===== URGENCY STRIP ===== */
.mc-urgency-strip {
    background: linear-gradient(90deg, #ff3d00, #ff6d00, #ff3d00, #ff6d00);
    background-size: 200% 100%;
    animation: mcStripSlide 3s linear infinite;
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    top:100px;
    z-index: 99;
}

@keyframes mcStripSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.mc-urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    animation: mcScrollText 20s linear infinite;
}

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

.mc-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: mcBlink 1s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes mcBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mc-urgency-sep {
    opacity: 0.5;
}

/* ===== CONTAINER ===== */
.mc-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 40px 24px 0;
    position: relative;
    z-index: 2;
}

/* ===== FREE BADGE ===== */
.mc-free-badge-wrapper {
    text-align: center;
    margin-bottom: 28px;
}

.mc-free-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a84c, #e0c068, #c9a84c);
    padding: 10px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.15);
    animation: mcBadgeGlow 2s ease-in-out infinite;
    position: relative;
}

.mc-free-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 52px;
    background: linear-gradient(135deg, #c9a84c, #fff, #c9a84c);
    z-index: -1;
    animation: mcBorderRotate 3s linear infinite;
}

@keyframes mcBadgeGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.15); }
    50% { box-shadow: 0 12px 40px rgba(201, 168, 76, 0.6), 0 0 80px rgba(201, 168, 76, 0.25); }
}

@keyframes mcBorderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.mc-free-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #0a0a1a;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ===== GRID LAYOUT ===== */
.mc-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== LEFT CONTENT ===== */
.mc-content {
    padding-right: 16px;
}

.mc-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mc-eyebrow-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #c9a84c;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.1);
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.mc-eyebrow-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ff3d00;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mc-live-indicator {
    width: 8px;
    height: 8px;
    background: #ff3d00;
    border-radius: 50%;
    animation: mcBlink 1s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 61, 0, 0.6);
}

/* Title */
.mc-title {
    /*font-family: 'Playfair Display', 'Inter', serif;*/
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mc-title-highlight {
    background: linear-gradient(135deg, #c9a84c, #e0c068);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mc-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 580px;
}
/* ===== AGENDA ===== */
/* ===== WHAT YOU'LL LEARN ===== */
.mc-agenda {
    display: box;
    margin-bottom: 24px;
}

.mc-agenda-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(86, 215, 245, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    transition: all 0.3s ease;
}

.mc-agenda-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.mc-agenda-item strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.mc-agenda-item span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
} 

/* ===== WHAT YOU'LL LEARN ===== */
.mc-learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.mc-learn-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    transition: all 0.3s ease;
}

.mc-learn-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.mc-learn-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-size: 0.95rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.mc-learn-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.mc-learn-item span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

/* ===== EVENT DETAILS ===== */
.mc-details-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mc-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    flex: 1;
    min-width: 130px;
}

.mc-detail i {
    font-size: 1rem;
    color: #00c853;
}

.mc-detail-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #00c853;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mc-detail-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

/* ===== RIGHT SIDEBAR ===== */
.mc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Authority / Speakers */
.mc-authority {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
}

.mc-authority-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;
}

.mc-speaker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mc-speaker:last-child {
    margin-bottom: 0;
}

.mc-speaker:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 76, 0.2);
}

.mc-speaker-avatar {
    position: relative;
    flex-shrink: 0;
}

.mc-speaker-avatar-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001f54, #003d8f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    border: 2px solid rgba(201, 168, 76, 0.4);
    object-fit: cover ;
    object-position: top;
}

.mc-speaker-badge-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #0a0a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-speaker-badge-icon i {
    font-size: 13px;
    color: #00c853;
}

.mc-speaker-info {
    display: flex;
    flex-direction: column;
}

.mc-speaker-info strong {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1px;
}

.mc-speaker-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.mc-speaker-cred {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #c9a84c;
    font-weight: 500;
    margin-top: 1px;
}

/* ===== SOCIAL PROOF ===== */
.mc-social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mc-proof-stat {
    text-align: center;
    padding: 14px 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.mc-proof-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #c9a84c;
    margin-bottom: 3px;
}

.mc-proof-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== CTA BOX ===== */
.mc-cta-box {
    background: linear-gradient(135deg, rgba(255, 61, 0, 0.1), rgba(255, 109, 0, 0.05));
    border: 2px solid rgba(255, 61, 0, 0.3);
    border-radius: 14px;
    padding: 20px;
    text-align: center;

}

/* Countdown */
.mc-countdown {
    margin-bottom: 16px;
}

.mc-countdown-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mc-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mc-countdown-unit {
    text-align: center;
}

.mc-countdown-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    min-width: 46px;
    line-height: 1.2;
}

.mc-countdown-text {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
}

.mc-countdown-sep {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-top: -14px;
}

/* CTA Button */
.mc-cta-btn {
    display: block;
    background: linear-gradient(135deg, #ff3d00, #ff6d00);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.mc-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: mcShimmer 2.5s ease-in-out infinite;
}

@keyframes mcShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.mc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 61, 0, 0.6);
}

.mc-cta-btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mc-cta-btn-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* Trust Items */
.mc-cta-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mc-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.mc-trust-item i {
    color: #00c853;
    font-size: 11px;
}

/* ===== SHARE ===== */
.mc-share {
    text-align: center;
}

.mc-share-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mc-share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mc-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.mc-share-btn:hover {
    transform: translateY(-3px);
}

.mc-share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.mc-share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.mc-share-twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.mc-share-email:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a1a;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .mc-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mc-content {
        padding-right: 0;
    }

    .mc-title {
        font-size: 2rem;
    }

    .mc-learn-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mc-container {
        padding: 24px 16px 0;
    }

    .mc-title {
        font-size: 1.7rem;
    }

    .mc-details-row {
        flex-direction: column;
    }

    .mc-detail {
        min-width: auto;
    }

    .mc-social-proof {
        grid-template-columns: repeat(3, 1fr);
    }

    .mc-countdown-num {
        font-size: 20px;
        padding: 4px 8px;
        min-width: 40px;
    }

    .mc-urgency-inner {
        font-size: 11px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .mc-title {
        font-size: 1.4rem;
    }

    .mc-subtitle {
        font-size: 0.9rem;
    }

    .mc-cta-btn-text {
        font-size: 14px;
    }

    .mc-proof-number {
        font-size: 16px;
    }

    .mc-free-badge-text {
        font-size: 14px;
        letter-spacing: 2px;
    }
}