/* ========================================
   Campaign Landing — Redesigned v4
   Mobile-first  ·  RTL  ·  Clean & Fresh
   ======================================== */

/* ---------- FONT IMPORT ---------- */
@import url('https://db.onlinewebfonts.com/c/4ce5fad2df30ef4ed5ee61f579ee24b7?family=CoconNextArabic-Regular');

/* ---------- TOKENS ---------- */
:root {
    --navy: #2c8d92;
    --navy-d: #3c3c3b;
    --navy-l: #35a5ab;
    --gold: #4ec1cf;
    --gold-l: #78d4df;
    --teal: #4ec1cf;
    --teal-l: #78d4df;
    --white: #ffffff;
    --off: #f4f8f8;
    --gray-1: #e8eef0;
    --gray-2: #d0d8dc;
    --gray-3: #9ca3af;
    --gray-4: #6b7280;
    --gray-5: #3c3c3b;
    --red: #dc3545;
    --green: #22c55e;
    --ff: 'CoconNextArabic-Regular', 'Cairo', sans-serif;
    --ff-heading: 'Cairo', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --r: 10px;
    --r-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow: 0 4px 20px rgba(44, 141, 146, .07);
    --shadow-lg: 0 10px 40px rgba(44, 141, 146, .1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--ff);
    line-height: 1.8;
    color: var(--gray-5);
    background: var(--white);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}


/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 28px;
    font-family: var(--ff);
    font-size: .92rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
    text-decoration: none;
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(78, 193, 207, .3)
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(78, 193, 207, .45)
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .35)
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6)
}

.btn--navy {
    background: var(--navy);
    color: var(--white)
}

.btn--navy:hover {
    background: var(--navy-l);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(44, 141, 146, .25)
}

.btn--block {
    width: 100%;
    padding: 14px
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.05rem
}

.btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important
}

.spinner {
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}


/* ---------- SECTION UTILS ---------- */
.section {
    padding: 72px 0
}

.section__label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 6px;
}

.section__title {
    font-family: var(--ff-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.section__subtitle {
    font-size: .92rem;
    color: var(--gray-4);
    margin-bottom: 32px;
    max-width: 480px
}

/* reveal */
.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal-up.visible {
    opacity: 1;
    transform: none
}


/* ========================================
   FLOATING SOCIAL
   ======================================== */
.social-float {
    position: fixed;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}

.social-float.show {
    opacity: 1;
    pointer-events: auto
}

.social-float__link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform .25s var(--ease);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.social-float__link:hover {
    transform: scale(1.12)
}

.social-float__link--fb {
    background: #1877f2
}

.social-float__link--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.social-float__link--tt {
    background: #010101
}

.social-float__link--yt {
    background: #FF0000
}

.social-float__link--tw {
    background: #0f1419
}

.social-float__link--wa {
    background: #25D366
}

.social-float__link--sc {
    background: #FFFC00;
    color: #333
}


/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    background: var(--navy-d);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #3c3c3b;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(60, 60, 59, .55), rgba(44, 141, 146, .45));
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    pointer-events: none;
    /* Let clicks pass through if needed, but actions have pointer-events auto */
}

.hero__content * {
    pointer-events: auto
}

.hero__text {
    max-width: 600px
}

.hero__badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(78, 193, 207, .12);
    color: var(--gold-l);
    border: 1px solid rgba(78, 193, 207, .2);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 20px;
}

.hero__title span {
    color: var(--gold-l)
}

.hero__desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 36px;
    max-width: 520px;
    background: rgba(60, 60, 59, 0.6);
    padding: 16px 20px;
    border-radius: 12px;
    border-right: 3px solid var(--gold);
    backdrop-filter: blur(4px);
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* Spinner Fix */
.spinner[hidden] {
    display: none !important;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .35);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    transition: all .3s var(--ease);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 50px !important;
}

/* Swiper Nav */
.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.25);
    transition: color .3s;
    width: 50px;
    height: 50px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--gold);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: 800;
}

/* scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    color: rgba(255, 255, 255, .35);
    animation: hintBounce 2.5s ease-in-out infinite;
}

@keyframes hintBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}


/* ========================================
   ABOUT
   ======================================== */
.about {
    background: var(--white)
}

.about__grid {
    display: grid;
    gap: 36px
}

.about__body p {
    font-size: .95rem;
    color: var(--gray-4);
    margin-bottom: 12px;
    line-height: 2
}

.about__body strong {
    color: var(--navy);
    font-weight: 600
}

.about__features {
    display: grid;
    gap: 12px
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    border-radius: var(--r-lg);
    background: var(--off);
    border: 1px solid var(--gray-1);
    transition: all .3s var(--ease);
}

.feature-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px)
}

.feature-card__header {
    display: flex;
    align-items: center;
    gap: 12px
}

.feature-card__header h4 {
    font-family: var(--ff-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0
}

.feature-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    font-size: .85rem;
    color: var(--gray-4);
    line-height: 1.7
}


/* ========================================
   STATS
   ======================================== */
.stats {
    padding: 0;
    position: relative;
    z-index: 8
}

.stats__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px 20px;
    margin-top: -32px;
    gap: 20px;
}

.stats__item {
    text-align: center;
    flex: 1;
    min-width: 100px
}

.stats__num {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2
}

.stats__label {
    font-size: .72rem;
    color: var(--gray-3)
}

.stats__divider {
    width: 1px;
    height: 36px;
    background: var(--gray-1);
    flex-shrink: 0
}


/* (IDEA section styles moved to bottom — see "IDEA SECTION" block) */


/* ========================================
   KNOWLEDGE TIMELINE
   ======================================== */
.knowledge {
    background: var(--white)
}

.timeline {
    position: relative;
    padding-right: 28px
}

.timeline__line {
    position: absolute;
    top: 0;
    right: 11px;
    width: 2px;
    height: 100%;
    background: var(--gray-1);
    border-radius: 2px;
}

.timeline__line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--teal), var(--gold));
    border-radius: 2px;
    transition: height .6s var(--ease);
}

.timeline__item {
    position: relative;
    margin-bottom: 28px
}

.timeline__dot {
    position: absolute;
    top: 24px;
    right: -28px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-1);
    color: var(--gray-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    z-index: 2;
    border: 2px solid var(--white);
    transition: all .4s var(--ease);
}

.timeline__item.viewed .timeline__dot {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(77, 182, 172, .15);
}

.timeline__card {
    background: var(--off);
    border: 1px solid var(--gray-1);
    border-radius: var(--r-lg);
    padding: 22px 20px;
    transition: all .4s var(--ease);
}

.timeline__item.viewed .timeline__card {
    border-color: rgba(77, 182, 172, .2);
    box-shadow: 0 0 20px rgba(77, 182, 172, .06);
}

.timeline__card h3 {
    font-family: var(--ff-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px
}

.timeline__card p {
    font-size: .85rem;
    color: var(--gray-4);
    line-height: 2
}

/* Card Header */
.timeline__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.timeline__card-header h3 {
    margin-bottom: 0;
}

/* Toggle Button */
.timeline__toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-2);
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.timeline__toggle:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(78, 193, 207, .06);
}

.timeline__toggle svg {
    transition: transform .3s var(--ease);
}

.timeline__toggle--open svg {
    transform: rotate(180deg);
}

/* Details Section */
.timeline__details {
    overflow: hidden;
    transition: max-height .35s var(--ease);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-1);
}

.timeline__details img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r);
    margin: 8px 0;
}

.timeline__details p {
    margin-bottom: 8px;
}

.timeline__details ul,
.timeline__details ol {
    padding-right: 20px;
    margin-bottom: 8px;
}

.timeline__details li {
    font-size: .85rem;
    color: var(--gray-4);
    line-height: 2;
}

/* Share Buttons */
.timeline__share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-1);
}

.share-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s var(--ease);
    position: relative;
}

