 /* ===== CSS RESET ===== */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(239, 68, 68, 0.6);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(239, 68, 68, 1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===== HEADER NAVIGATION (BEM) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header--scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    height: 40px;
    transition: height 0.3s ease;
}

.header__nav-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

.header__menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 50px 20px;
}

.header__mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f3f4f6;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
}

.header__mobile-menu-close:hover {
    background: #e5e7eb;
    transform: scale(1.1);
}

.header__mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke: #374151;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header__mobile-menu.is-open {
    right: 0;
}

.header__mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.header__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header__mobile-nav-link {
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.header__mobile-nav-link:hover {
    color: #ec4899;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__nav-link {
    color: #374151;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header__nav-link:hover {
    color: #ec4899;
}

.header__nav-separator {
    color: #d1d5db;
    font-size: 12px;
}

.header__cta-button {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.header__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

.hero__notice.mobile-notice{
    display: none;
}
/* ===== HERO SECTION (BEM) ===== */
.hero {
    position: relative;
    padding: 11rem 0 11rem;
    overflow: hidden;
    background-image: url('https://navbharattimes.indiatimes.com/photo/126368683.cms');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.7), rgba(252, 231, 243, 0.7), rgba(254, 243, 199, 0.7));
    z-index: 1;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__background-image {
    position: absolute;
    inset: 0;
    opacity: 0.28;
}

.hero__background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0.5px);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 241, 242, 0.75), rgba(252, 231, 243, 0.7));
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero__glow--1 {
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(251, 207, 232, 0.5), rgba(253, 164, 175, 0.4), transparent);
}

.hero__glow--2 {
    bottom: 0;
    left: 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(254, 215, 226, 0.45), rgba(251, 207, 232, 0.35), transparent);
}

.hero__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero__title {
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
}

.hero__title-main {
    font-family: 'sans-serif';
    font-weight: 700;
    font-size: 90px;
    background: linear-gradient(135deg, #db2777, #f43f5e, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(236, 72, 153, 0.15));
}

.hero__title-sub {
    font-family: 'sans-serif';
    font-weight: 600;
    font-size: 58px;
    background: linear-gradient(135deg, #f43f5e, #f9a8d4, #fda4af);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 0.75rem;
    line-height: 1.2;
}

.hero__divider {
    height: 8px;
    width: 144px;
    background: linear-gradient(90deg, #f9a8d4, #fda4af, #f9a8d4);
    border-radius: 9999px;
    margin: 0 auto 1.75rem;
    box-shadow: 0 4px 12px rgba(249, 168, 212, 0.4);
}

.hero__description {
    color: #374151;
    font-size: 18px;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.hero__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero__info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    border: 1px solid rgba(251, 207, 232, 0.3);
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

.hero__organizer {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero__cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero__cta-primary {
    background: linear-gradient(90deg, #ec4899, #f43f5e, #ec4899);
    color: white;
    padding: 1.25rem 3.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.03em;
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.5);
    transition: all 0.5s ease;
}

.hero__cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.6);
}

.hero__cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #f9a8d4;
    color: #db2777;
    padding: 1.25rem 3.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 30px rgba(249, 168, 212, 0.3);
    transition: all 0.5s ease;
}

.hero__cta-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(90deg, #fdf2f8, #fff1f2);
    border-color: #ec4899;
}

.hero__notice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}
.banner-info-button {
    max-width: 652px;
    margin: auto;
}
.hero__notice-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f9a8d4;
    animation: pulse 2s ease-in-out infinite;
}

