/* ===========================================
   WEBINAR LANDING PAGE - HERO SECTION
   =========================================== */

/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #052b59;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    min-height: 100vh;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.webinar-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #052b59;
    padding: 1rem 2rem;
    overflow: hidden;
}

/* Background Bubbles */
.webinar-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.webinar-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.webinar-bubble-1 {
    width: 250px;
    height: 250px;
    top: 5%;
    left: 40%;
}

.webinar-bubble-2 {
    width: 180px;
    height: 180px;
    top: 70%;
    left: 55%;
}

.webinar-bubble-3 {
    width: 220px;
    height: 220px;
    top: 40%;
    left: 20%;
}

.webinar-bubble-4 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 30%;
}

.webinar-bubble-5 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: 10%;
}

.webinar-bubble-6 {
    width: 160px;
    height: 160px;
    bottom: 30%;
    right: 15%;
}

/* Hero Container */
.webinar-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
}

/* Row: Content + Image */
.webinar-hero-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 70vh;
}

/* Left: Content */
.webinar-hero-content {
    flex: 1;
    text-align: right;
    padding: 1rem 0;
}

/* Badge */
.webinar-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 200, 100, 0.12);
    color: #efc864;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    border: 1px solid rgba(239, 200, 100, 0.15);
}

/* Title */
.webinar-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-hero-title span {
    color: #efc864;
}

/* Description */
.webinar-hero-description {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* Mobile Image (hidden on desktop) */
.webinar-hero-image-mobile {
    display: none;
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.webinar-hero-image-mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.webinar-image-overlay-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.webinar-image-badge-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 200, 100, 0.15);
    color: #efc864;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(239, 200, 100, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.webinar-image-badge-mobile i {
    font-size: 0.7rem;
}

/* Countdown Timer */
.webinar-countdown {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    min-width: 60px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #efc864;
    font-family: 'Cairo', sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.05rem;
}

.countdown-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0 0.1rem;
}

/* Details Box */
.webinar-hero-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8rem 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.webinar-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.webinar-detail-item i {
    color: #efc864;
    font-size: 0.85rem;
    width: 1.1rem;
    text-align: center;
}

/* CTA Button */
.webinar-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.btn-webinar-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #efc864;
    color: #052b59;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.7rem 2.2rem;
    border-radius: 9999px;
    transition: background-color 0.15s ease, transform 0.15s ease;
    text-decoration: none;
    box-shadow: 0 3px 16px rgba(239, 200, 100, 0.3);
    font-family: 'Cairo', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-webinar-primary:hover {
    background: #e5bb4e;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(239, 200, 100, 0.4);
}

.btn-webinar-primary i {
    transition: transform 0.15s ease;
    font-size: 0.85rem;
}

.btn-webinar-primary:hover i {
    transform: translateX(-4px);
}

/* Notes */
.webinar-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.webinar-hero-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

.webinar-hero-note i {
    color: #efc864;
    font-size: 0.8rem;
}

/* Right: Image (Desktop only) */
.webinar-hero-image-desktop {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    min-height: 450px;
    background: #0a3a6e;
}

.webinar-hero-image-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 450px;
}

.webinar-image-overlay-desktop {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.webinar-image-badge-desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 200, 100, 0.15);
    color: #efc864;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    border: 1px solid rgba(239, 200, 100, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.webinar-image-badge-desktop i {
    font-size: 0.8rem;
}

/* ===========================================
   ANIMATED SCROLL ARROW
   =========================================== */

.webinar-scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-top: 2.5rem;
    margin-bottom: -2.5rem;
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    letter-spacing: 0.04em;
}

.scroll-arrow-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.9;
    }
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
    .webinar-hero-row {
        gap: 2rem;
        min-height: 50vh;
    }

    .webinar-hero-image-desktop {
        min-height: 350px;
    }

    .webinar-hero-image-desktop img {
        min-height: 350px;
    }
}