.share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .15);
}

.share-btn--fb {
    background: #1877f2;
    color: #fff;
}

.share-btn--tw {
    background: #0f1419;
    color: #fff;
}

.share-btn--li {
    background: #0a66c2;
    color: #fff;
}

.share-btn--copy {
    background: var(--teal);
    color: #fff;
}

/* Toast */
.share-toast {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    animation: toastIn .3s var(--ease), toastOut .4s 1.2s var(--ease) forwards;
    z-index: 10;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


/* ========================================
   KNOWLEDGE + FACEBOOK TWO-COLUMN LAYOUT
   ======================================== */
.knowledge-fb__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 900px) {
    .knowledge-fb__grid {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }
}

@media (min-width: 1200px) {
    .knowledge-fb__grid {
        grid-template-columns: 1fr 380px;
    }
}

.knowledge-fb__social {
    position: sticky;
    top: 24px;
    align-self: start;
}

/* ---------- Facebook Feed Card ---------- */
.fb-feed-card {
    background: var(--white);
    border: 1px solid var(--gray-1);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fb-feed-card__title {
    font-family: var(--ff-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy-d);
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-1);
    background: var(--off);
}

.fb-feed-card__content {
    padding: 24px 20px;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 transparent;
}

/* ---------- Facebook Page Card (Simple Visit Link) ---------- */
.fb-page-card {
    text-align: center;
    padding: 24px 16px;
}

.fb-page-card__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-page-card__name {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-d);
    margin-bottom: 8px;
}

.fb-page-card__desc {
    font-size: .88rem;
    color: var(--gray-4);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.fb-page-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1877F2;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 16px rgba(24, 119, 242, .25);
}

.fb-page-card__btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(24, 119, 242, .35);
}


/* ---------- Facebook Posts List (Server-Rendered) ---------- */
.fb-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fb-post-item {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--off);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    border: 1px solid var(--gray-1);
}

.fb-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.fb-post-item__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.fb-post-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-post-item__text {
    padding: 12px 14px 4px;
    font-size: .88rem;
    color: var(--navy-d);
    line-height: 1.7;
    margin: 0;
}

.fb-post-item__footer {
    padding: 8px 14px 10px;
    border-top: 1px solid var(--gray-1);
    margin-top: 4px;
}

.fb-post-item__date {
    font-size: .75rem;
    color: var(--gray-4);
}

.fb-feed-card__more {
    display: block;
    text-align: center;
    margin-top: 16px;
    padding: 10px;
    font-size: .88rem;
    font-weight: 600;
    color: #1877F2;
    text-decoration: none;
    border-radius: 8px;
    transition: background .2s;
}

.fb-feed-card__more:hover {
    background: #e8f0fe;
}


/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 72px 0;
    text-align: center;
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy-l) 100%);
    color: var(--white);
}

.cta__title {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px
}

.cta__desc {
    font-size: .92rem;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto
}


/* ========================================
   GALLERY (Images & Videos)
   ======================================== */
.gallery {
    overflow: hidden;
    background: var(--off);
    padding: 100px 0 80px;
}

.gallery--videos {
    background: #fff;
    border-top: 1px solid var(--gray-1);
}

/* --- Continuous Marquee --- */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee {
    overflow: hidden;
    padding: 20px 0;
    direction: ltr;
    /* isolate from RTL page — fixes flex alignment */
}

.marquee__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll calc(var(--marquee-items, 6) * 4s) linear infinite;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* Static mode: when images fit the viewport, no scrolling needed */
.marquee--static {
    display: flex;
    justify-content: center;
}

.marquee--static .marquee__track {
    animation: none;
    width: auto;
    justify-content: center;
}

.marquee--static .marquee__item[aria-hidden="true"] {
    display: none;
}

.marquee__item {
    flex-shrink: 0;
    width: 320px;
}

@media (max-width: 640px) {
    .marquee__item {
        width: 260px;
    }
}