.hero__notice-text {
    font-size: 12px;
    color: #db2777;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== TRUST BAR (BEM) ===== */
.trust-bar {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.trust-bar__decoration {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.1;
}

.trust-bar__decoration--top-left {
    top: 2.5rem;
    left: 2.5rem;
}

.trust-bar__decoration--bottom-right {
    bottom: 2.5rem;
    right: 2.5rem;
}

.trust-bar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.trust-bar__header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-bar__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.trust-bar__subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card__icon-wrapper {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.625rem;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-card__icon-wrapper {
    transform: scale(1.05);
}

.stat-card__icon-wrapper--pink {
    background-color: #fdf2f8;
}

.stat-card__icon-wrapper--purple {
    background-color: #faf5ff;
}

.stat-card__icon-wrapper--orange {
    background-color: #fff7ed;
}

.stat-card__icon-wrapper--blue {
    background-color: #eff6ff;
}

.stat-card__icon-wrapper--teal {
    background-color: #f0fdfa;
}

.stat-card__icon-wrapper--indigo {
    background-color: #eef2ff;
}

.stat-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
}

.stat-card__icon--pink {
    stroke: #ec4899;
}

.stat-card__icon--purple {
    stroke: #a855f7;
}

.stat-card__icon--orange {
    stroke: #f97316;
}

.stat-card__icon--blue {
    stroke: #3b82f6;
}

.stat-card__icon--teal {
    stroke: #14b8a6;
}

.stat-card__icon--indigo {
    stroke: #6366f1;
}

.stat-card__number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.stat-card__number--pink {
    color: #ec4899;
}

.stat-card__number--purple {
    color: #a855f7;
}

.stat-card__number--orange {
    color: #f97316;
}

.stat-card__number--blue {
    color: #3b82f6;
}

.stat-card__number--teal {
    color: #14b8a6;
}

.stat-card__number--indigo {
    color: #6366f1;
}

.stat-card__label {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.375rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.stat-card__badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.stat-card__badge--pink {
    background-color: #fce7f3;
    color: #db2777;
}

.stat-card__badge--purple {
    background-color: #f3e8ff;
    color: #9333ea;
}

.stat-card__badge--orange {
    background-color: #ffedd5;
    color: #ea580c;
}

.stat-card__badge--blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.stat-card__badge--teal {
    background-color: #ccfbf1;
    color: #0f766e;
}

.stat-card__badge--indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

/* ===== VIDEO INTRO SECTION (BEM) ===== */
.video-intro {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fdf2f8, #ffffff);
    position: relative;
    overflow: hidden;
}

.video-intro__decoration {
    position: absolute;
    font-size: 3.75rem;
    opacity: 0.05;
}

.video-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.video-intro__header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-intro__badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #fce7f3;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.video-intro__badge-text {
    color: #db2777;
    font-weight: 700;
    font-size: 14px;
}

.video-intro__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.video-intro__title-gradient {
    background: linear-gradient(90deg, #db2777, #f43f5e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-intro__description {
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.video-intro__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.video-intro__video {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    min-height: 500px;
    cursor: pointer;
}

.video-intro__video-thumbnail {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.video-intro__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 100%;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: blink 1s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 12px rgba(239, 68, 68, 0.6);
}

.video-intro__play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-intro__play-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.video-intro__cta-card {
    background: linear-gradient(135deg, #ec4899, #9333ea, #f9a8d4);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.video-intro__cta-button {
    width: 100%;
    background: white;
    color: #db2777;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.video-intro__cta-button:hover {
    transform: scale(1.05);
    background: #fdf2f8;
}

/* ===== WHO SHOULD ATTEND SECTION (BEM) ===== */
.who-attend {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff, rgba(252, 231, 243, 0.3), #ffffff);
    position: relative;
    overflow: hidden;
}

.who-attend__decoration {
    position: absolute;
    font-size: 3.75rem;
    opacity: 0.1;
}

.who-attend__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.who-attend__header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-attend__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #fce7f3;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.who-attend__badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #db2777;
}

.who-attend__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.who-attend__title-accent {
    color: #ec4899;
}

.who-attend__description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

.who-attend__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fdf2f8;
    border: 2px solid #fbcfe8;
    border-radius: 1.5rem;
    padding: 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-card--purple {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.feature-card--orange {
    background: #fff7ed;
    border-color: #fed7aa;
}

.feature-card--teal {
    background: #f0fdfa;
    border-color: #99f6e4;
}

.feature-card--rose {
    background: #fff1f2;
    border-color: #fecdd3;
}

.feature-card--indigo {
    background: #eef2ff;
    border-color: #c7d2fe;
}

.feature-card__emoji {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card__emoji {
    opacity: 0.5;
}

.feature-card__icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fce7f3;
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon-wrapper {
    transform: scale(1.1);
}

.feature-card--purple .feature-card__icon-wrapper {
    background: #e9d5ff;
}

.feature-card--orange .feature-card__icon-wrapper {
    background: #fed7aa;
}

.feature-card--teal .feature-card__icon-wrapper {
    background: #99f6e4;
}

.feature-card--rose .feature-card__icon-wrapper {
    background: #fecdd3;
}

.feature-card--indigo .feature-card__icon-wrapper {
    background: #c7d2fe;
}

.feature-card__icon {
    width: 28px;
    height: 28px;
    stroke: #ec4899;
}

.feature-card--purple .feature-card__icon {
    stroke: #a855f7;
}

.feature-card--orange .feature-card__icon {
    stroke: #f97316;
}

.feature-card--teal .feature-card__icon {
    stroke: #14b8a6;
}

.feature-card--rose .feature-card__icon {
    stroke: #f43f5e;
}

.feature-card--indigo .feature-card__icon {
    stroke: #6366f1;
}

.feature-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-card__description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== EXPERIENCE SECTION (BEM) ===== */
.experience {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.experience__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.experience__header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #f3e8ff;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.experience__badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #9333ea;
}

.experience__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.experience__title-accent {
    color: #9333ea;
}

.experience__description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.experience__cards {
    display: flex;
    gap: 1rem;
    height: 600px;
}

.experience-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    transition: flex 0.5s ease;
}

.experience-card.is-hovered {
    flex: 3;
}

.experience-card.is-any-hovered:not(.is-hovered) {
    flex: 0.5;
}

.experience-card__background {
    position: absolute;
    inset: 0;
}

.experience-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.8), rgba(147, 51, 234, 0.8));
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.experience-card.is-hovered .experience-card__overlay {
    opacity: 0.9;
}

.experience-card--blue .experience-card__overlay {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(20, 184, 166, 0.8));
}

.experience-card--orange .experience-card__overlay {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8), rgba(234, 179, 8, 0.8));
}