@media (max-width: 900px) {
    .webinar-hero {
        padding: 1.5rem;
    }

    .webinar-hero-row {
        flex-direction: column;
        gap: 0;
        min-height: auto;
    }

    /* Hide desktop image */
    .webinar-hero-image-desktop {
        display: none;
    }

    /* Show mobile image */
    .webinar-hero-image-mobile {
        display: block;
    }

    .webinar-hero-content {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .webinar-hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.2rem;
    }

    .webinar-countdown {
        justify-content: center;
    }

    .webinar-hero-details {
        justify-content: center;
        width: 100%;
    }

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

    .webinar-hero-notes {
        justify-content: center;
    }

    .webinar-scroll-arrow {
        margin-top: 2rem;
    }

    .webinar-bubble-1 {
        width: 150px;
        height: 150px;
        top: 5%;
        left: 20%;
    }
    
    .webinar-bubble-2 {
        width: 120px;
        height: 120px;
        top: 80%;
        left: 30%;
    }
    
    .webinar-bubble-3 {
        width: 140px;
        height: 140px;
        top: 50%;
        left: 5%;
    }
    
    .webinar-bubble-4 {
        width: 100px;
        height: 100px;
        top: 10%;
        right: 15%;
    }
    
    .webinar-bubble-5 {
        width: 130px;
        height: 130px;
        bottom: 10%;
        left: 5%;
    }
    
    .webinar-bubble-6 {
        width: 110px;
        height: 110px;
        bottom: 40%;
        right: 10%;
    }
}

@media (max-width: 640px) {
    .webinar-hero {
        padding: 1rem;
    }

    .webinar-hero-image-mobile {
        border-radius: 12px;
        margin-bottom: 1.2rem;
    }

    .webinar-hero-title {
        font-size: 1.8rem;
    }

    .btn-webinar-primary {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .webinar-hero-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.8rem;
        margin-bottom: 0.8rem;
    }

    .webinar-hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .webinar-detail-item {
        font-size: 0.75rem;
    }

    .webinar-countdown {
        gap: 0.2rem;
        margin-bottom: 1.2rem;
    }

    .countdown-item {
        min-width: 45px;
        padding: 0.3rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.45rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .webinar-hero-details {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        padding: 0.6rem 1rem;
        width: 100%;
    }

    .webinar-hero-notes {
        gap: 0.5rem 1.2rem;
    }

    .webinar-hero-note {
        font-size: 0.6rem;
    }

    .webinar-image-overlay-mobile {
        padding: 1rem 1rem 0.8rem;
    }

    .webinar-image-badge-mobile {
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-scroll-arrow {
        margin-top: 1.5rem;
        margin-bottom: 0rem;
    }

    .scroll-arrow-text {
        font-size: 0.6rem;
    }

    .scroll-arrow-icon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .webinar-hero-title {
        font-size: 1.7rem;
    }

    .webinar-hero-description {
        font-size: 0.8rem;
    }

    .countdown-item {
        min-width: 38px;
        padding: 0.3rem 0.6rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .webinar-hero-image-mobile {
        border-radius: 10px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* ===========================================
   WHAT YOU'LL LEARN SECTION
   =========================================== */

.webinar-learn {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: #f8f9fb;
    overflow: hidden;
}

/* Background Bubbles - Light */
.webinar-learn-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.learn-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(5, 43, 89, 0.04);
    border: 1px solid rgba(5, 43, 89, 0.06);
}

.learn-bubble-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 5%;
}

.learn-bubble-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 80%;
}

.learn-bubble-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
}

.learn-bubble-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
}

.learn-bubble-5 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 15%;
}

.learn-bubble-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
}

.learn-bubble-7 {
    width: 80px;
    height: 80px;
    top: 45%;
    left: 60%;
}

.learn-bubble-8 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
}

/* Container */
.webinar-learn-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.webinar-learn-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.webinar-learn-badge {
    display: inline-block;
    background: rgba(5, 43, 89, 0.08);
    color: #052b59;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(5, 43, 89, 0.1);
}

.webinar-learn-title {
    font-size: clamp(2rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: #052b59;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-learn-title span {
    color: #efc864;
}

.webinar-learn-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* Grid */
.webinar-learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Card */
.webinar-learn-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(5, 43, 89, 0.06);
    text-align: right;
}

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

/* Card Header - Icon + Title in one row */
.learn-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.learn-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #efc864;
    font-size: 1.1rem;
}

.webinar-learn-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #052b59;
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
    margin: 0;
}

.webinar-learn-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding-right: 2.15rem;
}

/* ===========================================
   RESPONSIVE - LEARN SECTION
   =========================================== */