@media (min-width: 1024px) {
    .marquee__item {
        width: 360px;
    }
}

.gallery__slide {
    height: auto;
    transition: transform 0.3s;
}

/* Image Item */
.gallery__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 21, 32, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: transform 0.3s 0.1s var(--ease);
}

.gallery__item:hover .gallery__overlay span {
    transform: translateY(0);
}

.gallery__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.gallery__item:hover .gallery__icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    background: var(--gold);
}


/* ========================================
   YOUTUBE PLAYLIST LAYOUT
   ======================================== */
.yt-playlist-section {
    background: #f1f1f1;
    padding: 80px 0;
    direction: rtl;
}

.yt-playlist {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    background: #0f0f0f;
    direction: rtl;
}

/* --- Main Player --- */
.yt-player {
    background: #0f0f0f;
    order: 2;
}

.yt-player__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.yt-player__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    direction: ltr;
}

.yt-player__info {
    padding: 16px 20px 20px;
    text-align: right;
}

.yt-player__info h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.yt-player__info p {
    color: #aaa;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* --- Playlist Sidebar --- */
.yt-sidebar {
    background: #212121;
    display: flex;
    flex-direction: column;
    max-height: 540px;
    order: 1;
}

.yt-sidebar__header {
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.yt-sidebar__title {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.yt-sidebar__count {
    color: #aaa;
    font-size: 0.8rem;
}

.yt-sidebar__list {
    overflow-y: auto;
    flex: 1;
    direction: rtl;
    scrollbar-width: thin;
    scrollbar-color: #555 #212121;
}

.yt-sidebar__list::-webkit-scrollbar {
    width: 6px;
}

.yt-sidebar__list::-webkit-scrollbar-track {
    background: #212121;
}

.yt-sidebar__list::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

/* --- Playlist Item --- */
.yt-sidebar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.yt-sidebar__item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.yt-sidebar__item--active {
    background: rgba(255, 255, 255, 0.15);
}

.yt-sidebar__num {
    color: #aaa;
    font-size: 0.75rem;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.yt-sidebar__item--active .yt-sidebar__num {
    color: #fff;
    font-weight: 700;
}

.yt-sidebar__thumb {
    position: relative;
    width: 100px;
    min-width: 100px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}

.yt-sidebar__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}

.yt-sidebar__item:hover .yt-sidebar__thumb img {
    opacity: 0.8;
}

.yt-sidebar__play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.2s;
}

.yt-sidebar__item:hover .yt-sidebar__play-icon {
    opacity: 1;
}

.yt-sidebar__item--active .yt-sidebar__play-icon {
    opacity: 1;
    background: rgba(255, 0, 0, 0.4);
}

.yt-sidebar__info {
    flex: 1;
    min-width: 0;
    text-align: right;
}

.yt-sidebar__info h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0 0 3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.yt-sidebar__info p {
    color: #aaa;
    font-size: 0.72rem;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .yt-playlist {
        grid-template-columns: 1fr;
    }

    .yt-player {
        order: 1;
    }

    .yt-sidebar {
        order: 2;
        max-height: 320px;
    }
}

@media (max-width: 560px) {
    .yt-playlist-section {
        padding: 50px 0;
    }

    .yt-sidebar__thumb {
        width: 80px;
        min-width: 80px;
    }

    .yt-sidebar__info h4 {
        font-size: 0.78rem;
    }

    .yt-player__info h3 {
        font-size: 0.95rem;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s var(--ease), visibility .3s;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.lightbox__close {
    position: fixed;
    top: 14px;
    right: 18px;
    font-size: 2.2rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    z-index: 1002;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
}

.lightbox__close:hover {
    transform: scale(1.2);
    background: rgba(0, 0, 0, 0.7);
}

/* Article container — scrollable wrapper */
.lightbox__article {
    max-height: 90vh;
    max-width: 900px;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .2) transparent;
}

/* White card for article mode */
.lightbox--article .lightbox__article {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    scrollbar-color: #ccc #f5f5f5;
}

.lightbox__article::-webkit-scrollbar {
    width: 6px;
}

.lightbox__article::-webkit-scrollbar-track {
    background: transparent;
}

.lightbox__article::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 3px;
}

.lightbox--article .lightbox__article::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 0 0 16px 0;
}

.lightbox--article .lightbox__article::-webkit-scrollbar-thumb {
    background: #ccc;
}

.lightbox__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--r);
    transform: scale(.92);
    transition: transform .35s var(--ease);
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* When article mode is active, image fills the white card top */
.lightbox--article .lightbox__content {
    background: #f0f0f0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.lightbox--article .lightbox__content img {
    max-height: 50vh;
    border-radius: 0;
    transform: scale(1);
    width: 100%;
    object-fit: contain;
}