.experience-card__content {
    position: relative;
    z-index: 10;
    height: 100%;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.experience-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.experience-card__icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.experience-card__icon {
    width: 24px;
    height: 24px;
}

.experience-card__header {
    transition: opacity 0.5s ease;
}

.experience-card.is-any-hovered:not(.is-hovered) .experience-card__header {
    opacity: 0;
}

.experience-card__heading {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: font-size 0.5s ease;
}

.experience-card.is-hovered .experience-card__heading {
    font-size: 1.875rem;
}

.experience-card__expanded-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.experience-card.is-hovered .experience-card__expanded-content {
    max-height: 450px;
    opacity: 1;
}

.experience-card__bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
}

.experience-card__bullets::-webkit-scrollbar {
    width: 4px;
}

.experience-card__bullets::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.experience-card__bullets::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.experience-card__bullets::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.experience-card__bullet {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.experience-card__bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.experience-card__bullet span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.experience-card__button {
    width: 100%;
    background: white;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.experience-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #f9fafb;
}

/* ===== TWO EXPERIENCES SECTION (BEM) ===== */
.two-tracks {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff, rgba(243, 232, 255, 0.3));
}

.two-tracks__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.two-tracks__header {
    text-align: center;
    margin-bottom: 4rem;
}

.two-tracks__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #f3e8ff;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.two-tracks__badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #9333ea;
}

.two-tracks__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
}

.two-tracks__title-accent {
    color: #9333ea;
}

.two-tracks__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.track-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid #f3f4f6;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: row;
}

.track-card:hover {
    border-color: #e9d5ff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.track-card__content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.track-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ec4899;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.track-card:hover .track-card__icon {
    transform: scale(1.1);
}

.track-card--blue .track-card__icon {
    background: #3b82f6;
}

.track-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.track-card:hover .track-card__title {
    color: #9333ea;
}

.track-card__description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.track-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #ec4899, #9333ea);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: fit-content;
}