@media (max-width: 1024px) {
    .webinar-learn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .webinar-learn {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .webinar-learn-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .webinar-learn {
        padding: 3rem 1rem;
    }

    .webinar-learn-header {
        margin-bottom: 2.5rem;
    }

    .webinar-learn-card {
        padding: 1.2rem 1.2rem;
    }

    .learn-card-header {
        gap: 0.6rem;
        margin-bottom: 0.5rem;
    }

    .learn-card-icon {
        font-size: 1rem;
    }

    .webinar-learn-card h3 {
        font-size: 0.95rem;
    }

    .webinar-learn-card p {
        font-size: 0.85rem;
        padding-right: 1.8rem;
    }

    .learn-bubble-1 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 3%;
    }
    
    .learn-bubble-2 {
        width: 90px;
        height: 90px;
        top: 70%;
        left: 85%;
    }
    
    .learn-bubble-3 {
        width: 110px;
        height: 110px;
        top: 25%;
        left: 25%;
    }
    
    .learn-bubble-4 {
        width: 70px;
        height: 70px;
        top: 8%;
        right: 15%;
    }
    
    .learn-bubble-5 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: 10%;
    }
    
    .learn-bubble-6 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 20%;
    }
    
    .learn-bubble-7 {
        width: 60px;
        height: 60px;
        top: 50%;
        left: 65%;
    }
    
    .learn-bubble-8 {
        width: 90px;
        height: 90px;
        top: 75%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .webinar-learn {
        padding: 2.5rem 0.8rem;
    }

    .webinar-learn-title {
        font-size: 1.6rem;
    }

    .webinar-learn-subtitle {
        font-size: 0.85rem;
    }

    .webinar-learn-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-learn-card {
        padding: 1rem 1rem;
    }

    .learn-card-header {
        gap: 0.5rem;
    }

    .learn-card-icon {
        font-size: 0.9rem;
        width: 34px;
        height: 34px;
    }

    .webinar-learn-card h3 {
        font-size: 0.9rem;
    }

    .webinar-learn-card p {
        font-size: 0.8rem;
        padding-right: 1.5rem;
    }
}

/* ===========================================
   SPEAKERS SECTION
   =========================================== */

.webinar-speakers {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: #052b59;
    overflow: hidden;
}

/* Background Bubbles - Dark */
.webinar-speakers-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.speaker-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.speaker-bubble-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 5%;
}

.speaker-bubble-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 80%;
}

.speaker-bubble-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
}

.speaker-bubble-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
}

.speaker-bubble-5 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 15%;
}

.speaker-bubble-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
}

.speaker-bubble-7 {
    width: 80px;
    height: 80px;
    top: 45%;
    left: 60%;
}

.speaker-bubble-8 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
}

/* Container */
.webinar-speakers-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.webinar-speakers-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.webinar-speakers-badge {
    display: inline-block;
    background: rgba(239, 200, 100, 0.12);
    color: #efc864;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(239, 200, 100, 0.15);
}

.webinar-speakers-title {
    font-size: clamp(2rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-speakers-title span {
    color: #efc864;
}

.webinar-speakers-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* Grid */
.webinar-speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.webinar-speaker-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem 1.8rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.webinar-speaker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 200, 100, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(239, 200, 100, 0.2);
    transition: border-color 0.25s ease;
}

.webinar-speaker-card:hover .speaker-image {
    border-color: #efc864;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webinar-speaker-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #efc864;
    margin-bottom: 0.2rem;
    font-family: 'Cairo', sans-serif;
}

.speaker-role {
    display: inline-block;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.webinar-speaker-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* ===========================================
   RESPONSIVE - SPEAKERS SECTION
   =========================================== */

@media (max-width: 1024px) {
    .webinar-speakers-grid {
        gap: 1.5rem;
    }

    .webinar-speakers {
        padding: 4rem 1.5rem;
    }

    .speaker-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .webinar-speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .webinar-speakers {
        padding: 3rem 1rem;
    }

    .webinar-speakers-header {
        margin-bottom: 2.5rem;
    }

    .webinar-speaker-card {
        padding: 1.5rem 1.2rem;
    }

    .speaker-image {
        width: 100px;
        height: 100px;
    }

    .webinar-speaker-card h3 {
        font-size: 1rem;
    }

    .webinar-speaker-card p {
        font-size: 0.85rem;
    }

    .speaker-bubble-1 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 3%;
    }
    
    .speaker-bubble-2 {
        width: 90px;
        height: 90px;
        top: 70%;
        left: 85%;
    }
    
    .speaker-bubble-3 {
        width: 110px;
        height: 110px;
        top: 25%;
        left: 25%;
    }
    
    .speaker-bubble-4 {
        width: 70px;
        height: 70px;
        top: 8%;
        right: 15%;
    }
    
    .speaker-bubble-5 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: 10%;
    }
    
    .speaker-bubble-6 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 20%;
    }
    
    .speaker-bubble-7 {
        width: 60px;
        height: 60px;
        top: 50%;
        left: 65%;
    }
    
    .speaker-bubble-8 {
        width: 90px;
        height: 90px;
        top: 75%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .webinar-speakers {
        padding: 2.5rem 0.8rem;
    }

    .webinar-speakers-title {
        font-size: 1.6rem;
    }

    .webinar-speakers-subtitle {
        font-size: 0.85rem;
    }

    .webinar-speakers-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-speaker-card {
        padding: 1.2rem 1rem;
    }

    .speaker-image {
        width: 80px;
        height: 80px;
    }

    .webinar-speaker-card h3 {
        font-size: 0.95rem;
    }

    .speaker-role {
        font-size: 0.7rem;
    }

    .webinar-speaker-card p {
        font-size: 0.8rem;
    }
}