.lightbox.show .lightbox__content img {
    transform: scale(1);
}

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
    z-index: 1001;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev {
    left: 16px;
}

.lightbox__nav--next {
    right: 16px;
}

.lightbox__counter {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    padding: 12px 0 0;
    text-align: center;
    direction: ltr;
    font-variant-numeric: tabular-nums;
}

/* Counter in article mode */
.lightbox--article .lightbox__counter {
    color: #999;
    padding: 14px 0 0;
}

/* Article-style description */
.lightbox__description {
    display: none;
    background: transparent;
    border-top: 1px solid #eee;
    border-radius: 0 0 16px 16px;
    padding: 32px 36px 40px;
    direction: rtl;
    text-align: right;
    color: #333;
    font-size: 1rem;
    line-height: 2;
}

.lightbox__description h1,
.lightbox__description h2,
.lightbox__description h3,
.lightbox__description h4,
.lightbox__description h5,
.lightbox__description h6 {
    color: #1a1a2e;
    font-family: var(--ff-heading);
    margin-top: 24px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.lightbox__description h1 {
    font-size: 1.6rem;
}

.lightbox__description h2 {
    font-size: 1.35rem;
}

.lightbox__description h3 {
    font-size: 1.15rem;
}

.lightbox__description p {
    margin-bottom: 16px;
    color: #444;
}

.lightbox__description img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

.lightbox__description ul,
.lightbox__description ol {
    margin-bottom: 16px;
    padding-right: 24px;
    color: #555;
}

.lightbox__description li {
    margin-bottom: 6px;
}

.lightbox__description a {
    color: var(--teal);
    text-decoration: underline;
}

.lightbox__description a:hover {
    color: var(--navy);
}

.lightbox__description blockquote {
    border-right: 4px solid var(--gold);
    padding: 12px 20px;
    margin: 16px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
}

.lightbox__description table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.lightbox__description th,
.lightbox__description td {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    text-align: right;
}

.lightbox__description th {
    background: #f5f5f5;
    font-weight: 700;
    color: #1a1a2e;
}

.lightbox__description strong {
    color: #1a1a2e;
    font-weight: 700;
}

@media (max-width: 768px) {
    .lightbox__nav {
        width: 38px;
        height: 38px;
    }

    .lightbox__nav--prev {
        left: 8px;
    }

    .lightbox__nav--next {
        right: 8px;
    }

    .lightbox__content img {
        max-width: 100%;
        max-height: 75vh;
    }

    .lightbox--article .lightbox__content img {
        max-height: 35vh;
    }

    .lightbox__description {
        padding: 20px 18px 28px;
        font-size: .92rem;
    }

    .lightbox__article {
        max-height: 88vh;
    }
}


/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    background: var(--white)
}

.form-wrap {
    position: relative;
    border-radius: var(--r-lg);
    background: var(--off);
    border: 1px solid var(--gray-1);
    overflow: hidden;
    max-width: 640px;
    margin: 0 auto;
}

/* Lock */
.form-lock {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(246, 247, 249, .97);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    text-align: center;
    transition: opacity .5s var(--ease), visibility .5s;
}

.form-lock.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.form-lock svg {
    color: var(--gray-3);
    margin-bottom: 10px
}