.track-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.track-card--blue .track-card__cta {
    background: linear-gradient(90deg, #3b82f6, #14b8a6);
}

.track-card__image-wrapper {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.track-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.track-card:hover .track-card__image {
    transform: scale(1.1);
}

/* ===== EXPO ZONES SECTION (BEM) ===== */
.expo-zones {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff, rgba(243, 232, 255, 0.3), #ffffff);
    position: relative;
    overflow: hidden;
}

.expo-zones__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.expo-zones__header {
    text-align: center;
    margin-bottom: 4rem;
}

.expo-zones__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #ffedd5;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.expo-zones__badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #ea580c;
}

.expo-zones__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.expo-zones__title-accent {
    color: #f97316;
}

.expo-zones__description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.expo-zones__cta-box {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: white;
    border: 2px solid #e9d5ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease;
}

.expo-zones__cta-box:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.expo-zones__cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1), rgba(249, 115, 22, 0.1));
}

.expo-zones__cta-content {
    position: relative;
    z-index: 10;
    padding: 3rem;
    text-align: center;
}

.expo-zones__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fdf2f8;
    border: 2px solid #fbcfe8;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.expo-zones__cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.expo-zones__cta-title-accent {
    color: #ec4899;
}

.expo-zones__cta-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.expo-zones__cta-email {
    color: #ec4899;
    font-weight: 500;
    transition: color 0.3s ease;
}

.expo-zones__cta-email:hover {
    color: #db2777;
    text-decoration: underline;
}

/* ===== FOOTER (BEM) ===== */
.footer {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-top: 1px solid #e5e7eb;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 7rem;
}

.footer__nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
}

.footer__nav-item {
    font-size: 12px;
}

.footer__nav-link {
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #db2777;
}

.footer__nav-separator {
    color: #d1d5db;
    font-size: 12px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
    stroke: #6b7280;
    fill: none;
    transition: stroke 0.3s ease;
}

.footer__social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer__social-link--facebook:hover {
    border-color: #3b5998;
    background: #eff6ff;
}

.footer__social-link--facebook:hover svg {
    stroke: #3b5998;
}

.footer__social-link--linkedin:hover {
    border-color: #0077b5;
    background: #eff6ff;
}

.footer__social-link--linkedin:hover svg {
    stroke: #0077b5;
}

.footer__social-link--instagram:hover {
    border-color: #ec4899;
    background: #fdf2f8;
}

.footer__social-link--instagram:hover svg {
    stroke: #ec4899;
}

.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1d5db, transparent);
    margin-bottom: 0.75rem;
}

.footer__bottom {
    text-align: center;
}