/* ===========================================
   WHY STUDY IN MALAYSIA SECTION
   =========================================== */

.webinar-why-malaysia {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: #f8f9fb;
    overflow: hidden;
}

/* Background Bubbles - Light */
.webinar-why-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(5, 43, 89, 0.04);
    border: 1px solid rgba(5, 43, 89, 0.06);
}

.why-bubble-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 5%;
}

.why-bubble-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 80%;
}

.why-bubble-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
}

.why-bubble-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
}

.why-bubble-5 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 15%;
}

.why-bubble-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
}

/* Container */
.webinar-why-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.webinar-why-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.webinar-why-badge {
    display: inline-block;
    background: rgba(5, 43, 89, 0.08);
    color: #052b59;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(5, 43, 89, 0.1);
}

.webinar-why-title {
    font-size: clamp(2rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: #052b59;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-why-title span {
    color: #efc864;
}

.webinar-why-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* Grid */
.webinar-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card */
.webinar-why-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(5, 43, 89, 0.06);
}

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

.webinar-why-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.webinar-why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.webinar-why-card:hover .webinar-why-card-image img {
    transform: scale(1.03);
}

.webinar-why-card-text {
    padding: 1.5rem 1.5rem 1.8rem;
    text-align: right;
}

.webinar-why-card-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #052b59;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-why-card-text p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* ===========================================
   RESPONSIVE - WHY MALAYSIA SECTION
   =========================================== */

@media (max-width: 1024px) {
    .webinar-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .webinar-why-malaysia {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .webinar-why-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .webinar-why-malaysia {
        padding: 3rem 1rem;
    }

    .webinar-why-header {
        margin-bottom: 2.5rem;
    }

    .webinar-why-card-image {
        height: 180px;
    }

    .webinar-why-card-text {
        padding: 1.2rem 1.2rem 1.5rem;
    }

    .webinar-why-card-text h3 {
        font-size: 1rem;
    }

    .webinar-why-card-text p {
        font-size: 0.85rem;
    }

    .why-bubble-1 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 3%;
    }
    
    .why-bubble-2 {
        width: 90px;
        height: 90px;
        top: 70%;
        left: 85%;
    }
    
    .why-bubble-3 {
        width: 110px;
        height: 110px;
        top: 25%;
        left: 25%;
    }
    
    .why-bubble-4 {
        width: 70px;
        height: 70px;
        top: 8%;
        right: 15%;
    }
    
    .why-bubble-5 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: 10%;
    }
    
    .why-bubble-6 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 20%;
    }
}

@media (max-width: 480px) {
    .webinar-why-malaysia {
        padding: 2.5rem 0.8rem;
    }

    .webinar-why-title {
        font-size: 1.6rem;
    }

    .webinar-why-subtitle {
        font-size: 0.85rem;
    }

    .webinar-why-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-why-card-image {
        height: 160px;
    }

    .webinar-why-card-text {
        padding: 1rem 1rem 1.2rem;
    }

    .webinar-why-card-text h3 {
        font-size: 0.95rem;
    }

    .webinar-why-card-text p {
        font-size: 0.8rem;
    }
}

/* ===========================================
   REGISTRATION SECTION
   =========================================== */

.webinar-register {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: #052b59;
    overflow: hidden;
}