.form-lock p {
    font-size: .88rem;
    color: var(--gray-4);
    max-width: 260px;
    margin-bottom: 14px;
    line-height: 1.7
}

.form-lock__bar-wrap {
    width: 160px;
    height: 5px;
    background: var(--gray-1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px
}

.form-lock__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 3px;
    transition: width .5s var(--ease)
}

.form-lock small {
    font-size: .7rem;
    color: var(--gray-3);
    font-weight: 600
}

/* Inner */
.form-inner {
    padding: 36px 24px;
    text-align: center
}

.form-section__desc {
    font-size: .88rem;
    color: var(--gray-4);
    margin-bottom: 24px;
    line-height: 1.8
}

.lead-form {
    text-align: right;
    max-width: 520px;
    margin: 0 auto
}

.lead-form__row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px
}

.lead-form__field label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.lead-form__field input,
.lead-form__field select {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--ff);
    font-size: .88rem;
    color: var(--gray-5);
    background: var(--white);
    border: 1.5px solid var(--gray-2);
    border-radius: var(--r);
    outline: none;
    transition: all .25s var(--ease);
    cursor: pointer;
}

.lead-form__field input::placeholder {
    color: var(--gray-3)
}

.lead-form__field input:focus,
.lead-form__field select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(77, 182, 172, .08)
}

.lead-form__field input.error,
.lead-form__field select.error {
    border-color: var(--red)
}

.field-error {
    display: block;
    font-size: .72rem;
    color: var(--red);
    min-height: 1em;
    margin-top: 2px
}

/* Success */
.form-success {
    text-align: center;
    padding: 20px 0
}

.form-success svg {
    color: var(--green);
    margin-bottom: 12px
}

.form-success h3 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px
}

.form-success p {
    font-size: .88rem;
    color: var(--gray-4);
    line-height: 1.8
}


/* ========================================
   CLOSING
   ======================================== */
.closing {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(160deg, var(--navy-d), var(--navy));
    color: var(--white);
}

.closing__quote {
    font-size: 1rem;
    line-height: 2.4;
    font-weight: 500;
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .75);
    font-style: normal;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 32px 0 16px;
    background: var(--navy-d);
    color: var(--white)
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.footer__brand {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2px
}

.footer__tagline {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4)
}

.footer__social {
    display: flex;
    gap: 10px
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    transition: all .3s var(--ease);
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--navy-d);
    border-color: var(--gold)
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 14px;
    text-align: center
}

.footer__bottom p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .25)
}


/* ========================================
   FLOATING PROGRESS BAR
   ======================================== */
.progress-float {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.progress-float.show {
    opacity: 1;
    pointer-events: auto
}

.progress-float__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(13, 21, 32, .35);
    border: 1px solid rgba(255, 255, 255, .08);
}

.progress-float__eye {
    width: 48px;
    height: 24px;
    flex-shrink: 0
}

.progress-float__text {
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1px
}

.progress-float__text span {
    color: var(--gold);
    font-size: .95rem
}

.progress-float__text small {
    color: var(--gray-3)
}

.progress-float__bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden
}