.footer__notice {
    font-size: 10px;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.footer__copyright {
    font-size: 10px;
    color: #374151;
    font-weight: 600;
}

/* ===== STICKY FOOTER CTA (BEM) ===== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.sticky-footer--visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-footer__gradient-border {
    height: 4px;
    background: linear-gradient(90deg, #f9a8d4, #fda4af, #c084fc);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.sticky-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.sticky-footer__info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sticky-footer__title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.sticky-footer__title {
    color: #000;
    font-weight: 700;
    font-size: 16px;
}

.sticky-footer__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sticky-footer__badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.sticky-footer__details {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.sticky-footer__detail {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    color: #4b5563;
}

.sticky-footer__separator {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.sticky-footer__buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-footer__button {
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sticky-footer__button--primary {
    background: linear-gradient(90deg, #ec4899, #f43f5e);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-footer__button--primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sticky-footer__button--secondary {
    background: transparent;
    color: #E60076;
    border: 2px solid #E60076;
}

.sticky-footer__button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-intro__content {
        grid-template-columns: 1fr;
    }

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

    .experience__cards {
        flex-direction: column;
        height: auto;
    }

    .experience-card {
        min-height: 400px;
        flex: 1 !important;
    }

    /* Show expanded content on mobile/tablet by default */
    .experience-card__expanded-content {
        max-height: 450px !important;
        opacity: 1 !important;
    }

    /* Keep header visible on mobile */
    .experience-card.is-any-hovered:not(.is-hovered) .experience-card__header {
        opacity: 1 !important;
    }

    /* Prevent cards from shrinking on mobile */
    .experience-card.is-any-hovered:not(.is-hovered) {
        flex: 1 !important;
    }

    .track-card {
        flex-direction: column;
    }

    .track-card__image-wrapper {
        width: 100%;
        min-height: 300px;
    }

    .header__nav-group {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    .hero__title-main {
        font-size: 60px;
    }

    .hero__title-sub {
        font-size: 40px;
    }

    .sticky-footer__container {
        flex-direction: column;
        text-align: center;
    }

    .sticky-footer__info {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-attend__grid {
        grid-template-columns: 1fr;
    }

    .trust-bar__title,
    .who-attend__title,
    .experience__title,
    .two-tracks__title,
    .expo-zones__title {
        font-size: 1.75rem;
    }

    .hero {
        padding: 7rem 0 8rem;
        padding-bottom: 40px;
    }

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

    .hero__title-sub {
        font-size: 32px;
    }

    .hero__cta-primary {
        font-size: 12px;
        padding: 12px 18px;
        width: 100%;
    }

    .hero__cta-secondary {
        font-size: 12px;
        padding: 12px 18px;
        width: 100%;
    }
    .track-card__image{
        display: none;
    }
    .sticky-footer__details {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer__nav-list{
        gap: 1.0rem;
    }
    .footer__nav-separator{
        display: none;
    }
    .stat-card__badge{
        font-size: 10px;
    }
    .trust-bar__container{
        padding: 0 15px;
    }
    .trust-bar {
        padding: 2rem 0;
    }

    .video-intro {
        padding: 2rem 0;
    }

    .who-attend {
        padding: 2rem 0;
    }

    .experience {
        padding: 2rem 0;
    }

    .expo-zones {
        padding: 2rem 0;
    }

    .two-tracks {
        padding: 2rem 0;
    }

    .footer {
        padding: 10px 0 60px 0;
    }

    .two-tracks__header {
        margin-bottom: 2rem;
    }

    .trust-bar__title,
    .who-attend__title,
    .experience__title,
    .two-tracks__title,
    .expo-zones__title {
        font-size: 24px;
        line-height: 34px;
    }

    .expo-zones__cta-content {
        padding: 15px;
    }

    .expo-zones__cta-icon {
        width: 70px;
        height: 70px;
    }

    .expo-zones__cta-title {
        font-size: 16px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 14px;
        line-height: 28px;
    }

    .expo-zones__cta-description {
        font-size: 16px;
    }

    .video-intro__container {
        padding: 0 15px;
    }

    .who-attend__container {
        padding: 0 15px;
    }

    .experience__container {
        padding: 0 15px;
    }

    .two-tracks__container {
        padding: 0 15px;
    }

    .track-card__image-wrapper {
        min-height: auto;
    }

    .track-card__content {
        padding: 15px;
    }

    .sticky-footer {
        padding: 15px;
    }

    .sticky-footer__title {
        color: #000;
        font-weight: 700;
        font-size: 16px;
    }

    .sticky-footer__details {
        flex-direction: row;
    }

    .sticky-footer__button {
        padding: 11px 12px;
        border-radius: 0.75rem;
        font-weight: 700;
        font-size: 12px;
        transition: all 0.3s ease;
        box-sizing: border-box;
        height: 44px;
    }

    .sticky-footer__title-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sticky-footer__detail-text {
        display: none;
    }

    .sticky-footer__container {
        gap: 11px;
    }
    .expo-zones__container{
        padding: 0 15px;
    }
    .header{
        padding: 1rem 0;
    }
    .header__logo{
        height: auto;
        transition: height 0.3s ease;
        width: 190px;
    }
    .contact-card__content{
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== CONTACT CARD (BEM) ===== */
.contact-card {
    margin-top: 1rem;
}

.contact-card__link {
    display: block;
    padding: 1.25rem;
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
    border-radius: 1rem;
    border: 2px solid #bfdbfe;
    text-decoration: none;
}

.contact-card__content {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.contact-card__icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card__icon-svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
}

.contact-card__text {
    flex: 1;
}

.contact-card__title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-card__email {
    color: #3b82f6;
    font-weight: 600;
}

/* ===== REGISTRATION MODAL (BEM) ===== */
.registration-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.registration-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.registration-modal {
    background: linear-gradient(135deg, #ffffff, #fdf2f8);
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3);
    border: 2px solid rgba(249, 168, 212, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.registration-modal__content {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    padding-right: 4px;
}

.registration-modal__content::-webkit-scrollbar {
    width: 6px;
}

.registration-modal__content::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.registration-modal__content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f9a8d4, #ec4899);
    border-radius: 10px;
}

.registration-modal__content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.registration-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f9a8d4, #fda4af, #c084fc);
    border-radius: 24px 24px 0 0;
}

.registration-modal-overlay.is-active .registration-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 22px;
    color: #ec4899;
    line-height: 1;
}

.modal-close-btn:hover {
    background: linear-gradient(135deg, #fbcfe8, #fce7f3);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
    color: #db2777;
}

.modal-phase {
    padding: 1.75rem 1.5rem;
    display: none;
}

.modal-phase.is-active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.modal-phase.is-active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.modal-phase__title {
    font-family: 'sans-serif';
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #db2777, #f43f5e, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.375rem;
    text-align: center;
}

.modal-phase__subtitle {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-form-group {
    margin-bottom: 1.5rem;
}

.modal-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.modal-form-label--required::after {
    content: ' *';
    color: #ec4899;
}

.modal-phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.modal-phone-code {
    width: 70px;
    padding: 0.625rem 0.5rem;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border: 2px solid #fbcfe8;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #db2777;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(236, 72, 153, 0.1);
}

.modal-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    color: #1f2937;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modal-form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.modal-form-input:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.modal-form-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15), 0 4px 12px rgba(236, 72, 153, 0.2);
    transform: translateY(-1px);
}

.modal-form-input:disabled {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    color: #6b7280;
    border-color: #fbcfe8;
    cursor: not-allowed;
    box-shadow: none;
}

.modal-otp-container {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 1rem 0;
}

.modal-otp-digit {
    width: 42px;
    height: 42px;
    padding: 0;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    transition: all 0.3s ease;
}

.modal-otp-digit:focus {
    outline: none;
    background: #ffffff;
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2), 0 4px 12px rgba(236, 72, 153, 0.15);
    transform: scale(1.05);
}

.modal-radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.375rem;
}

.modal-radio-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modal-radio-wrapper:hover {
    background: rgba(252, 231, 243, 0.5);
}

.modal-radio-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #ec4899;
}

.modal-radio-label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
}

/* Attending as single select buttons */
.modal-attending-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
    margin-top: 0.5rem;
}