/* Background Bubbles - Dark */
.webinar-register-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.register-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.register-bubble-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 5%;
}

.register-bubble-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 80%;
}

.register-bubble-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
}

.register-bubble-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
}

.register-bubble-5 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 15%;
}

.register-bubble-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
}

.register-bubble-7 {
    width: 80px;
    height: 80px;
    top: 45%;
    left: 60%;
}

.register-bubble-8 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
}

/* Container */
.webinar-register-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.webinar-register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.webinar-register-badge {
    display: inline-block;
    background: rgba(239, 200, 100, 0.12);
    color: #efc864;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(239, 200, 100, 0.15);
}

.webinar-register-title {
    font-size: clamp(2rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-register-title span {
    color: #efc864;
}

.webinar-register-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* Form Wrapper */
.webinar-register-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Form */
.webinar-register-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.register-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.register-form-group-full {
    grid-column: 1 / -1;
}

.register-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cairo', sans-serif;
}

.register-form-group input,
.register-form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    outline: none;
}

.register-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.register-form-group input:focus,
.register-form-group select:focus {
    border-color: #efc864;
    background: rgba(255, 255, 255, 0.12);
}

.register-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23efc864'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 14px;
}

.register-form-group select option {
    background: #052b59;
    color: #ffffff;
}

.register-form-group select:invalid {
    color: rgba(255, 255, 255, 0.5);
}

/* Submit Button */
.btn-register-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #efc864;
    color: #052b59;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(239, 200, 100, 0.3);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-register-submit:hover {
    background: #e5bb4e;
    transform: scale(1.01);
    box-shadow: 0 6px 28px rgba(239, 200, 100, 0.4);
}

.btn-register-submit i {
    transition: transform 0.2s ease;
    font-size: 0.9rem;
}

.btn-register-submit:hover i {
    transform: translateX(-4px);
}

/* Form Note */
.register-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Cairo', sans-serif;
    margin-top: 0.5rem;
}

.register-form-note i {
    color: #efc864;
    font-size: 0.7rem;
}

/* ===========================================
   RESPONSIVE - REGISTRATION SECTION
   =========================================== */

@media (max-width: 1024px) {
    .webinar-register {
        padding: 4rem 1.5rem;
    }

    .webinar-register-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .webinar-register {
        padding: 3rem 1rem;
    }

    .webinar-register-header {
        margin-bottom: 2rem;
    }

    .webinar-register-form-wrapper {
        padding: 1.5rem;
    }

    .register-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .register-form-group-full {
        grid-column: 1;
    }

    .webinar-register-form {
        gap: 1rem;
    }

    .register-bubble-1 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 3%;
    }
    
    .register-bubble-2 {
        width: 90px;
        height: 90px;
        top: 70%;
        left: 85%;
    }
    
    .register-bubble-3 {
        width: 110px;
        height: 110px;
        top: 25%;
        left: 25%;
    }
    
    .register-bubble-4 {
        width: 70px;
        height: 70px;
        top: 8%;
        right: 15%;
    }
    
    .register-bubble-5 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: 10%;
    }
    
    .register-bubble-6 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 20%;
    }
    
    .register-bubble-7 {
        width: 60px;
        height: 60px;
        top: 50%;
        left: 65%;
    }
    
    .register-bubble-8 {
        width: 90px;
        height: 90px;
        top: 75%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .webinar-register {
        padding: 2.5rem 0.8rem;
    }

    .webinar-register-title {
        font-size: 1.6rem;
    }

    .webinar-register-subtitle {
        font-size: 0.85rem;
    }

    .webinar-register-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-register-form-wrapper {
        padding: 1.2rem;
        border-radius: 14px;
    }

    .register-form-group label {
        font-size: 0.75rem;
    }

    .register-form-group input,
    .register-form-group select {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-register-submit {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    .register-form-note {
        font-size: 0.65rem;
    }
}

/* ===========================================
   FAQ SECTION
   =========================================== */

.webinar-faq {
    position: relative;
    width: 100%;
    padding: 5rem 2rem;
    background: #f8f9fb;
    overflow: hidden;
}

/* Background Bubbles - Light */
.webinar-faq-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.faq-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(5, 43, 89, 0.04);
    border: 1px solid rgba(5, 43, 89, 0.06);
}

.faq-bubble-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 5%;
}

.faq-bubble-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 80%;
}

.faq-bubble-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
}