.progress-float__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 3px;
    transition: width .5s var(--ease)
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media(min-width:640px) {
    .hero__title {
        font-size: 2.8rem
    }

    .lead-form__row {
        grid-template-columns: 1fr 1fr
    }

    .about__features {
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(min-width:768px) {
    .section {
        padding: 88px 0
    }

    .section__title {
        font-size: 1.7rem
    }

    .hero__title {
        font-size: 3rem
    }

    .hero__desc {
        font-size: 1rem
    }

    .hero__bg-slide {
        background-size: contain;
    }

    .hero__inner {
        padding: 0 20px
    }

    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 60px
    }

    .stats__num {
        font-size: 2rem
    }

    .timeline {
        padding-right: 36px
    }

    .timeline__line {
        right: 15px
    }

    .timeline__dot {
        right: -36px;
        width: 28px;
        height: 28px;
        font-size: .65rem
    }

    .cta__title {
        font-size: 1.7rem
    }

    .form-inner {
        padding: 44px 36px
    }
}

@media(min-width:1024px) {
    .container {
        max-width: 1280px
    }

    .hero__title {
        font-size: 3.8rem
    }

    .section {
        padding: 100px 0
    }
}

@media(min-width:1440px) {
    .container {
        max-width: 1360px
    }
}


/* ========================================
   KNOWLEDGE + FACEBOOK TWO-COLUMN LAYOUT
   ======================================== */
.knowledge-fb {
    background: var(--off);
    padding: 100px 0;
}

/* ========================================
   IDEA SECTION — distinct dark background
   ======================================== */
.idea {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.idea::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(78, 193, 207, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.idea .section__label {
    color: var(--teal-l);
}

.idea .section__title {
    color: #fff;
}

.idea__box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.idea__quote {
    font-size: 1.25rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    border: none;
    padding: 32px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    border-right: 4px solid var(--gold);
    margin-top: 24px;
    font-style: normal;
}

/* Engagement Banner */
.fb-engage-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1877F2 0%, #0d47a1 100%);
    color: #fff;
    padding: 20px 28px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.fb-engage-banner__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-engage-banner__icon svg {
    fill: #fff;
}

.fb-engage-banner__text strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.fb-engage-banner__text p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Two-Column Grid */
.knowledge-fb__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    direction: rtl;
}

.knowledge-fb__timeline {
    order: 1;
}

.knowledge-fb__social {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Facebook Login Card */
.fb-login-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.fb-login-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}

.fb-login-card>p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.5;
}

.fb-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #1877F2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}

.fb-login-btn:hover {
    background: #166fe5;
    transform: translateY(-1px);
}

.fb-login-btn:active {
    transform: translateY(0);
}

.fb-login-btn svg {
    fill: #fff;
}

/* Mini Form */
.fb-mini-form {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.fb-mini-form__msg {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 12px;
}

.fb-mini-form__msg span {
    color: #1877F2;
}

.fb-mini-form__field {
    margin-bottom: 10px;
}

.fb-mini-form__field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.fb-mini-form__field input:focus {
    outline: none;
    border-color: #1877F2;
}

/* Login Success */
.fb-login-success {
    text-align: center;
    padding: 20px 0 0;
}

.fb-login-success svg {
    color: #4caf50;
    margin-bottom: 8px;
}

.fb-login-success h4 {
    font-size: 1rem;
    color: var(--navy);
    margin: 0 0 4px;
}

.fb-login-success p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Facebook Feed Card */
.fb-feed-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fb-feed-card__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.fb-feed-card__content {
    min-height: 200px;
    direction: ltr;
    flex: 1;
}

/* Placeholder when no FB page is set */
.fb-feed-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.fb-feed-placeholder p {
    font-size: 0.9rem;
    margin: 12px 0 4px;
    color: #666;
}

.fb-feed-placeholder small {
    font-size: 0.78rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .knowledge-fb__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .knowledge-fb__timeline {
        order: 1;
    }

    .knowledge-fb__social {
        order: 2;
        position: static;
    }
}

@media (max-width: 560px) {
    .fb-engage-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .fb-login-card {
        padding: 16px;
    }
}

/* Facebook Feed Fallback (localhost) */
.fb-feed-fallback {
    text-align: center;
    padding: 32px 16px;
}

.fb-feed-fallback__avatar {
    width: 72px;
    height: 72px;
    background: #e7f1fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.fb-feed-fallback h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}

.fb-feed-fallback p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 20px;
    line-height: 1.5;
}

.fb-feed-fallback__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1877F2;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.fb-feed-fallback__btn:hover {
    background: #166fe5;
    transform: translateY(-1px);
}

.fb-feed-fallback__btn svg {
    fill: #fff;
}

.fb-feed-fallback__note {
    display: block;
    margin-top: 16px;
    font-size: 0.75rem;
    color: #999;
}