.modal-attending-option {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-attending-option:hover {
    border-color: #fbcfe8;
    background: linear-gradient(135deg, #fdf2f8, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
}

.modal-attending-option.is-selected {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-color: #ec4899;
    border-width: 2.5px;
    color: #db2777;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.25);
    transform: translateY(-1px);
}

.modal-attending-option--full-width {
    grid-column: 1 / -1;
}

/* Checkbox styling */
.modal-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0 1.25rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #fdf2f8, #ffffff);
    border-radius: 12px;
    border: 2px solid #fbcfe8;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.modal-checkbox-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #ec4899;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 4px;
}

.modal-checkbox-label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
}

.modal-checkbox-wrapper:hover {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-color: #f9a8d4;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
    transform: translateY(-1px);
}

.modal-btn-primary {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #ec4899, #f43f5e, #ec4899);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
}

.modal-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modal-btn-primary:hover:not(:disabled)::before {
    left: 100%;
}

.modal-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5);
}

.modal-btn-primary:disabled {
    background: linear-gradient(90deg, #d1d5db, #e5e7eb);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

.modal-message--success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 8px rgba(21, 87, 36, 0.1);
}

.modal-message--error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 2px 8px rgba(114, 28, 36, 0.1);
}

.modal-message--info {
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    color: #db2777;
    border: 1px solid #fbcfe8;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.15);
}

.modal-resend-section {
    margin-top: 1rem;
    text-align: center;
    font-size: 14px;
}

.modal-resend-timer {
    color: #6b7280;
}

.modal-resend-link {
    color: #ec4899;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-resend-link:hover {
    color: #db2777;
    text-decoration: none;
}

.modal-resend-link:disabled {
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: none;
}

/* ===== SUCCESS SCREEN (BEM) ===== */
.modal-success {
    text-align: center;
    padding: 1rem 0;
}