.faq-bubble-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
}

.faq-bubble-5 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 15%;
}

.faq-bubble-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
}

/* Container */
.webinar-faq-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.webinar-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.webinar-faq-badge {
    display: inline-block;
    background: rgba(5, 43, 89, 0.08);
    color: #052b59;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(5, 43, 89, 0.1);
}

.webinar-faq-title {
    font-size: clamp(2rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: #052b59;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-faq-title span {
    color: #efc864;
}

.webinar-faq-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* FAQ List */
.webinar-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* FAQ Item */
.webinar-faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(5, 43, 89, 0.08);
    overflow: hidden;
    transition: border-color 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.webinar-faq-item:hover {
    border-color: rgba(239, 200, 100, 0.3);
}

.webinar-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #052b59;
    text-align: right;
    transition: background-color 0.2s ease;
    gap: 1rem;
}

.webinar-faq-question:hover {
    background: rgba(5, 43, 89, 0.02);
}

.webinar-faq-question span {
    flex: 1;
    line-height: 1.5;
}

.webinar-faq-question i {
    flex-shrink: 0;
    color: #efc864;
    font-size: 0.9rem;
    transition: transform 0.25s ease;
}

.webinar-faq-item.active .webinar-faq-question i {
    transform: rotate(180deg);
}

.webinar-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.webinar-faq-item.active .webinar-faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.webinar-faq-answer p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* ===========================================
   RESPONSIVE - FAQ SECTION
   =========================================== */

@media (max-width: 1024px) {
    .webinar-faq {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .webinar-faq {
        padding: 3rem 1rem;
    }

    .webinar-faq-header {
        margin-bottom: 2rem;
    }

    .webinar-faq-question {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .webinar-faq-item.active .webinar-faq-answer {
        padding: 0 1rem 1rem;
    }

    .webinar-faq-answer p {
        font-size: 0.85rem;
    }

    .faq-bubble-1 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 3%;
    }
    
    .faq-bubble-2 {
        width: 90px;
        height: 90px;
        top: 70%;
        left: 85%;
    }
    
    .faq-bubble-3 {
        width: 110px;
        height: 110px;
        top: 25%;
        left: 25%;
    }
    
    .faq-bubble-4 {
        width: 70px;
        height: 70px;
        top: 8%;
        right: 15%;
    }
    
    .faq-bubble-5 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: 10%;
    }
    
    .faq-bubble-6 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 20%;
    }
}

@media (max-width: 480px) {
    .webinar-faq {
        padding: 2.5rem 0.8rem;
    }

    .webinar-faq-title {
        font-size: 1.6rem;
    }

    .webinar-faq-subtitle {
        font-size: 0.85rem;
    }

    .webinar-faq-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-faq-question {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .webinar-faq-question i {
        font-size: 0.8rem;
    }

    .webinar-faq-item.active .webinar-faq-answer {
        padding: 0 0.8rem 0.8rem;
    }

    .webinar-faq-answer p {
        font-size: 0.8rem;
    }
}

/* ===========================================
   FINAL CTA SECTION
   =========================================== */

.webinar-final-cta {
    position: relative;
    width: 100%;
    padding: 2rem;
    background: #052b59;
    overflow: hidden;
}

/* Background Bubbles - Dark */
.webinar-final-cta-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.final-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.final-bubble-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 5%;
}

.final-bubble-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    left: 80%;
}

.final-bubble-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 30%;
}

.final-bubble-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
}

.final-bubble-5 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 15%;
}

.final-bubble-6 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 25%;
}

.final-bubble-7 {
    width: 80px;
    height: 80px;
    top: 45%;
    left: 60%;
}

.final-bubble-8 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
}

/* Container */
.webinar-final-cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Content */
.webinar-final-cta-content {
    text-align: center;
    padding: 2rem 1rem;
}

/* Badge */
.webinar-final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 200, 100, 0.12);
    color: #efc864;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    font-family: 'Cairo', sans-serif;
    border: 1px solid rgba(239, 200, 100, 0.15);
}

.webinar-final-cta-badge i {
    font-size: 0.7rem;
}

/* Title */
.webinar-final-cta-title {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-final-cta-title strong {
    color: #efc864;
    font-weight: 800;
}

/* Subtitle */
.webinar-final-cta-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 1.8rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

/* Features */
.webinar-final-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.8rem;
    margin-bottom: 2rem;
}

.final-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
}