.modal-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
    animation: scaleIn 0.5s ease;
}

.modal-success__icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
}

.modal-success__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.modal-success__message {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.modal-success__message strong {
    color: #374151;
    font-weight: 600;
}

.modal-success__contact {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 2rem;
}

.modal-success__email {
    color: #ec4899;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-success__email:hover {
    color: #db2777;
    text-decoration: underline;
}

.modal-success__share {
    margin-bottom: 2rem;
}

.modal-success__share-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.modal-success__share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-success__share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.modal-success__share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.modal-success__share-btn:hover {
    border-color: #ec4899;
    background: linear-gradient(135deg, #fdf2f8, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
    color: #db2777;
}

.modal-success__share-btn[data-platform="whatsapp"]:hover {
    border-color: #25d366;
    color: #25d366;
}

.modal-success__share-btn[data-platform="twitter"]:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.modal-success__share-btn[data-platform="linkedin"]:hover {
    border-color: #0077b5;
    color: #0077b5;
}

.modal-success__done-btn {
    width: 100%;
    margin-top: 0.5rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-phone-display {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, #fce7f3, #fdf2f8);
    border-radius: 8px;
    border: 1px solid #fbcfe8;
    font-weight: 500;
}

@media (max-width: 640px) {
    .registration-modal {
        max-width: 100%;
        border-radius: 16px;
    }

    .modal-phase {
        padding: 1.5rem;
    }

    .modal-phase__title {
        font-size: 24px;
    }

    .modal-otp-digit {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .modal-phone-code {
        width: 70px;
        font-size: 12px;
    }

    .modal-attending-options {
        grid-template-columns: 1fr 1fr;
    }

            .modal-attending-option {
                font-size: 12px;
                padding: 0.625rem 0.75rem;
                min-height: 40px;
            }
            
            .modal-form-input {
                padding: 0.75rem 0.875rem;
                font-size: 16px; /* Prevents zoom on iOS */
            }
            
            .modal-checkbox-wrapper {
                padding: 0.875rem;
                margin: 0.875rem 0 1rem 0;
            }

    .modal-phase {
        padding: 1.25rem 1rem;
    }

    .modal-phase__title {
        font-size: 20px;
    }

    .modal-phase__subtitle {
        font-size: 12px;
        margin-bottom: 1.25rem;
    }

            .modal-form-group {
                margin-bottom: 1rem;
            }

            .modal-success__icon {
                width: 70px;
                height: 70px;
                margin-bottom: 1.25rem;
            }

            .modal-success__icon svg {
                width: 35px;
                height: 35px;
            }

            .modal-success__title {
                font-size: 1.5rem;
                margin-bottom: 0.875rem;
            }

            .modal-success__message {
                font-size: 13px;
                margin-bottom: 1.25rem;
            }

            .modal-success__contact {
                font-size: 12px;
                margin-bottom: 1.5rem;
            }

            .modal-success__share-buttons {
                gap: 0.5rem;
            }

            .modal-success__share-btn {
                padding: 0.5rem 1rem;
                font-size: 12px;
            }

            .modal-success__share-btn svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 480px) {
            .hero__notice.desktop-notice{
                display: none;
            }
            .speaking-opportunities {
               
                flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    display: block !important;
            }
            .speaking-opportunities__icon{
                margin: auto;
            }
            .hero__cta{
                gap: 0.25rem;
            }
            .hero__notice-dot{
                display: none;
            }

.hero__notice.mobile-notice{
    display: block;
}
            .expo-zones__cta-description{
                margin: 0;
            }
            .sticky-footer__buttons{
                width: 100%;
            }
            .sticky-footer__button{
                padding: 8px 12px;
                border-radius: 0.75rem;
                font-weight: 700;
                font-size: 11px;
                transition: all 0.3s ease;
                box-sizing: border-box;
                height: 38px;
                white-space: nowrap;
                width: 100%;
            }
            .sticky-footer__details {
                padding: 4px 0;
            }
            .video-intro__video {
                min-height: auto;
            }
            .video-intro__video-thumbnail{
                min-height: auto;
            }
            .video-intro__play-button{
                width: 50px;
                height: 50px;
            }
        }