.final-feature i {
    color: #efc864;
    font-size: 0.9rem;
}

/* CTA Button */
.webinar-final-cta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #efc864;
    color: #052b59;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.9rem 3rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(239, 200, 100, 0.35);
    font-family: 'Cairo', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-final-cta:hover {
    background: #e5bb4e;
    transform: scale(1.02);
    box-shadow: 0 6px 32px rgba(239, 200, 100, 0.45);
}

.btn-final-cta i {
    transition: transform 0.2s ease;
    font-size: 0.9rem;
}

.btn-final-cta:hover i {
    transform: translateX(-4px);
}

/* Note */
.webinar-final-cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
}

.webinar-final-cta-note i {
    color: #efc864;
    font-size: 0.7rem;
}

/* ===========================================
   RESPONSIVE - FINAL CTA SECTION
   =========================================== */

@media (max-width: 1024px) {
    .webinar-final-cta {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .webinar-final-cta {
        padding: 3rem 1rem;
    }

    .webinar-final-cta-content {
        padding: 1rem 0.5rem;
    }

    .webinar-final-cta-title {
        font-size: 1.8rem;
    }

    .webinar-final-cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .webinar-final-cta-features {
        gap: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .final-feature {
        font-size: 0.8rem;
    }

    .btn-final-cta {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .webinar-final-cta-note {
        font-size: 0.7rem;
    }

    .final-bubble-1 {
        width: 120px;
        height: 120px;
        top: 3%;
        left: 3%;
    }
    
    .final-bubble-2 {
        width: 90px;
        height: 90px;
        top: 70%;
        left: 85%;
    }
    
    .final-bubble-3 {
        width: 110px;
        height: 110px;
        top: 25%;
        left: 25%;
    }
    
    .final-bubble-4 {
        width: 70px;
        height: 70px;
        top: 8%;
        right: 15%;
    }
    
    .final-bubble-5 {
        width: 100px;
        height: 100px;
        bottom: 8%;
        left: 10%;
    }
    
    .final-bubble-6 {
        width: 80px;
        height: 80px;
        bottom: 25%;
        right: 20%;
    }
    
    .final-bubble-7 {
        width: 60px;
        height: 60px;
        top: 50%;
        left: 65%;
    }
    
    .final-bubble-8 {
        width: 90px;
        height: 90px;
        top: 75%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .webinar-final-cta {
        padding: 2.5rem 0.8rem;
    }

    .webinar-final-cta-title {
        font-size: 1.5rem;
    }

    .webinar-final-cta-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.8rem;
    }

    .webinar-final-cta-subtitle {
        font-size: 0.85rem;
    }

    .final-feature {
        font-size: 0.75rem;
    }

    .btn-final-cta {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .webinar-final-cta-note {
        font-size: 0.65rem;
    }
}

/* LTR Inputs for Email and Phone */
.ltr-input {
    direction: ltr !important;
    text-align: left !important;
}

.ltr-input::placeholder {
    direction: rtl !important;
    text-align: right !important;
}

/* ===========================================
   SUCCESS POPUP MODAL
   =========================================== */

.webinar-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.webinar-success-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem 2.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.webinar-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(239, 200, 100, 0.15);
    border: 2px solid #efc864;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2.2rem;
    color: #efc864;
}

.webinar-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #052b59;
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-success-message {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-family: 'Cairo', sans-serif;
}

.webinar-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #efc864;
    color: #052b59;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.7rem 2rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 3px 16px rgba(239, 200, 100, 0.3);
}

.webinar-success-btn:hover {
    background: #e5bb4e;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(239, 200, 100, 0.4);
}

.webinar-success-btn i {
    transition: transform 0.2s ease;
}

.webinar-success-btn:hover i {
    transform: translateX(-4px);
}

/* ===========================================
   RESPONSIVE - SUCCESS POPUP
   =========================================== */

@media (max-width: 480px) {
    .webinar-success-modal {
        padding: 2rem 1.5rem 1.8rem;
    }

    .webinar-success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .webinar-success-title {
        font-size: 1.2rem;
    }

    .webinar-success-message {
        font-size: 0.85rem;
    }

    .webinar-success-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
    flex-shrink: 0;
    color: #e5bb4e;
}

.icon-spin {
    animation: icon-rotate 0.8s linear infinite;
}

@keyframes icon-rotate {
    to {
        transform: rotate(360deg);
    }
}