/* =========================================
   SABRANG FILM AWARDS — CINEMATIC HERO
========================================= */

.sfa-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 190px 6% 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background: #030303;
}

/* Existing online image path — unchanged */

.sfa-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -6;

    background-image:
        url("../images/sabrangfilmawards2025m.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform: scale(1.03);
    animation: sfaHeroZoom 8s ease-in-out infinite alternate;
}

/* Dark cinematic overlay */

.sfa-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -5;

    background:
        linear-gradient(
            90deg,
            rgba(2, 2, 3, 0.34) 0%,
            rgba(2, 2, 3, 0.27) 35%,
            rgba(2, 2, 3, 0.18) 65%,
            rgba(2, 2, 3, 0.22) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.08) 42%,
            rgba(0, 0, 0, 0.88) 100%
        );
}

/* Edge shadow */

.sfa-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;

    box-shadow:
        inset 0 0 170px 35px rgba(0, 0, 0, 0.92);
}

/* Subtle texture */

.sfa-hero-grain {
    position: absolute;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 0.12;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.025) 0,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 4px
        );
}

/* Spotlights */

.sfa-spotlight {
    position: absolute;
    top: -280px;
    z-index: -2;
    width: 330px;
    height: 950px;
    opacity: 0.16;
    filter: blur(22px);
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 231, 164, 0.7),
        rgba(212, 175, 55, 0.12) 50%,
        transparent 85%
    );
}

.sfa-spotlight-left {
    left: 7%;
    transform: rotate(-25deg);
    animation: sfaLightLeft 8s ease-in-out infinite alternate;
}

.sfa-spotlight-right {
    right: 7%;
    transform: rotate(25deg);
    animation: sfaLightRight 8s ease-in-out infinite alternate;
}

/* Decorative lines */

.sfa-gold-line {
    position: absolute;
    top: 50%;
    width: 13%;
    height: 1px;
    opacity: 0.45;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37
    );
}

.sfa-line-left {
    left: 0;
}

.sfa-line-right {
    right: 0;
    transform: rotate(180deg);
}

/* Main container */

.sfa-hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.sfa-hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

/* Edition badge */

.sfa-edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    padding: 8px 20px 8px 10px;

    border: 1px solid rgba(224, 188, 77, 0.38);
    border-radius: 60px;

    background: rgba(7, 7, 7, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.32),
        inset 0 0 18px rgba(212, 175, 55, 0.06);

    animation: sfaFadeUp 0.8s ease both;
}

.sfa-badge-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border-radius: 50%;
    color: #171003;
    font-size: 21px;
    font-weight: 900;

    background: linear-gradient(
        135deg,
        #8e6413,
        #e9c75b 48%,
        #fff1a4
    );

    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

.sfa-badge-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1.3px;
    text-align: left;
    text-transform: uppercase;
}

.sfa-badge-text strong {
    display: block;
    color: #f1d578;
    font-size: 11px;
    font-weight: 700;
}

/* Eyebrow */

.sfa-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 16px;

    color: #e5c45f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;

    animation: sfaFadeUp 0.8s 0.12s ease both;
}

.sfa-hero-eyebrow span {
    width: 45px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37
    );
}

.sfa-hero-eyebrow span:last-child {
    transform: rotate(180deg);
}

/* Main heading */

.sfa-hero-title {
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.65);
}

.sfa-title-small {
    display: block;
    margin-bottom: 2px;

    color: #e4c35b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.5vw, 35px);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 3px;

    animation: sfaFadeUp 0.8s 0.2s ease both;
}

.sfa-title-small sup {
    font-size: 0.48em;
}

.sfa-title-main {
    display: block;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6.2vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: clamp(1px, 0.22vw, 4px);

    background: linear-gradient(
        180deg,
        #ffffff 5%,
        #f8f1d8 42%,
        #d5b657 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: sfaFadeUp 0.9s 0.28s ease both;
}

.sfa-title-year {
    display: block;
    margin-top: 8px;

    color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(32px, 4.6vw, 62px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: clamp(10px, 2vw, 28px);
    transform: translateX(8px);

    -webkit-text-stroke: 1px rgba(236, 205, 111, 0.92);

    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.16));
    animation: sfaFadeUp 0.9s 0.36s ease both;
}

/* Description */

.sfa-hero-description {
    max-width: 760px;
    margin: 24px auto 28px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;

    animation: sfaFadeUp 0.9s 0.44s ease both;
}

/* Event information */

.sfa-event-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 15px 25px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;

    background: rgba(4, 4, 5, 0.52);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);

    animation: sfaFadeUp 0.9s 0.52s ease both;
}

.sfa-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.sfa-info-icon {
    color: #e4c35b;
    font-size: 17px;
}

.sfa-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sfa-info-text small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sfa-info-text strong {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.sfa-info-divider {
    width: 1px;
    height: 33px;
    background: rgba(212, 175, 55, 0.25);
}

/* Buttons */

.sfa-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;

    animation: sfaFadeUp 0.9s 0.6s ease both;
}

.sfa-btn {
    min-height: 54px;
    padding: 0 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sfa-btn-gold {
    color: #160f02;

    background: linear-gradient(
        135deg,
        #9b6d12,
        #e2be4c 48%,
        #fff0a0
    );

    box-shadow: 0 14px 35px rgba(212, 175, 55, 0.25);
}

.sfa-btn-gold:hover {
    color: #110c02;
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.4);
}

.sfa-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
}

.sfa-btn-outline i {
    color: #e5c45f;
    font-size: 11px;
}

.sfa-btn-outline:hover {
    color: #fff;
    transform: translateY(-4px);
    border-color: rgba(229, 196, 95, 0.7);
    background: rgba(212, 175, 55, 0.12);
}

/* Nomination note */

.sfa-nomination-note {
    margin: 19px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    letter-spacing: 0.8px;

    animation: sfaFadeUp 0.9s 0.68s ease both;
}

.sfa-nomination-note i {
    margin-right: 7px;
    color: #e2be4c;
    font-size: 9px;
}

/* Scroll indicator */

.sfa-scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 8;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transform: translateX(-50%);
}

.sfa-scroll-down small {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sfa-scroll-mouse {
    position: relative;
    width: 22px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
}

.sfa-scroll-mouse span {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;

    border-radius: 5px;
    background: #e2be4c;
    transform: translateX(-50%);

    animation: sfaScroll 1.8s ease infinite;
}

/* Animations */

@keyframes sfaHeroZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes sfaFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sfaScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

@keyframes sfaLightLeft {
    from {
        transform: rotate(-28deg) translateX(-15px);
    }

    to {
        transform: rotate(-20deg) translateX(25px);
    }
}

@keyframes sfaLightRight {
    from {
        transform: rotate(28deg) translateX(15px);
    }

    to {
        transform: rotate(20deg) translateX(-25px);
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .sfa-hero {
        min-height: 100vh;
        padding: 165px 5% 105px;
    }

    .sfa-hero-content {
        max-width: 780px;
    }

    .sfa-gold-line {
        display: none;
    }

    .sfa-event-info {
        gap: 17px;
        padding: 14px 18px;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .sfa-hero {
        min-height: 100svh;
        padding: 140px 20px 95px;
    }

    .sfa-hero-bg {
        background-position: center top;
    }

    .sfa-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.48) 25%,
                rgba(0, 0, 0, 0.86) 67%,
                #030303 100%
            );
    }

    .sfa-hero-vignette {
        box-shadow:
            inset 0 0 80px 15px rgba(0, 0, 0, 0.74);
    }

    .sfa-spotlight {
        display: none;
    }

    .sfa-edition-badge {
        margin-bottom: 17px;
    }

    .sfa-badge-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .sfa-hero-eyebrow {
        gap: 8px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    .sfa-hero-eyebrow span {
        width: 22px;
    }

    .sfa-title-main {
        font-size: clamp(37px, 11vw, 55px);
        line-height: 1.03;
    }

    .sfa-title-year {
        margin-top: 10px;
        font-size: 34px;
        letter-spacing: 13px;
        transform: translateX(6px);
    }

    .sfa-hero-description {
        margin: 19px auto 23px;
        font-size: 14px;
        line-height: 1.65;
    }

    .sfa-event-info {
        width: 100%;
        margin-bottom: 25px;
        padding: 14px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 10px;
    }

    .sfa-event-info .sfa-info-item:last-of-type {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .sfa-info-divider {
        display: none;
    }

    .sfa-info-text strong {
        font-size: 10px;
        white-space: normal;
    }

    .sfa-info-text small {
        font-size: 8px;
    }

    .sfa-btn {
        width: 100%;
        max-width: 330px;
        min-height: 52px;
        padding: 0 20px;
        font-size: 11px;
    }

    .sfa-scroll-down {
        bottom: 17px;
    }

    .sfa-scroll-down small {
        display: none;
    }
}

/* Small phones */

@media (max-width: 420px) {

    .sfa-hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .sfa-title-main {
        font-size: 36px;
    }

    .sfa-title-year {
        font-size: 29px;
        letter-spacing: 10px;
    }

    .sfa-hero-description {
        font-size: 13px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .sfa-hero-bg,
    .sfa-edition-badge,
    .sfa-hero-eyebrow,
    .sfa-title-small,
    .sfa-title-main,
    .sfa-title-year,
    .sfa-hero-description,
    .sfa-event-info,
    .sfa-hero-buttons,
    .sfa-nomination-note,
    .sfa-scroll-mouse span,
    .sfa-spotlight {
        animation: none !important;
    }
}

/* =========================================
   ABOUT SABRANG FILM AWARDS
========================================= */

.sfa-about {
    position: relative;
    padding: 130px 6%;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #0b0905 48%,
            #050505 100%
        );
}

.sfa-about::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.32;

    background-image:
        linear-gradient(
            rgba(212, 175, 55, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}

.sfa-about::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 75%;
    height: 1px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.45),
        transparent
    );
}

/* Background glows */

.sfa-about-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.sfa-about-glow-one {
    top: -160px;
    left: -170px;
    width: 420px;
    height: 420px;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.13),
        transparent 68%
    );
}

.sfa-about-glow-two {
    right: -210px;
    bottom: -180px;
    width: 500px;
    height: 500px;

    background: radial-gradient(
        circle,
        rgba(143, 23, 23, 0.17),
        transparent 70%
    );
}

/* Main layout */

.sfa-about-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(65px, 7vw, 110px);
}

/* =========================================
   IMAGE SIDE
========================================= */

.sfa-about-visual {
    position: relative;
    max-width: 560px;
    padding: 27px 0 40px 30px;
}

.sfa-about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    height: 62%;
    z-index: -1;

    opacity: 0.5;

    background-image:
        radial-gradient(
            rgba(220, 187, 86, 0.6) 1px,
            transparent 1px
        );

    background-size: 13px 13px;
}

.sfa-about-image-frame {
    position: relative;
    height: 625px;
    padding: 9px;
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.035);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.55),
        0 0 0 8px rgba(255, 255, 255, 0.018);
}

.sfa-about-image-frame::before,
.sfa-about-image-frame::after {
    content: "";
    position: absolute;
    z-index: 4;
    width: 75px;
    height: 75px;
    pointer-events: none;
}

.sfa-about-image-frame::before {
    top: 0;
    left: 0;

    border-top: 3px solid #e7c65d;
    border-left: 3px solid #e7c65d;
}

.sfa-about-image-frame::after {
    right: 0;
    bottom: 0;

    border-right: 3px solid #e7c65d;
    border-bottom: 3px solid #e7c65d;
}

.sfa-about-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.94) contrast(1.05);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.sfa-about-image-frame:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.sfa-about-image-overlay {
    position: absolute;
    inset: 9px;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 47%,
            rgba(0, 0, 0, 0.88) 100%
        );
}

/* Caption over image */

.sfa-about-image-caption {
    position: absolute;
    left: 33px;
    bottom: 31px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 13px;
}

.sfa-about-image-caption > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;

    border: 1px solid rgba(229, 196, 95, 0.55);
    border-radius: 50%;

    color: #e6c85f;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(9px);
}

.sfa-about-image-caption div {
    display: flex;
    flex-direction: column;
}

.sfa-about-image-caption small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.sfa-about-image-caption strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.15;
}

/* Edition card */

.sfa-about-edition-card {
    position: absolute;
    right: -39px;
    top: 76px;
    z-index: 5;

    width: 145px;
    height: 145px;
    padding: 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 231, 145, 0.55);
    border-radius: 50%;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #8f640f,
            #d7b03b 48%,
            #f5df85
        );

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.48),
        0 0 30px rgba(212, 175, 55, 0.22);

    animation: sfaEditionFloat 4.5s ease-in-out infinite;
}

.sfa-about-edition-card::before {
    content: "";
    position: absolute;
    inset: 7px;

    border: 1px solid rgba(45, 30, 2, 0.28);
    border-radius: 50%;
}

.sfa-about-edition-card strong {
    position: relative;
    color: #1d1403;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 0.9;
}

.sfa-about-edition-card strong sup {
    font-size: 0.35em;
}

.sfa-about-edition-card span {
    position: relative;
    margin-top: 9px;

    color: rgba(29, 20, 3, 0.86);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Legacy caption */

.sfa-about-legacy {
    position: absolute;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.sfa-legacy-line {
    width: 45px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37
    );
}

/* =========================================
   CONTENT SIDE
========================================= */

.sfa-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;

    color: #dcbc54;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sfa-section-label span {
    width: 40px;
    height: 1px;

    background: linear-gradient(
        90deg,
        #d4af37,
        transparent
    );
}

.sfa-about-content h2 {
    max-width: 680px;
    margin: 0 0 25px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 4.4vw, 65px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.6px;
}

.sfa-about-content h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #a87816,
        #f0d36f,
        #c69527
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-about-lead {
    position: relative;
    margin: 0 0 20px;
    padding-left: 19px;

    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.85;
}

.sfa-about-lead::before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 0;
    width: 2px;

    background: linear-gradient(
        180deg,
        #f2d477,
        #9b6c11
    );
}

.sfa-about-text {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 14px;
    line-height: 1.85;
}

/* Feature grid */

.sfa-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 31px;
}

.sfa-about-feature {
    position: relative;
    min-height: 125px;
    padding: 19px;

    display: flex;
    align-items: flex-start;
    gap: 13px;

    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.sfa-about-feature::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.12),
        transparent 68%
    );

    transition: transform 0.45s ease;
}

.sfa-about-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.35);

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.sfa-about-feature:hover::after {
    transform: scale(1.7);
}

.sfa-feature-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 4px;

    color: #dfbe55;
    font-size: 15px;

    background: rgba(212, 175, 55, 0.075);
}

.sfa-about-feature h3 {
    margin: 1px 0 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.sfa-about-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.65;
}

/* Bottom action */

.sfa-about-action {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
}

.sfa-about-btn {
    min-height: 53px;
    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border-radius: 4px;

    color: #1c1302;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        #987019,
        #dfbc4d,
        #f6df85
    );

    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.16);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.sfa-about-btn:hover {
    color: #160f02;
    transform: translateY(-4px);
    box-shadow: 0 21px 40px rgba(212, 175, 55, 0.3);
}

.sfa-about-signature {
    display: flex;
    align-items: center;
    gap: 11px;
}

.sfa-signature-icon {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;

    color: #d9b84c;
    background: rgba(212, 175, 55, 0.06);
}

.sfa-about-signature p {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.sfa-about-signature small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-about-signature strong {
    color: rgba(255, 255, 255, 0.85);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 500;
}

/* Floating animation */

@keyframes sfaEditionFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .sfa-about {
        padding: 105px 5%;
    }

    .sfa-about-container {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        gap: 55px;
    }

    .sfa-about-image-frame {
        height: 555px;
    }

    .sfa-about-edition-card {
        right: -24px;
        width: 125px;
        height: 125px;
    }

    .sfa-about-edition-card strong {
        font-size: 35px;
    }

    .sfa-about-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .sfa-about-container {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .sfa-about-visual {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .sfa-about-image-frame {
        height: 650px;
    }

    .sfa-about-content {
        max-width: 680px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .sfa-about {
        padding: 85px 20px;
    }

    .sfa-about-container {
        gap: 52px;
    }

    .sfa-about-visual {
        padding: 18px 12px 30px 15px;
    }

    .sfa-about-image-frame {
        height: 465px;
        padding: 6px;
    }

    .sfa-about-image-overlay {
        inset: 6px;
    }

    .sfa-about-edition-card {
        top: 48px;
        right: -3px;
        width: 105px;
        height: 105px;
        padding: 12px;
    }

    .sfa-about-edition-card strong {
        font-size: 30px;
    }

    .sfa-about-edition-card span {
        margin-top: 6px;
        font-size: 7px;
    }

    .sfa-about-image-caption {
        left: 24px;
        bottom: 24px;
    }

    .sfa-about-legacy {
        display: none;
    }

    .sfa-about-content h2 {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .sfa-about-lead {
        font-size: 15px;
        line-height: 1.75;
    }

    .sfa-about-text {
        font-size: 13px;
    }

    .sfa-about-features {
        grid-template-columns: 1fr;
    }

    .sfa-about-feature {
        min-height: auto;
    }

    .sfa-about-action {
        width: 100%;
    }

    .sfa-about-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sfa-about-edition-card {
        animation: none;
    }
}

/* =========================================
   SABRANG FILM AWARDS — CATEGORIES
========================================= */

.sfa-categories {
    position: relative;
    padding: 125px 6%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(137, 29, 29, 0.16),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #080808,
            #11100c 55%,
            #070707
        );
}

.sfa-categories::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;

    background-image:
        repeating-linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.07) 0,
            rgba(212, 175, 55, 0.07) 1px,
            transparent 1px,
            transparent 26px
        );
}

.sfa-categories-glow {
    position: absolute;
    top: 300px;
    left: 50%;
    width: 750px;
    height: 350px;
    border-radius: 50%;
    pointer-events: none;
    transform: translateX(-50%);
    filter: blur(35px);

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1),
        transparent 70%
    );
}

.sfa-categories-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

/* Heading */

.sfa-section-heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.sfa-label-center {
    justify-content: center;
}

.sfa-label-center span:last-child {
    transform: rotate(180deg);
}

.sfa-section-heading h2 {
    margin: 0 0 19px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 67px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.sfa-section-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #a5781b,
        #f0d26d,
        #a5781b
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-section-heading > p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.57);
    font-size: 14px;
    line-height: 1.8;
}

/* Tabs */

.sfa-category-tabs {
    max-width: 970px;
    margin: 0 auto 34px;
    padding: 7px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;

    background: rgba(255, 255, 255, 0.025);
}

.sfa-category-tab {
    position: relative;
    min-height: 78px;
    padding: 13px 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border: 1px solid transparent;
    border-radius: 6px;

    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-align: left;

    transition: 0.35s ease;
}

.sfa-category-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

.sfa-category-tab.active {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.32);

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.17),
            rgba(212, 175, 55, 0.045)
        );

    box-shadow:
        inset 0 0 25px rgba(212, 175, 55, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.22);
}

.sfa-category-tab small {
    display: block;
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.35);
    font-size: 8px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sfa-category-tab.active small {
    color: #d5b44a;
}

.sfa-tab-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;

    color: #d9b94f;
    background: rgba(212, 175, 55, 0.06);
}

/* Panels */

.sfa-category-panel {
    padding: clamp(25px, 4vw, 48px);

    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.014)
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.34),
        inset 0 0 45px rgba(212, 175, 55, 0.018);

    animation: sfaPanelShow 0.5s ease both;
}

.sfa-category-panel[hidden] {
    display: none;
}

.sfa-panel-header {
    margin-bottom: 31px;
    padding-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sfa-panel-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sfa-panel-title > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;

    color: #e0bf57;
    font-size: 18px;

    background: rgba(212, 175, 55, 0.07);
}

.sfa-panel-title small {
    color: #c9a53e;
    font-size: 8px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.sfa-panel-title h3 {
    margin: 4px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
}

.sfa-award-count {
    padding: 8px 14px;

    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;

    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    background: rgba(0, 0, 0, 0.18);
}

/* Cards */

.sfa-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sfa-award-card {
    position: relative;
    min-height: 152px;
    padding: 25px 20px 21px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 6px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(0, 0, 0, 0.08)
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-award-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -48px;

    width: 105px;
    height: 105px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.13),
        transparent 68%
    );

    transition: transform 0.4s ease;
}

.sfa-award-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.09),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.26);
}

.sfa-award-card:hover::after {
    transform: scale(1.7);
}

.sfa-award-card > i {
    margin-bottom: 19px;
    color: #d9b64a;
    font-size: 20px;
}

.sfa-award-card h4 {
    position: relative;
    z-index: 2;

    margin: 0 0 6px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.sfa-award-card p {
    position: relative;
    z-index: 2;

    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sfa-award-number {
    position: absolute;
    top: 16px;
    right: 17px;

    color: rgba(212, 175, 55, 0.28);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-style: italic;
}

.sfa-honours-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sfa-special-card {
    min-height: 185px;
    text-align: center;
}

.sfa-special-card > i {
    margin-top: 7px;
    font-size: 29px;
}

/* Footer */

.sfa-categories-footer {
    margin-top: 28px;
    padding: 19px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border-left: 2px solid #d4af37;
    border-radius: 3px;

    background: rgba(255, 255, 255, 0.028);
}

.sfa-categories-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.6;
}

.sfa-categories-footer p i {
    margin-right: 8px;
    color: #d9b84d;
}

.sfa-categories-footer a {
    flex-shrink: 0;
    color: #dfbf58;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.sfa-categories-footer a i {
    margin-left: 7px;
    transition: transform 0.3s ease;
}

.sfa-categories-footer a:hover i {
    transform: translateX(5px);
}

@keyframes sfaPanelShow {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 991px) {

    .sfa-categories {
        padding: 105px 5%;
    }

    .sfa-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sfa-honours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .sfa-categories {
        padding: 85px 20px;
    }

    .sfa-category-tabs {
        grid-template-columns: 1fr;
    }

    .sfa-category-tab {
        min-height: 63px;
        justify-content: flex-start;
    }

    .sfa-category-panel {
        padding: 22px 15px;
    }

    .sfa-panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .sfa-awards-grid,
    .sfa-honours-grid {
        grid-template-columns: 1fr;
    }

    .sfa-award-card {
        min-height: 135px;
    }

    .sfa-categories-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================
   JURY & SPECIAL GUESTS
========================================= */

.sfa-celebrities {
    position: relative;
    padding: 125px 6%;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #0b0807 50%,
            #050505 100%
        );
}

.sfa-celebrities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 78%;
    height: 1px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.45),
        transparent
    );
}

.sfa-celebrities::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;

    background-image:
        radial-gradient(
            rgba(212, 175, 55, 0.22) 0.7px,
            transparent 0.7px
        );

    background-size: 22px 22px;
}

/* Background lights */

.sfa-celebrities-light {
    position: absolute;
    top: -250px;
    width: 330px;
    height: 900px;
    opacity: 0.1;
    filter: blur(24px);
    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(255, 231, 153, 0.8),
        transparent 78%
    );
}

.sfa-celebrity-light-left {
    left: 3%;
    transform: rotate(-28deg);
}

.sfa-celebrity-light-right {
    right: 3%;
    transform: rotate(28deg);
}

.sfa-celebrities-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

/* Celebrity grid */

.sfa-celebrity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* Card */

.sfa-celebrity-card {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;

    background: #0b0a08;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.42);

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.sfa-celebrity-card:nth-child(even) {
    margin-top: 38px;
}

.sfa-celebrity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 198, 93, 0.58);

    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.56),
        0 0 32px rgba(212, 175, 55, 0.1);
}

/* Image */

.sfa-celebrity-image {
    position: relative;
    height: 440px;
    overflow: hidden;
}

.sfa-celebrity-image::before,
.sfa-celebrity-image::after {
    content: "";
    position: absolute;
    z-index: 4;

    width: 50px;
    height: 50px;
    pointer-events: none;
}

.sfa-celebrity-image::before {
    top: 10px;
    left: 10px;

    border-top: 1px solid rgba(238, 207, 110, 0.8);
    border-left: 1px solid rgba(238, 207, 110, 0.8);
}

.sfa-celebrity-image::after {
    right: 10px;
    bottom: 10px;

    border-right: 1px solid rgba(238, 207, 110, 0.8);
    border-bottom: 1px solid rgba(238, 207, 110, 0.8);
}

.sfa-celebrity-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center top;

    filter:
        saturate(0.88)
        contrast(1.04);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.sfa-celebrity-card:hover .sfa-celebrity-image img {
    transform: scale(1.065);

    filter:
        saturate(1.04)
        contrast(1.04);
}

.sfa-celebrity-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 40%,
            rgba(0, 0, 0, 0.38) 72%,
            #0b0a08 100%
        );
}

/* Role badge */

.sfa-celebrity-role {
    position: absolute;
    top: 22px;
    right: 20px;
    z-index: 5;

    padding: 7px 12px;

    border: 1px solid rgba(255, 231, 155, 0.38);
    border-radius: 30px;

    color: #f1d77c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(10px);
}

/* Card content */

.sfa-celebrity-content {
    position: relative;
    min-height: 145px;
    padding: 24px 22px 25px;

    display: flex;
    align-items: center;
    gap: 13px;
}

.sfa-celebrity-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;

    width: 58px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #e6c65e,
        transparent
    );
}

.sfa-celebrity-number {
    position: absolute;
    top: 16px;
    right: 17px;

    color: rgba(212, 175, 55, 0.22);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-style: italic;
}

.sfa-celebrity-name {
    position: relative;
    z-index: 2;
    flex: 1;
}

.sfa-celebrity-name small {
    display: block;
    margin-bottom: 6px;

    color: #cba63d;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sfa-celebrity-name h3 {
    margin: 0 0 7px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
}

.sfa-celebrity-name p {
    margin: 0;
    padding-right: 6px;

    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.55;
}

.sfa-celebrity-star {
    position: relative;
    z-index: 2;

    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 50%;

    color: #d7b54b;
    font-size: 9px;

    background: rgba(212, 175, 55, 0.05);
}

/* Bottom note */

.sfa-celebrity-note {
    max-width: 950px;
    margin: 55px auto 0;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    gap: 17px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.08),
            rgba(255, 255, 255, 0.025),
            rgba(212, 175, 55, 0.05)
        );
}

.sfa-celebrity-note-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;

    color: #dfbd53;
    background: rgba(212, 175, 55, 0.06);
}

.sfa-celebrity-note p {
    flex: 1;
    margin: 0;

    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.6;
}

.sfa-celebrity-note p small {
    display: block;
    margin-bottom: 3px;

    color: #d7b64d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.sfa-celebrity-note a {
    flex-shrink: 0;

    color: #e0be57;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.sfa-celebrity-note a i {
    margin-left: 7px;
    transition: transform 0.3s ease;
}

.sfa-celebrity-note a:hover i {
    transform: translateX(5px);
}

/* =========================================
   LAPTOP RESPONSIVE
========================================= */

@media (max-width: 1150px) {

    .sfa-celebrity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .sfa-celebrity-card:nth-child(even) {
        margin-top: 0;
    }

    .sfa-celebrity-image {
        height: 520px;
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .sfa-celebrities {
        padding: 85px 20px;
    }

    .sfa-celebrity-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sfa-celebrity-card {
        max-width: 460px;
        width: 100%;
        margin: 0 auto;
    }

    .sfa-celebrity-image {
        height: 535px;
    }

    .sfa-celebrity-note {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .sfa-celebrity-note p {
        flex-basis: calc(100% - 65px);
    }

    .sfa-celebrity-note a {
        margin-left: 60px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .sfa-celebrity-image {
        height: 440px;
    }

    .sfa-celebrity-content {
        min-height: 130px;
        padding: 22px 18px;
    }

    .sfa-celebrity-name h3 {
        font-size: 19px;
    }

    .sfa-celebrity-note {
        padding: 18px;
    }

    .sfa-celebrity-note-icon {
        display: none;
    }

    .sfa-celebrity-note p {
        flex-basis: 100%;
    }

    .sfa-celebrity-note a {
        margin-left: 0;
    }
}
/* =========================================
   SABRANG FILM AWARDS — HALL OF FAME
========================================= */

.sfa-hall-of-fame {
    position: relative;
    padding: 130px 6%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(212, 175, 55, 0.1),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #070603 0%,
            #11100b 50%,
            #050505 100%
        );
}

.sfa-hall-of-fame::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;

    background-image:
        linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.04) 25%,
            transparent 25%,
            transparent 75%,
            rgba(212, 175, 55, 0.04) 75%
        );

    background-size: 42px 42px;
}

.sfa-hall-of-fame::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 78%;
    height: 1px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.45),
        transparent
    );
}

.sfa-fame-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.sfa-fame-glow-left {
    top: 20%;
    left: -270px;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1),
        transparent 70%
    );
}

.sfa-fame-glow-right {
    right: -270px;
    bottom: 10%;

    background: radial-gradient(
        circle,
        rgba(124, 19, 19, 0.16),
        transparent 70%
    );
}

.sfa-fame-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

/* Main layout */

.sfa-fame-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.35fr);
    gap: 24px;
}

/* =========================================
   FEATURED HONOUREE
========================================= */

.sfa-fame-featured {
    position: relative;
    min-height: 740px;
    overflow: hidden;

    border: 1px solid rgba(220, 186, 76, 0.4);
    border-radius: 5px;

    background: #080705;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(212, 175, 55, 0.07);
}

.sfa-fame-featured::before,
.sfa-fame-featured::after {
    content: "";
    position: absolute;
    z-index: 5;
    width: 75px;
    height: 75px;
    pointer-events: none;
}

.sfa-fame-featured::before {
    top: 13px;
    left: 13px;

    border-top: 2px solid #e2c054;
    border-left: 2px solid #e2c054;
}

.sfa-fame-featured::after {
    right: 13px;
    bottom: 13px;

    border-right: 2px solid #e2c054;
    border-bottom: 2px solid #e2c054;
}

.sfa-fame-featured-image {
    position: absolute;
    inset: 0;
}

.sfa-fame-featured-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center top;

    filter:
        saturate(0.88)
        contrast(1.04);

    transition:
        transform 0.9s ease,
        filter 0.9s ease;
}

.sfa-fame-featured:hover img {
    transform: scale(1.055);

    filter:
        saturate(1.04)
        contrast(1.04);
}

.sfa-fame-featured-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 25%,
            rgba(0, 0, 0, 0.25) 52%,
            rgba(4, 3, 2, 0.96) 100%
        );
}

.sfa-fame-featured-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    padding: 45px 42px 43px;
}

.sfa-fame-year {
    position: absolute;
    right: 28px;
    bottom: 38px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sfa-fame-year small {
    color: rgba(255, 255, 255, 0.38);
    font-size: 7px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sfa-fame-year strong {
    color: rgba(212, 175, 55, 0.24);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 1;
}

.sfa-fame-crown {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(229, 196, 88, 0.42);
    border-radius: 50%;

    color: #e2bf53;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
}

.sfa-fame-label {
    margin: 0 0 8px;
    color: #d7b447;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sfa-fame-featured-content h3 {
    max-width: 380px;
    margin: 0 0 9px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 37px;
    font-weight: 500;
    line-height: 1.1;
}

.sfa-fame-award {
    max-width: 320px;
    margin: 0;

    color: rgba(255, 255, 255, 0.63);
    font-size: 12px;
    line-height: 1.6;
}

.sfa-fame-honour-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.35);
    font-size: 7px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sfa-fame-honour-line span {
    width: 35px;
    height: 1px;
    background: #d4af37;
}

/* =========================================
   HALL OF FAME CARDS
========================================= */

.sfa-fame-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sfa-fame-card {
    position: relative;
    min-height: 355px;
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;

    background: #090806;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa-fame-card:hover {
    transform: translateY(-7px);
    border-color: rgba(226, 191, 83, 0.55);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.45),
        0 0 27px rgba(212, 175, 55, 0.08);
}

.sfa-fame-card-image {
    position: absolute;
    inset: 0;
}

.sfa-fame-card-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center top;

    filter:
        saturate(0.82)
        contrast(1.04);

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.sfa-fame-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.03);
}

.sfa-fame-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 0, 0, 0.27) 52%,
            rgba(5, 4, 2, 0.97) 100%
        );
}

.sfa-fame-card-year {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 7px 12px;

    border: 1px solid rgba(232, 202, 108, 0.35);
    border-radius: 30px;

    color: #ebce72;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;

    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(10px);
}

.sfa-fame-card-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    padding: 28px 22px 25px;

    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.sfa-fame-trophy {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;

    color: #deb94a;
    font-size: 12px;

    background: rgba(212, 175, 55, 0.08);
}

.sfa-fame-card-content h3 {
    margin: 0 0 6px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
}

.sfa-fame-card-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
    line-height: 1.55;
}

/* Legacy CTA card */

.sfa-fame-legacy-card {
    position: relative;
    min-height: 355px;
    padding: 35px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.18),
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #191406,
            #0a0906
        );
}

.sfa-fame-legacy-card::after {
    content: "SFA";
    position: absolute;
    right: -16px;
    bottom: -20px;

    color: rgba(212, 175, 55, 0.055);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 110px;
    font-weight: 700;
}

.sfa-legacy-crown {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;

    color: #e0bd51;
    background: rgba(212, 175, 55, 0.08);
}

.sfa-fame-legacy-card small {
    color: #cda941;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.sfa-fame-legacy-card h3 {
    position: relative;
    z-index: 2;
    margin: 9px 0 12px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
}

.sfa-fame-legacy-card h3 span {
    display: block;
    color: #dfbd55;
}

.sfa-fame-legacy-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    line-height: 1.7;
}

.sfa-fame-legacy-card a {
    position: relative;
    z-index: 2;

    color: #e2bf57;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.sfa-fame-legacy-card a i {
    margin-left: 7px;
    transition: transform 0.3s ease;
}

.sfa-fame-legacy-card a:hover i {
    transform: translateX(5px);
}

/* =========================================
   LEGACY TIMELINE
========================================= */

.sfa-fame-timeline {
    position: relative;
    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.sfa-fame-timeline-line {
    position: absolute;
    top: 8px;
    left: 7%;
    right: 7%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.6),
        transparent
    );
}

.sfa-fame-timeline-item {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sfa-fame-timeline-item > span {
    width: 17px;
    height: 17px;
    margin-bottom: 12px;

    border: 4px solid #090806;
    border-radius: 50%;

    background: #d9b545;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.sfa-fame-timeline-item strong {
    color: #e0bd53;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 500;
}

.sfa-fame-timeline-item small {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.4);
    font-size: 8px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1050px) {

    .sfa-fame-layout {
        grid-template-columns: 1fr;
    }

    .sfa-fame-featured {
        min-height: 700px;
    }
}

@media (max-width: 767px) {

    .sfa-hall-of-fame {
        padding: 85px 20px;
    }

    .sfa-fame-featured {
        min-height: 580px;
    }

    .sfa-fame-featured-content {
        padding: 35px 25px;
    }

    .sfa-fame-featured-content h3 {
        font-size: 30px;
    }

    .sfa-fame-year {
        right: 22px;
        bottom: 32px;
    }

    .sfa-fame-year strong {
        font-size: 40px;
    }

    .sfa-fame-grid {
        grid-template-columns: 1fr;
    }

    .sfa-fame-card,
    .sfa-fame-legacy-card {
        min-height: 440px;
    }

    .sfa-fame-timeline {
        margin: 55px auto 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .sfa-fame-timeline-line {
        display: none;
    }
}

@media (max-width: 480px) {

    .sfa-fame-featured {
        min-height: 520px;
    }

    .sfa-fame-featured-content {
        padding: 30px 21px;
    }

    .sfa-fame-honour-line {
        display: none;
    }

    .sfa-fame-year {
        position: static;
        align-items: flex-start;
        margin-bottom: 17px;
    }

    .sfa-fame-year strong {
        font-size: 32px;
    }

    .sfa-fame-crown {
        display: none;
    }

    .sfa-fame-card {
        min-height: 390px;
    }

    .sfa-fame-legacy-card {
        min-height: 330px;
    }
}
/* =========================================
   MEMORIES & HIGHLIGHTS GALLERY
========================================= */

.sfa-memories {
    position: relative;
    padding: 125px 6%;
    overflow: hidden;
    background: #050505;
}

.sfa-memories::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;

    background:
        linear-gradient(
            90deg,
            transparent 49.9%,
            rgba(212, 175, 55, 0.09) 50%,
            transparent 50.1%
        );
}

.sfa-memories::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 78%;
    height: 1px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.45),
        transparent
    );
}

.sfa-memories-glow {
    position: absolute;
    top: -280px;
    right: -190px;

    width: 620px;
    height: 620px;
    border-radius: 50%;
    pointer-events: none;

    background: radial-gradient(
        circle,
        rgba(139, 25, 25, 0.17),
        transparent 70%
    );
}

.sfa-memories-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

/* Header */

.sfa-memories-header {
    margin-bottom: 55px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    align-items: end;
    gap: 80px;
}

.sfa-memories-heading h2 {
    margin: 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -1.5px;
}

.sfa-memories-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #a87818,
        #efd16a,
        #a87818
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-memories-intro {
    padding-bottom: 7px;
}

.sfa-memories-intro p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.53);
    font-size: 13px;
    line-height: 1.8;
}

.sfa-memories-intro a {
    color: #dcbc54;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
}

.sfa-memories-intro a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.sfa-memories-intro a:hover i {
    transform: translateX(5px);
}

/* =========================================
   MASONRY GALLERY
========================================= */

.sfa-memory-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 305px 305px;
    gap: 14px;
}

.sfa-memory-item {
    position: relative;
    height: 100%;
    margin: 0;
    overflow: hidden;
    cursor: pointer;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 3px;

    background: #111;

    transition:
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-memory-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.sfa-memory-wide {
    grid-column: span 2;
}

.sfa-memory-last {
    display: none;
}

.sfa-memory-item:hover {
    z-index: 3;
    transform: translateY(-5px);
    border-color: rgba(224, 191, 84, 0.5);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(212, 175, 55, 0.07);
}

.sfa-memory-item::before,
.sfa-memory-item::after {
    content: "";
    position: absolute;
    z-index: 5;

    width: 35px;
    height: 35px;
    opacity: 0;

    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sfa-memory-item::before {
    top: 10px;
    left: 10px;

    border-top: 1px solid #e5c359;
    border-left: 1px solid #e5c359;
}

.sfa-memory-item::after {
    right: 10px;
    bottom: 10px;

    border-right: 1px solid #e5c359;
    border-bottom: 1px solid #e5c359;
}

.sfa-memory-item:hover::before,
.sfa-memory-item:hover::after {
    opacity: 1;
}

.sfa-memory-item img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.88)
        contrast(1.04);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.sfa-memory-item:hover img {
    transform: scale(1.065);

    filter:
        saturate(1.08)
        contrast(1.04);
}

.sfa-memory-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 30%,
            rgba(0, 0, 0, 0.22) 57%,
            rgba(0, 0, 0, 0.9) 100%
        );

    transition: background 0.4s ease;
}

.sfa-memory-item:hover .sfa-memory-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 0, 0, 0.14) 55%,
            rgba(0, 0, 0, 0.94) 100%
        );
}

/* Captions */

.sfa-memory-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;

    padding: 23px;
}

.sfa-memory-featured figcaption {
    padding: 39px;
}

.sfa-memory-category {
    display: inline-block;
    margin-bottom: 8px;

    color: #e1bf56;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.sfa-memory-item h3 {
    margin: 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.sfa-memory-featured h3 {
    font-size: 31px;
}

.sfa-memory-item figcaption p {
    max-width: 480px;
    margin: 9px 0 0;

    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    line-height: 1.65;
}

/* View button */

.sfa-gallery-view {
    position: absolute;
    top: 19px;
    right: 19px;
    z-index: 6;

    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 50%;

    color: #fff;
    font-size: 11px;
    cursor: pointer;

    opacity: 0;
    transform: scale(0.75);

    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(10px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
}

.sfa-memory-item:hover .sfa-gallery-view {
    opacity: 1;
    transform: scale(1);
}

.sfa-gallery-view:hover {
    border-color: #e4c25b;
    color: #e4c25b;
}

/* Gallery footer */

.sfa-gallery-footer {
    margin-top: 28px;
    padding: 22px 25px;

    display: flex;
    align-items: center;
    gap: 24px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 4px;

    background:
        linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.07),
            rgba(255, 255, 255, 0.02),
            rgba(212, 175, 55, 0.04)
        );
}

.sfa-gallery-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sfa-gallery-stat strong {
    color: #e2c05a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.sfa-gallery-stat span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 7px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sfa-gallery-divider {
    width: 1px;
    height: 39px;
    background: rgba(212, 175, 55, 0.25);
}

.sfa-gallery-footer > p {
    flex: 1;
    margin: 0;

    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    line-height: 1.6;
}

.sfa-gallery-button {
    min-height: 42px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;

    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 3px;

    color: #ddbc54;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-decoration: none;
    text-transform: uppercase;

    background: rgba(212, 175, 55, 0.05);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.sfa-gallery-button:hover {
    color: #f0d578;
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.55);
    background: rgba(212, 175, 55, 0.1);
}

/* =========================================
   LIGHTBOX
========================================= */

.sfa-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    padding: 70px 7%;
    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;

    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.sfa-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.sfa-lightbox-content {
    max-width: 1100px;
    max-height: 82vh;
    text-align: center;
}

.sfa-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    display: block;
    margin: auto;

    object-fit: contain;

    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.sfa-lightbox-caption {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.7);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.sfa-lightbox-close,
.sfa-lightbox-arrow {
    position: absolute;
    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);

    transition: 0.3s ease;
}

.sfa-lightbox-close:hover,
.sfa-lightbox-arrow:hover {
    color: #e4c35d;
    border-color: #e4c35d;
    background: rgba(212, 175, 55, 0.1);
}

.sfa-lightbox-close {
    top: 25px;
    right: 28px;

    width: 43px;
    height: 43px;
}

.sfa-lightbox-arrow {
    top: 50%;

    width: 48px;
    height: 48px;
    transform: translateY(-50%);
}

.sfa-lightbox-prev {
    left: 28px;
}

.sfa-lightbox-next {
    right: 28px;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .sfa-memories {
        padding: 105px 5%;
    }

    .sfa-memories-header {
        gap: 45px;
    }

    .sfa-memory-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 400px 280px 280px;
    }

    .sfa-memory-featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .sfa-memory-wide {
        grid-column: auto;
    }

    .sfa-memory-last {
        display: block;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .sfa-memories {
        padding: 85px 20px;
    }

    .sfa-memories-header {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .sfa-memory-gallery {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 15px;
    }

    .sfa-memory-featured,
    .sfa-memory-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .sfa-memory-item,
    .sfa-memory-featured {
        height: 360px;
    }

    .sfa-memory-featured figcaption,
    .sfa-memory-item figcaption {
        padding: 24px 20px;
    }

    .sfa-memory-featured h3,
    .sfa-memory-item h3 {
        font-size: 22px;
    }

    .sfa-gallery-view {
        opacity: 1;
        transform: scale(1);
    }

    .sfa-gallery-footer {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .sfa-gallery-footer > p {
        flex-basis: calc(100% - 100px);
    }

    .sfa-gallery-button {
        width: 100%;
        justify-content: center;
    }

    .sfa-lightbox {
        padding: 65px 15px;
    }

    .sfa-lightbox-arrow {
        top: auto;
        bottom: 14px;
    }

    .sfa-lightbox-prev {
        left: calc(50% - 58px);
    }

    .sfa-lightbox-next {
        right: calc(50% - 58px);
    }
}

@media (max-width: 480px) {

    .sfa-memory-item,
    .sfa-memory-featured {
        height: 310px;
    }

    .sfa-gallery-divider {
        display: none;
    }

    .sfa-gallery-footer > p {
        flex-basis: 100%;
    }
}
/* =========================================
   GRAND EVENT COUNTDOWN & CTA
========================================= */

.sfa-countdown-section {
    position: relative;
    min-height: 850px;
    padding: 125px 6% 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(108, 18, 18, 0.34),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #030303 0%,
            #100704 48%,
            #030303 100%
        );
}

.sfa-countdown-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.035) 50%,
            transparent 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 69px,
            rgba(212, 175, 55, 0.035) 70px
        );
}

.sfa-countdown-section::after {
    content: "11";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -3;

    color: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(350px, 48vw, 720px);
    font-weight: 700;
    line-height: 0.7;

    transform: translate(-50%, -50%);

    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.055);
}

/* Decorative lights */

.sfa-countdown-spotlight {
    position: absolute;
    top: -340px;
    z-index: -2;

    width: 390px;
    height: 1050px;

    opacity: 0.13;
    filter: blur(25px);
    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(255, 228, 135, 0.85),
        rgba(212, 175, 55, 0.08) 58%,
        transparent 82%
    );
}

.sfa-countdown-light-one {
    left: 6%;
    transform: rotate(-27deg);
    animation: sfaCountdownLightOne 8s ease-in-out infinite alternate;
}

.sfa-countdown-light-two {
    right: 6%;
    transform: rotate(27deg);
    animation: sfaCountdownLightTwo 8s ease-in-out infinite alternate;
}

/* Gold particles */

.sfa-countdown-stars {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;

    background-image:
        radial-gradient(
            circle at 15% 25%,
            #d4af37 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 78% 18%,
            #f1d276 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 87% 69%,
            #d4af37 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 22% 78%,
            #f1d276 1px,
            transparent 2px
        ),
        radial-gradient(
            circle at 55% 12%,
            #d4af37 1px,
            transparent 2px
        );

    background-size:
        230px 230px,
        290px 290px,
        260px 260px,
        310px 310px,
        340px 340px;

    animation: sfaStarsMove 20s linear infinite;
}

.sfa-countdown-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

/* Top line */

.sfa-countdown-topline {
    max-width: 620px;
    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.sfa-countdown-topline > span {
    flex: 1;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.7)
    );
}

.sfa-countdown-topline > span:last-child {
    transform: rotate(180deg);
}

.sfa-countdown-topline p {
    margin: 0;

    color: #ddbc55;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sfa-countdown-topline p i {
    margin: 0 8px;
    font-size: 6px;
}

/* Heading */

.sfa-countdown-edition {
    display: inline-block;
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.52);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-style: italic;
    letter-spacing: 2px;
}

.sfa-countdown-heading h2 {
    margin: 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6vw, 79px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -2px;

    text-shadow: 0 15px 55px rgba(0, 0, 0, 0.6);
}

.sfa-countdown-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #a97717,
        #f1d678 48%,
        #a97717
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-countdown-heading > p {
    max-width: 740px;
    margin: 22px auto 38px;

    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
   COUNTDOWN
========================================= */

.sfa-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.sfa-countdown-box {
    position: relative;

    width: 155px;
    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 6px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.36),
        inset 0 0 30px rgba(212, 175, 55, 0.025);

    backdrop-filter: blur(14px);
}

.sfa-countdown-box::before,
.sfa-countdown-box::after {
    content: "";
    position: absolute;

    width: 32px;
    height: 32px;
}

.sfa-countdown-box::before {
    top: 8px;
    left: 8px;

    border-top: 1px solid rgba(235, 204, 105, 0.62);
    border-left: 1px solid rgba(235, 204, 105, 0.62);
}

.sfa-countdown-box::after {
    right: 8px;
    bottom: 8px;

    border-right: 1px solid rgba(235, 204, 105, 0.62);
    border-bottom: 1px solid rgba(235, 204, 105, 0.62);
}

.sfa-countdown-value {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 500;
    line-height: 0.95;

    text-shadow:
        0 0 25px rgba(212, 175, 55, 0.18);
}

.sfa-countdown-label {
    margin-top: 13px;

    color: #d5b247;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sfa-countdown-colon {
    color: rgba(231, 198, 91, 0.65);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 39px;
    animation: sfaColonBlink 1s ease-in-out infinite;
}

.sfa-countdown-status {
    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.37);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Event details */

.sfa-countdown-event-info {
    max-width: 990px;
    margin: 36px auto 31px;
    padding: 18px 22px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    background: rgba(255, 255, 255, 0.018);
}

.sfa-countdown-info-item {
    padding: 4px 18px;

    display: flex;
    align-items: center;
    gap: 11px;

    text-align: left;
    border-right: 1px solid rgba(212, 175, 55, 0.17);
}

.sfa-countdown-info-item:last-child {
    border-right: 0;
}

.sfa-countdown-info-item > span {
    color: #d9b64c;
    font-size: 16px;
}

.sfa-countdown-info-item div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sfa-countdown-info-item small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 7px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-countdown-info-item strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 600;
}

/* CTA buttons */

.sfa-countdown-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
}

.sfa-countdown-btn {
    min-width: 245px;
    min-height: 62px;
    padding: 10px 21px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    border-radius: 4px;
    text-decoration: none;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.sfa-countdown-btn span {
    display: flex;
    flex-direction: column;

    font-size: 11px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
}

.sfa-countdown-btn small {
    margin-bottom: 2px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.4px;
    opacity: 0.6;
}

.sfa-countdown-btn-gold {
    color: #171003;

    background: linear-gradient(
        135deg,
        #946713,
        #dfba49 48%,
        #f6e18b
    );

    box-shadow: 0 17px 40px rgba(212, 175, 55, 0.22);
}

.sfa-countdown-btn-gold:hover {
    color: #171003;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.38);
}

.sfa-countdown-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(10px);
}

.sfa-countdown-btn-outline i {
    color: #dfbd55;
}

.sfa-countdown-btn-outline:hover {
    color: #fff;
    transform: translateY(-5px);
    border-color: rgba(224, 191, 85, 0.55);
}

/* Bottom branding */

.sfa-countdown-bottom {
    max-width: 600px;
    margin: 37px auto 0;

    display: flex;
    align-items: center;
    gap: 16px;
}

.sfa-countdown-bottom-line {
    flex: 1;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.4)
    );
}

.sfa-countdown-bottom-line:last-child {
    transform: rotate(180deg);
}

.sfa-countdown-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.38);
    font-size: 7px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sfa-countdown-bottom p i {
    margin-right: 7px;
    color: #d8b54c;
}

/* Animations */

@keyframes sfaColonBlink {
    0%,
    100% {
        opacity: 0.35;
    }

    50% {
        opacity: 1;
    }
}

@keyframes sfaStarsMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}

@keyframes sfaCountdownLightOne {
    from {
        transform: rotate(-29deg) translateX(-15px);
    }

    to {
        transform: rotate(-21deg) translateX(28px);
    }
}

@keyframes sfaCountdownLightTwo {
    from {
        transform: rotate(29deg) translateX(15px);
    }

    to {
        transform: rotate(21deg) translateX(-28px);
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .sfa-countdown-section {
        min-height: auto;
        padding: 110px 5%;
    }

    .sfa-countdown-box {
        width: 130px;
        height: 130px;
    }

    .sfa-countdown-event-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .sfa-countdown-info-item:nth-child(2) {
        border-right: 0;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .sfa-countdown-section {
        padding: 85px 18px;
    }

    .sfa-countdown-section::after {
        font-size: 330px;
    }

    .sfa-countdown-spotlight {
        display: none;
    }

    .sfa-countdown-topline {
        gap: 8px;
    }

    .sfa-countdown-topline p {
        font-size: 7px;
        letter-spacing: 1.2px;
    }

    .sfa-countdown-topline p i {
        display: none;
    }

    .sfa-countdown-heading h2 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .sfa-countdown-heading > p {
        font-size: 13px;
    }

    .sfa-countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
    }

    .sfa-countdown-box {
        width: 100%;
        height: 115px;
    }

    .sfa-countdown-value {
        font-size: 44px;
    }

    .sfa-countdown-colon {
        display: none;
    }

    .sfa-countdown-event-info {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 5px 17px;
    }

    .sfa-countdown-info-item,
    .sfa-countdown-info-item:nth-child(2) {
        padding: 15px 3px;
        border-right: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.13);
    }

    .sfa-countdown-info-item:last-child {
        border-bottom: 0;
    }

    .sfa-countdown-btn {
        width: 100%;
        max-width: 345px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sfa-countdown-stars,
    .sfa-countdown-spotlight,
    .sfa-countdown-colon {
        animation: none;
    }
}
/* =========================================
   SABRANG FILM AWARDS — OUR PARTNERS
========================================= */

.sfa-partners {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(212, 175, 55, 0.09),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #080806 0%,
            #0d0b07 52%,
            #050505 100%
        );
}

.sfa-partners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 78%;
    height: 1px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.48),
        transparent
    );
}

.sfa-partners::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;

    background-image:
        radial-gradient(
            rgba(212, 175, 55, 0.2) 0.7px,
            transparent 0.7px
        );

    background-size: 24px 24px;
}

.sfa-partners-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.sfa-partners-glow-left {
    top: 20%;
    left: -270px;

    background: radial-gradient(
        circle,
        rgba(123, 22, 22, 0.15),
        transparent 70%
    );
}

.sfa-partners-glow-right {
    right: -270px;
    bottom: 5%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.11),
        transparent 70%
    );
}

.sfa-partners-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 6%;
}

/* =========================================
   LOGO MARQUEE
========================================= */

.sfa-partner-marquee {
    position: relative;
    width: 100%;
    padding: 30px 0;
    overflow: hidden;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018),
            rgba(212, 175, 55, 0.035),
            rgba(255, 255, 255, 0.018)
        );
}

.sfa-partner-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;

    width: 120px;
    pointer-events: none;
}

.sfa-partner-fade-left {
    left: 0;

    background: linear-gradient(
        90deg,
        #0c0a07,
        transparent
    );
}

.sfa-partner-fade-right {
    right: 0;

    background: linear-gradient(
        -90deg,
        #0c0a07,
        transparent
    );
}

.sfa-partner-track {
    display: flex;
    width: max-content;
    will-change: transform;

    animation: sfaPartnerScroll 26s linear infinite;
}

.sfa-partner-marquee:hover .sfa-partner-track {
    animation-play-state: paused;
}

.sfa-partner-group {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
}

/* Logo cards */

.sfa-partner-logo {
    position: relative;

    width: 205px;
    height: 125px;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eeeeea
        );

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-partner-logo::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: 0;

    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(212, 175, 55, 0.25) 50%,
        transparent 75%
    );

    transform: translateX(-100%);
    transition: opacity 0.4s ease;
}

.sfa-partner-logo:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.58);

    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(212, 175, 55, 0.1);
}

.sfa-partner-logo:hover::before {
    opacity: 1;
    animation: sfaLogoShine 1.1s ease;
}

.sfa-partner-logo img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;

    filter:
        saturate(0.94)
        contrast(1.02);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.sfa-partner-logo:hover img {
    transform: scale(1.055);
    filter: saturate(1.08);
}

/* =========================================
   PARTNERSHIP CTA
========================================= */

.sfa-partner-cta {
    position: relative;
    margin-top: 55px;
    padding: 34px 38px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 25px;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.14),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.32);
}

.sfa-partner-cta::after {
    content: "PARTNER";
    position: absolute;
    right: 20%;
    bottom: -23px;

    color: rgba(212, 175, 55, 0.035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.sfa-partner-cta-icon {
    width: 67px;
    height: 67px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.36);
    border-radius: 50%;

    color: #e1bf55;
    font-size: 23px;

    background: rgba(212, 175, 55, 0.08);

    box-shadow:
        inset 0 0 25px rgba(212, 175, 55, 0.05);
}

.sfa-partner-cta-content {
    position: relative;
    z-index: 2;
}

.sfa-partner-cta-content > small {
    color: #d8b64b;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.sfa-partner-cta-content h3 {
    margin: 7px 0 8px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.25;
}

.sfa-partner-cta-content h3 span {
    color: #e0bd53;
}

.sfa-partner-cta-content p {
    max-width: 660px;
    margin: 0;

    color: rgba(255, 255, 255, 0.47);
    font-size: 10px;
    line-height: 1.65;
}

.sfa-partner-cta-button {
    position: relative;
    z-index: 2;

    min-width: 215px;
    min-height: 58px;
    padding: 9px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    color: #181102;
    text-decoration: none;

    border-radius: 4px;

    background: linear-gradient(
        135deg,
        #986b14,
        #dfbb4b 50%,
        #f2dc83
    );

    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.2);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.sfa-partner-cta-button:hover {
    color: #181102;
    transform: translateY(-4px);

    box-shadow:
        0 22px 45px rgba(212, 175, 55, 0.35);
}

.sfa-partner-cta-button > span {
    display: flex;
    flex-direction: column;

    font-size: 10px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.sfa-partner-cta-button small {
    font-size: 7px;
    opacity: 0.62;
}

/* Benefits */

.sfa-partner-benefits {
    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sfa-partner-benefit {
    min-height: 66px;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-right: 1px solid rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: center;
    text-transform: uppercase;
}

.sfa-partner-benefit:last-child {
    border-right: 0;
}

.sfa-partner-benefit i {
    color: #d9b74c;
    font-size: 13px;
}

/* Animations */

@keyframes sfaPartnerScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes sfaLogoShine {

    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .sfa-partner-cta {
        grid-template-columns: auto 1fr;
    }

    .sfa-partner-cta-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .sfa-partner-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .sfa-partner-benefit:nth-child(2) {
        border-right: 0;
    }

    .sfa-partner-benefit:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .sfa-partners {
        padding: 85px 0;
    }

    .sfa-partners-container {
        padding: 0 20px;
    }

    .sfa-partner-marquee {
        margin-right: -20px;
        margin-left: -20px;
        width: calc(100% + 40px);
    }

    .sfa-partner-logo {
        width: 170px;
        height: 105px;
        padding: 16px;
    }

    .sfa-partner-fade {
        width: 45px;
    }

    .sfa-partner-cta {
        padding: 28px 22px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sfa-partner-cta-icon {
        margin: 0 auto;
    }

    .sfa-partner-cta-content h3 {
        font-size: 23px;
    }

    .sfa-partner-cta-content p {
        font-size: 10px;
    }

    .sfa-partner-cta-button {
        grid-column: auto;
    }

    .sfa-partner-benefits {
        grid-template-columns: 1fr;
    }

    .sfa-partner-benefit,
    .sfa-partner-benefit:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .sfa-partner-benefit:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sfa-partner-track {
        animation: none;
    }
}
/* =====================================================
   ULTRA-LUXURY PARTNERS SECTION — PREMIUM OVERRIDES
===================================================== */

.sfa-partners {
    padding: 145px 0 125px;

    background:
        radial-gradient(
            ellipse at 50% -8%,
            rgba(220, 180, 59, 0.2) 0%,
            rgba(85, 55, 4, 0.08) 34%,
            transparent 62%
        ),
        radial-gradient(
            circle at 8% 60%,
            rgba(118, 18, 18, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 60%,
            rgba(118, 18, 18, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #020202 0%,
            #0e0b05 48%,
            #020202 100%
        );
}

/* Luxury upper border */

.sfa-partners::before {
    width: 85%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(132, 88, 8, 0.25) 15%,
        #d9b548 38%,
        #f5dc7d 50%,
        #d9b548 62%,
        rgba(132, 88, 8, 0.25) 85%,
        transparent 100%
    );

    box-shadow:
        0 0 22px rgba(212, 175, 55, 0.25);
}

/* Rich diamond pattern */

.sfa-partners::after {
    opacity: 0.24;

    background-image:
        linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.035) 25%,
            transparent 25%,
            transparent 75%,
            rgba(212, 175, 55, 0.035) 75%
        ),
        linear-gradient(
            -45deg,
            rgba(212, 175, 55, 0.025) 25%,
            transparent 25%,
            transparent 75%,
            rgba(212, 175, 55, 0.025) 75%
        );

    background-size: 70px 70px;
}

/* Luxury heading */

.sfa-partners .sfa-section-heading {
    position: relative;
    margin-bottom: 70px;
}

.sfa-partners .sfa-section-heading::before {
    content: "PRESTIGIOUS ASSOCIATIONS";
    position: absolute;
    top: 51%;
    left: 50%;
    z-index: -1;

    color: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 8vw, 118px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 7px;
    white-space: nowrap;

    transform: translate(-50%, -50%);

    -webkit-text-stroke:
        1px rgba(212, 175, 55, 0.045);
}

.sfa-partners .sfa-section-heading h2 {
    font-size: clamp(46px, 5.5vw, 75px);
    text-shadow:
        0 12px 45px rgba(0, 0, 0, 0.7);
}

.sfa-partners .sfa-section-heading h2 span {
    background: linear-gradient(
        90deg,
        #8d6212 0%,
        #cfa73d 22%,
        #fff0a2 50%,
        #cfa73d 78%,
        #8d6212 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 4px 16px rgba(212, 175, 55, 0.14));
}

/* =====================================================
   LUXURY MARQUEE FRAME
===================================================== */

.sfa-partner-marquee {
    padding: 44px 0;

    overflow: hidden;

    border-top: 1px solid rgba(241, 210, 111, 0.35);
    border-bottom: 1px solid rgba(241, 210, 111, 0.35);
    border-radius: 7px;

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(212, 175, 55, 0.1),
            transparent 56%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.042),
            rgba(255, 255, 255, 0.012)
        );

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 231, 148, 0.08),
        inset 0 -1px 0 rgba(255, 231, 148, 0.06),
        0 0 50px rgba(212, 175, 55, 0.04);
}

.sfa-partner-marquee::before,
.sfa-partner-marquee::after {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 7;

    width: 120px;
    height: 2px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #f0d475,
        transparent
    );

    box-shadow:
        0 0 14px rgba(212, 175, 55, 0.35);
}

.sfa-partner-marquee::before {
    top: -1px;
}

.sfa-partner-marquee::after {
    bottom: -1px;
}

/* Side curtain fade */

.sfa-partner-fade {
    width: 170px;
}

.sfa-partner-fade-left {
    background: linear-gradient(
        90deg,
        #070603 5%,
        rgba(7, 6, 3, 0.9) 30%,
        transparent 100%
    );
}

.sfa-partner-fade-right {
    background: linear-gradient(
        -90deg,
        #070603 5%,
        rgba(7, 6, 3, 0.9) 30%,
        transparent 100%
    );
}

.sfa-partner-group {
    gap: 30px;
    padding-right: 30px;
}

/* =====================================================
   BLACK-GOLD LOGO SHOWCASES
===================================================== */

.sfa-partner-logo {
    width: 230px;
    height: 155px;
    padding: 10px;

    border: 1px solid rgba(222, 185, 70, 0.42);
    border-radius: 5px;

    background:
        linear-gradient(
            145deg,
            #2d220c 0%,
            #9b741d 2%,
            #1a1509 4%,
            #070706 40%,
            #171106 100%
        );

    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.48),
        inset 0 0 0 1px rgba(255, 229, 139, 0.06),
        inset 0 0 30px rgba(212, 175, 55, 0.035);

    isolation: isolate;
}

/* Inner ivory display panel */

.sfa-partner-logo::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;

    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 2px;

    background:
        radial-gradient(
            circle at 50% 0%,
            #ffffff,
            #f7f3e8 56%,
            #e7dfca 100%
        );

    box-shadow:
        inset 0 0 22px rgba(107, 82, 24, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.16);
}

/* Animated luxury shine */

.sfa-partner-logo::before {
    inset: 10px;
    z-index: 4;

    opacity: 0;

    background: linear-gradient(
        115deg,
        transparent 22%,
        rgba(255, 255, 255, 0.12) 38%,
        rgba(255, 238, 167, 0.7) 50%,
        rgba(255, 255, 255, 0.12) 62%,
        transparent 78%
    );

    transform: translateX(-140%) skewX(-15deg);
}

.sfa-partner-logo:hover {
    transform:
        translateY(-10px)
        scale(1.025);

    border-color: rgba(255, 222, 116, 0.9);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(244, 210, 100, 0.15),
        0 0 35px rgba(212, 175, 55, 0.18),
        inset 0 0 30px rgba(212, 175, 55, 0.08);
}

.sfa-partner-logo:hover::before {
    opacity: 1;
    animation: sfaLuxuryLogoShine 1.25s ease forwards;
}

/* Decorative corner ornaments */

.sfa-partner-logo img {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    margin: 16px;

    object-fit: contain;

    filter:
        saturate(0.96)
        contrast(1.04)
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.sfa-partner-logo:hover img {
    transform: scale(1.075);

    filter:
        saturate(1.08)
        contrast(1.04)
        drop-shadow(0 7px 10px rgba(0, 0, 0, 0.13));
}

/* Gold pedestal below cards */

.sfa-partner-logo span {
    display: none;
}

@keyframes sfaLuxuryLogoShine {

    from {
        transform: translateX(-140%) skewX(-15deg);
    }

    to {
        transform: translateX(140%) skewX(-15deg);
    }
}

/* =====================================================
   ULTRA-PREMIUM PARTNERSHIP CTA
===================================================== */

.sfa-partner-cta {
    margin-top: 70px;
    padding: 44px 45px;

    border: 1px solid rgba(231, 196, 88, 0.42);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(212, 175, 55, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.17),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(38, 28, 7, 0.96),
            rgba(8, 7, 5, 0.97) 50%,
            rgba(30, 21, 6, 0.96)
        );

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.52),
        inset 0 1px 0 rgba(255, 230, 145, 0.1),
        inset 0 0 50px rgba(212, 175, 55, 0.035);
}

.sfa-partner-cta::before {
    content: "";
    position: absolute;
    inset: 9px;
    pointer-events: none;

    border: 1px solid rgba(212, 175, 55, 0.13);
    border-radius: 3px;
}

.sfa-partner-cta::after {
    content: "PRESTIGE";
    right: 12%;
    bottom: -27px;

    color: rgba(212, 175, 55, 0.045);
    font-size: 105px;
    letter-spacing: 8px;
}

.sfa-partner-cta-icon {
    position: relative;

    width: 78px;
    height: 78px;

    border: 1px solid rgba(241, 208, 103, 0.5);

    color: #f0d16d;
    font-size: 26px;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.2),
            rgba(212, 175, 55, 0.045)
        );

    box-shadow:
        0 0 35px rgba(212, 175, 55, 0.12),
        inset 0 0 22px rgba(212, 175, 55, 0.08);
}

.sfa-partner-cta-icon::before {
    content: "";
    position: absolute;
    inset: 6px;

    border: 1px solid rgba(241, 208, 103, 0.22);
    border-radius: 50%;
}

.sfa-partner-cta-content h3 {
    font-size: clamp(25px, 2.3vw, 33px);
}

.sfa-partner-cta-content h3 span {
    background: linear-gradient(
        90deg,
        #c79b2d,
        #f4d97d,
        #c79b2d
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-partner-cta-button {
    min-width: 235px;
    min-height: 65px;

    border: 1px solid rgba(255, 238, 169, 0.5);

    background: linear-gradient(
        135deg,
        #795008 0%,
        #c99c2d 28%,
        #f3d675 52%,
        #b5861d 78%,
        #6e4706 100%
    );

    box-shadow:
        0 18px 42px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

/* Luxury benefits strip */

.sfa-partner-benefits {
    margin-top: 30px;

    border-top: 1px solid rgba(212, 175, 55, 0.22);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.055),
            transparent
        );
}

.sfa-partner-benefit {
    min-height: 78px;

    border-color: rgba(212, 175, 55, 0.13);

    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 1px;
}

.sfa-partner-benefit i {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;

    color: #e3c05a;

    background: rgba(212, 175, 55, 0.055);
}

/* =====================================================
   RESPONSIVE LUXURY OVERRIDES
===================================================== */

@media (max-width: 991px) {

    .sfa-partners {
        padding: 115px 0 100px;
    }

    .sfa-partner-logo {
        width: 215px;
        height: 145px;
    }

    .sfa-partner-cta {
        padding: 38px 32px;
    }
}

@media (max-width: 767px) {

    .sfa-partners {
        padding: 90px 0;
    }

    .sfa-partners .sfa-section-heading {
        margin-bottom: 48px;
    }

    .sfa-partners .sfa-section-heading::before {
        display: none;
    }

    .sfa-partner-marquee {
        padding: 33px 0;
        border-radius: 0;
    }

    .sfa-partner-fade {
        width: 50px;
    }

    .sfa-partner-group {
        gap: 18px;
        padding-right: 18px;
    }

    .sfa-partner-logo {
        width: 185px;
        height: 125px;
    }

    .sfa-partner-cta {
        margin-top: 48px;
        padding: 32px 22px;
    }

    .sfa-partner-cta::after {
        font-size: 55px;
        right: -15px;
    }

    .sfa-partner-cta-icon {
        width: 68px;
        height: 68px;
    }

    .sfa-partner-benefits {
        margin-top: 22px;
    }
}
/* =========================================
   OUR JOURNEY — LEGACY IN NUMBERS
========================================= */

.sfa-journey {
    position: relative;
    padding: 135px 6% 125px;
    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 5%,
            rgba(212, 175, 55, 0.13),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #030303 0%,
            #0d0a05 50%,
            #030303 100%
        );
}

.sfa-journey::before {
    content: "SFA";
    position: absolute;
    top: 50%;
    left: 50%;

    color: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(350px, 52vw, 780px);
    font-weight: 700;
    line-height: 0.7;

    transform: translate(-50%, -50%);

    -webkit-text-stroke:
        1px rgba(212, 175, 55, 0.035);

    pointer-events: none;
}

.sfa-journey::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 84%;
    height: 2px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #b18727,
        #f1d470,
        #b18727,
        transparent
    );

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.22);
}

.sfa-journey-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
}

.sfa-journey-glow-left {
    top: 20%;
    left: -320px;

    background: radial-gradient(
        circle,
        rgba(128, 19, 19, 0.16),
        transparent 70%
    );
}

.sfa-journey-glow-right {
    right: -320px;
    bottom: 5%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.11),
        transparent 70%
    );
}

.sfa-journey-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.sfa-journey-header {
    margin-bottom: 65px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    align-items: end;
    gap: 80px;
}

.sfa-journey-title h2 {
    margin: 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5.6vw, 76px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -2px;
}

.sfa-journey-title h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #906311,
        #f0d474 50%,
        #a17518
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-journey-intro {
    position: relative;
    padding-left: 105px;
}

.sfa-journey-since {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    flex-direction: column;

    color: #e1be55;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.sfa-journey-since small {
    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.36);
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-journey-intro p {
    margin: 0;
    padding-left: 20px;

    border-left: 1px solid rgba(212, 175, 55, 0.35);

    color: rgba(255, 255, 255, 0.53);
    font-size: 12px;
    line-height: 1.8;
}

/* =========================================
   STATISTICS
========================================= */

.sfa-journey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(212, 175, 55, 0.28);
    border-left: 1px solid rgba(212, 175, 55, 0.16);
}

.sfa-journey-stat {
    position: relative;
    min-height: 315px;
    padding: 37px 34px;

    overflow: hidden;

    border-right: 1px solid rgba(212, 175, 55, 0.16);
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.037),
            rgba(255, 255, 255, 0.008)
        );

    transition:
        transform 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa-journey-stat::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;

    width: 160px;
    height: 160px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.14),
        transparent 68%
    );

    transition: transform 0.5s ease;
}

.sfa-journey-stat:hover {
    z-index: 3;
    transform: translateY(-8px);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.1),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 28px 55px rgba(0, 0, 0, 0.48),
        inset 0 0 40px rgba(212, 175, 55, 0.025);
}

.sfa-journey-stat:hover::before {
    transform: scale(1.6);
}

.sfa-stat-featured {
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.17),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(99, 70, 12, 0.3),
            rgba(255, 255, 255, 0.015)
        );
}

.sfa-stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 27px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 50%;

    color: #e0bd51;
    font-size: 16px;

    background: rgba(212, 175, 55, 0.06);

    box-shadow:
        inset 0 0 20px rgba(212, 175, 55, 0.04);
}

.sfa-stat-number {
    display: flex;
    align-items: flex-start;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(47px, 5vw, 69px);
    font-weight: 500;
    line-height: 0.9;

    text-shadow:
        0 5px 22px rgba(212, 175, 55, 0.13);
}

.sfa-stat-number sup {
    margin: 5px 0 0 4px;

    color: #d7b34a;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.sfa-journey-stat h3 {
    margin: 17px 0 9px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 500;
}

.sfa-journey-stat > p {
    max-width: 290px;
    margin: 0;

    color: rgba(255, 255, 255, 0.43);
    font-size: 10px;
    line-height: 1.7;
}

.sfa-stat-index {
    position: absolute;
    right: 19px;
    bottom: 15px;

    color: rgba(212, 175, 55, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-style: italic;
}

/* =========================================
   TIMELINE
========================================= */

.sfa-journey-timeline {
    position: relative;
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sfa-journey-line {
    position: absolute;
    top: 13px;
    left: 10%;
    right: 10%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.75),
        transparent
    );
}

.sfa-journey-point {
    position: relative;
    z-index: 2;

    padding: 0 24px;
    text-align: center;
}

.sfa-point-marker {
    position: relative;

    width: 27px;
    height: 27px;
    margin: 0 auto 17px;

    display: block;

    border: 7px solid #080704;
    border-radius: 50%;

    background: #e0bd51;

    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.4);
}

.sfa-point-marker::after {
    content: "";
    position: absolute;
    inset: -11px;

    border: 1px solid rgba(212, 175, 55, 0.13);
    border-radius: 50%;
}

.sfa-journey-point > strong {
    display: block;
    margin-bottom: 10px;

    color: #ddb94d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
}

.sfa-journey-point h3 {
    margin: 0 0 7px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 500;
}

.sfa-journey-point p {
    max-width: 230px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.39);
    font-size: 9px;
    line-height: 1.6;
}

/* =========================================
   FINAL STATEMENT
========================================= */

.sfa-journey-statement {
    position: relative;
    margin-top: 75px;
    padding: 35px 39px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;

    overflow: hidden;

    border: 1px solid rgba(212, 175, 55, 0.31);
    border-radius: 5px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(212, 175, 55, 0.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(46, 33, 8, 0.77),
            rgba(7, 7, 6, 0.88)
        );
}

.sfa-journey-statement::after {
    content: "LEGACY";
    position: absolute;
    right: 15%;
    bottom: -28px;

    color: rgba(212, 175, 55, 0.045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 8px;
}

.sfa-statement-crown {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(229, 196, 87, 0.42);
    border-radius: 50%;

    color: #e1be53;
    font-size: 21px;

    background: rgba(212, 175, 55, 0.07);
}

.sfa-journey-statement > div {
    position: relative;
    z-index: 2;
}

.sfa-journey-statement small {
    color: #cfa83b;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.sfa-journey-statement h3 {
    margin: 6px 0 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
}

.sfa-journey-statement h3 span {
    color: #dfbb50;
}

.sfa-journey-statement > a {
    position: relative;
    z-index: 2;

    min-height: 51px;
    padding: 0 21px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 3px;

    color: #dfbd54;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    background: rgba(212, 175, 55, 0.055);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}

.sfa-journey-statement > a:hover {
    color: #f0d472;
    transform: translateY(-4px);
    border-color: rgba(224, 190, 81, 0.65);
    background: rgba(212, 175, 55, 0.11);
}

/* Responsive */

@media (max-width: 991px) {

    .sfa-journey-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sfa-journey-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sfa-journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 20px;
    }

    .sfa-journey-line {
        display: none;
    }

    .sfa-journey-statement {
        grid-template-columns: auto 1fr;
    }

    .sfa-journey-statement > a {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 700px) {

    .sfa-journey {
        padding: 90px 20px;
    }

    .sfa-journey-title h2 {
        font-size: 44px;
    }

    .sfa-journey-intro {
        padding-left: 0;
    }

    .sfa-journey-since {
        position: static;
        margin-bottom: 18px;
    }

    .sfa-journey-intro p {
        font-size: 11px;
    }

    .sfa-journey-stats {
        grid-template-columns: 1fr;
    }

    .sfa-journey-stat {
        min-height: 280px;
        padding: 31px 26px;
    }

    .sfa-journey-timeline {
        grid-template-columns: 1fr;
    }

    .sfa-journey-statement {
        padding: 30px 22px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sfa-statement-crown {
        margin: 0 auto;
    }

    .sfa-journey-statement h3 {
        font-size: 22px;
    }
}
/* =========================================
   SABRANG FILM AWARDS — FOOTER CTA
========================================= */

.sfa-footer-cta {
    position: relative;
    margin-bottom: 75px;
    padding: 44px 45px;

    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;

    overflow: hidden;
    isolation: isolate;

    border: 1px solid rgba(226, 190, 79, 0.45);
    border-radius: 8px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(212, 175, 55, 0.21),
            transparent 27%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(134, 21, 21, 0.23),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #211705 0%,
            #090806 44%,
            #130605 100%
        );

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.54),
        inset 0 1px 0 rgba(255, 234, 158, 0.11),
        inset 0 0 55px rgba(212, 175, 55, 0.035);
}

.sfa-footer-cta::before {
    content: "";
    position: absolute;
    inset: 9px;
    z-index: -1;

    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 4px;
    pointer-events: none;
}

.sfa-footer-cta::after {
    content: "SFA";
    position: absolute;
    right: 15%;
    bottom: -57px;
    z-index: -2;

    color: transparent;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 190px;
    font-weight: 700;
    line-height: 1;

    -webkit-text-stroke:
        1px rgba(212, 175, 55, 0.07);
}

/* Decorative animated light */

.sfa-footer-cta-decoration {
    position: absolute;
    top: -160px;
    left: 50%;
    z-index: -2;

    width: 220px;
    height: 550px;

    opacity: 0.13;
    filter: blur(20px);

    background: linear-gradient(
        180deg,
        rgba(255, 231, 149, 0.85),
        transparent 80%
    );

    transform: translateX(-50%) rotate(8deg);
    animation: sfaFooterLight 6s ease-in-out infinite alternate;
}

/* Trophy */

.sfa-footer-trophy {
    position: relative;

    width: 88px;
    height: 88px;

    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 1px solid rgba(235, 201, 94, 0.52);
    border-radius: 50%;

    color: #f0d170;
    font-size: 29px;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.21),
            rgba(212, 175, 55, 0.035)
        );

    box-shadow:
        0 0 38px rgba(212, 175, 55, 0.14),
        inset 0 0 25px rgba(212, 175, 55, 0.08);
}

.sfa-footer-trophy-ring {
    position: absolute;
    inset: 7px;

    border: 1px solid rgba(235, 201, 94, 0.2);
    border-radius: 50%;
}

.sfa-footer-trophy::before,
.sfa-footer-trophy::after {
    content: "";
    position: absolute;

    width: 6px;
    height: 6px;
    border-radius: 50%;

    background: #e3c159;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.sfa-footer-trophy::before {
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.sfa-footer-trophy::after {
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}

/* Content */

.sfa-footer-cta-content {
    position: relative;
    z-index: 2;
}

.sfa-footer-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;

    color: #d9b64c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.sfa-footer-cta-label i {
    font-size: 7px;
}

.sfa-footer-cta-content h2 {
    margin: 0 0 10px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 2.7vw, 38px);
    font-weight: 500;
    line-height: 1.15;
}

.sfa-footer-cta-content h2 span {
    color: #e2bf55;
}

.sfa-footer-cta-content p {
    max-width: 650px;
    margin: 0;

    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.7;
}

/* Buttons */

.sfa-footer-cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sfa-footer-btn {
    min-width: 215px;
    min-height: 56px;
    padding: 9px 19px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border-radius: 4px;
    text-decoration: none;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.sfa-footer-btn-gold {
    color: #181102;

    background: linear-gradient(
        135deg,
        #795008,
        #c99c2d 30%,
        #f1d473 52%,
        #b4861c 78%,
        #704906
    );

    box-shadow:
        0 16px 38px rgba(212, 175, 55, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.sfa-footer-btn-gold:hover {
    color: #181102;
    transform: translateY(-4px);

    box-shadow:
        0 23px 48px rgba(212, 175, 55, 0.38);
}

.sfa-footer-btn-gold span {
    display: flex;
    flex-direction: column;

    font-size: 10px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.sfa-footer-btn-gold small {
    font-size: 7px;
    opacity: 0.6;
}

.sfa-footer-btn-outline {
    min-height: 45px;

    border: 1px solid rgba(212, 175, 55, 0.27);

    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: rgba(255, 255, 255, 0.025);
}

.sfa-footer-btn-outline i {
    color: #d9b64c;
}

.sfa-footer-btn-outline:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(226, 190, 80, 0.55);
    background: rgba(212, 175, 55, 0.07);
}

/* Animation */

@keyframes sfaFooterLight {

    from {
        transform:
            translateX(-70%)
            rotate(4deg);
    }

    to {
        transform:
            translateX(-30%)
            rotate(13deg);
    }
}

/* Responsive */

@media (max-width: 1050px) {

    .sfa-footer-cta {
        grid-template-columns: auto 1fr;
    }

    .sfa-footer-cta-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .sfa-footer-btn {
        flex: 1;
    }
}

@media (max-width: 700px) {

    .sfa-footer-cta {
        margin-bottom: 55px;
        padding: 35px 23px;

        grid-template-columns: 1fr;
        text-align: center;
    }

    .sfa-footer-trophy {
        width: 75px;
        height: 75px;
        margin: auto;

        font-size: 24px;
    }

    .sfa-footer-cta-content h2 {
        font-size: 29px;
    }

    .sfa-footer-cta-actions {
        grid-column: auto;
        flex-direction: column;
    }

    .sfa-footer-btn {
        width: 100%;
    }

    .sfa-footer-cta::after {
        right: 50%;
        font-size: 135px;
        transform: translateX(50%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .sfa-footer-cta-decoration {
        animation: none;
    }
}
/* =========================================
   SABRANG FLOATING ACTION DOCK
========================================= */

.sfa-floating-dock {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 9990;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sfa-floating-dock::before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: 50%;
    z-index: -1;

    width: 70px;
    transform: translateX(-50%);

    border: 1px solid rgba(212, 175, 55, 0.13);
    border-radius: 45px;

    background:
        linear-gradient(
            180deg,
            rgba(212, 175, 55, 0.08),
            rgba(0, 0, 0, 0.34)
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4);
}

.sfa-floating-dock .floating-action {
    position: relative;

    width: 52px;
    height: 52px;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    color: #fff;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;

    box-shadow:
        0 13px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.sfa-floating-dock .floating-action:hover {
    transform:
        translateY(-4px)
        scale(1.05);
}

/* WhatsApp */

.sfa-floating-dock .whatsapp-action {
    border-color: rgba(67, 255, 137, 0.35);

    background:
        linear-gradient(
            135deg,
            #075e54,
            #25d366
        );

    box-shadow:
        0 13px 30px rgba(37, 211, 102, 0.2);
}

.sfa-floating-dock .whatsapp-action:hover {
    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.38);
}

/* Chatbot */

.sfa-floating-dock .chatbot-action {
    border-color: rgba(255, 226, 130, 0.5);

    background:
        linear-gradient(
            135deg,
            #6f4704,
            #d2a42e 48%,
            #f2d778
        );

    color: #181003;

    box-shadow:
        0 13px 30px rgba(212, 175, 55, 0.25);
}

.sfa-floating-dock .chatbot-action:hover {
    box-shadow:
        0 18px 42px rgba(212, 175, 55, 0.42);
}

.sfa-floating-dock .chatbot-pulse {
    position: absolute;
    inset: -6px;

    border: 1px solid rgba(229, 195, 88, 0.5);
    border-radius: 50%;

    animation: sfaChatPulse 2.2s ease-out infinite;
}

/* Back to top */

.sfa-floating-dock .back-to-top {
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);

    border-color: rgba(212, 175, 55, 0.38);

    background:
        linear-gradient(
            145deg,
            #19150c,
            #080807
        );

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.sfa-floating-dock .back-to-top.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.sfa-floating-dock .back-to-top.show:hover {
    transform:
        translateY(-4px)
        scale(1.05);
}

.sfa-scroll-ring {
    position: absolute;
    inset: -3px;

    border-radius: 50%;

    background:
        conic-gradient(
            #e4c25b var(--sfa-scroll, 0deg),
            rgba(255, 255, 255, 0.1) 0
        );

    -webkit-mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 3px),
            #000 0
        );

    mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 3px),
            #000 0
        );
}

/* Tooltips */

.sfa-floating-dock .floating-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 13px);

    padding: 8px 12px;

    visibility: hidden;
    opacity: 0;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 4px;

    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    white-space: nowrap;

    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(10px);

    transform:
        translate(8px, -50%);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.sfa-floating-dock .floating-action:hover
.floating-tooltip {
    visibility: visible;
    opacity: 1;

    transform:
        translate(0, -50%);
}

/* =========================================
   SABRANG CHATBOT
========================================= */

.sfa-chatbot {
    position: fixed;
    right: 92px;
    bottom: 28px;
    z-index: 9995;

    width: min(385px, calc(100vw - 35px));
    max-height: 570px;

    visibility: hidden;
    opacity: 0;

    overflow: hidden;

    border: 1px solid rgba(224, 190, 81, 0.42);
    border-radius: 13px;

    background: #090908;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.66),
        0 0 35px rgba(212, 175, 55, 0.11);

    transform:
        translateY(22px)
        scale(0.96);

    transform-origin: bottom right;

    transition:
        visibility 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.sfa-chatbot.active {
    visibility: visible;
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

.sfa-chatbot-header {
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(212, 175, 55, 0.28),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #251905,
            #0d0905 58%,
            #230806
        );
}

.sfa-chatbot .chatbot-brand-icon {
    color: #f0d270;

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.22),
            rgba(212, 175, 55, 0.05)
        );

    border-color: rgba(230, 195, 86, 0.45);
}

.sfa-chatbot .chatbot-messages {
    max-height: 390px;
    min-height: 280px;
    overflow-y: auto;
    scroll-behavior: smooth;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.07),
            transparent 45%
        ),
        #0a0a09;
}

.sfa-chatbot .bot-message p {
    color: rgba(255, 255, 255, 0.75);

    border: 1px solid rgba(212, 175, 55, 0.14);

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.1),
            rgba(255, 255, 255, 0.035)
        );
}

.sfa-chatbot .chatbot-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
}

.sfa-chatbot .chatbot-quick-links button {
    min-height: 38px;
    padding: 8px 10px;

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 4px;

    color: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;

    background: rgba(212, 175, 55, 0.045);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.sfa-chatbot .chatbot-quick-links button:hover {
    color: #f0d371;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
}

/* User and bot dynamic messages */

.sfa-chatbot .sfa-user-message,
.sfa-chatbot .sfa-bot-message {
    display: flex;
    margin-bottom: 12px;
}

.sfa-chatbot .sfa-user-message {
    justify-content: flex-end;
}

.sfa-chatbot .sfa-bot-message {
    justify-content: flex-start;
}

.sfa-chatbot .sfa-user-message p,
.sfa-chatbot .sfa-bot-message p {
    max-width: 86%;
    margin: 0;
    padding: 11px 13px;

    border-radius: 10px;

    font-size: 11px;
    line-height: 1.6;
}

.sfa-chatbot .sfa-user-message p {
    color: #1a1102;

    background:
        linear-gradient(
            135deg,
            #b98620,
            #efd16c
        );

    border-bottom-right-radius: 3px;
}

.sfa-chatbot .sfa-bot-message p {
    color: rgba(255, 255, 255, 0.74);

    border: 1px solid rgba(255, 255, 255, 0.07);

    background: rgba(255, 255, 255, 0.045);

    border-bottom-left-radius: 3px;
}

.sfa-chatbot .chatbot-input-area {
    border-top-color: rgba(212, 175, 55, 0.17);
    background: #080807;
}

.sfa-chatbot .chatbot-input-area button {
    color: #191102;

    background:
        linear-gradient(
            135deg,
            #ae7b19,
            #edd06b
        );
}

@keyframes sfaChatPulse {

    0% {
        opacity: 0.65;
        transform: scale(0.86);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

/* Mobile */

@media (max-width: 600px) {

    .sfa-floating-dock {
        right: 14px;
        bottom: 18px;
        gap: 9px;
    }

    .sfa-floating-dock::before {
        width: 61px;
    }

    .sfa-floating-dock .floating-action {
        width: 47px;
        height: 47px;
        font-size: 16px;
    }

    .sfa-floating-dock .floating-tooltip {
        display: none;
    }

    .sfa-chatbot {
        right: 12px;
        bottom: 17px;

        width: calc(100vw - 24px);
        max-height: calc(100vh - 90px);
    }

    .sfa-chatbot .chatbot-messages {
        max-height: calc(100vh - 270px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .sfa-floating-dock .chatbot-pulse {
        animation: none;
    }
}
/* =========================================
   SABRANG YOUTUBE — MOST WATCHED
========================================= */

.sfa-youtube {
    position: relative;
    padding: 130px 0 115px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 45%,
            rgba(255, 0, 0, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(212, 175, 55, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #030303,
            #100503 48%,
            #030303
        );
}

.sfa-youtube::before {
    content: "YOUTUBE";
    position: absolute;
    top: 90px;
    left: 50%;

    color: transparent;
    font-family: Arial, sans-serif;
    font-size: clamp(70px, 14vw, 210px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 13px;

    transform: translateX(-50%);

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.035);

    pointer-events: none;
}

.sfa-youtube::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;

    width: 82%;
    height: 2px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #a91919,
        #e3bf56,
        #a91919,
        transparent
    );
}

.sfa-youtube-red-glow,
.sfa-youtube-gold-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(25px);
}

.sfa-youtube-red-glow {
    left: -300px;
    top: 20%;

    background: radial-gradient(
        circle,
        rgba(203, 17, 17, 0.17),
        transparent 70%
    );
}

.sfa-youtube-gold-glow {
    right: -300px;
    bottom: 5%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1),
        transparent 70%
    );
}

.sfa-youtube-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 6%;
}

/* Header */

.sfa-youtube-header {
    margin-bottom: 58px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.65fr);
    align-items: end;
    gap: 70px;
}

.sfa-youtube-heading h2 {
    margin: 0 0 18px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.4vw, 73px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -2px;
}

.sfa-youtube-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #d8362c,
        #fff,
        #e5c25b
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sfa-youtube-heading > p {
    max-width: 680px;
    margin: 0;

    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.8;
}

/* Channel card */

.sfa-youtube-channel {
    position: relative;
    padding: 21px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;

    overflow: hidden;

    border: 1px solid rgba(226, 190, 80, 0.3);
    border-radius: 7px;

    color: #fff;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(255, 0, 0, 0.18),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        );

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.4);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.sfa-youtube-channel:hover {
    color: #fff;
    transform: translateY(-5px);
    border-color: rgba(230, 193, 80, 0.55);
}

.sfa-youtube-logo {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;
    font-size: 26px;

    background: #ff0000;

    box-shadow:
        0 0 28px rgba(255, 0, 0, 0.3);
}

.sfa-channel-info {
    display: flex;
    flex-direction: column;
}

.sfa-channel-info > small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 7px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-channel-info > strong {
    margin: 4px 0 7px;
    font-size: 13px;
}

.sfa-channel-subscribers {
    color: #dfbd55;
    font-size: 9px;
    font-weight: 700;
}

.sfa-channel-subscribers i {
    margin-right: 5px;
}

.sfa-channel-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

/* =========================================
   VIDEO MARQUEE
========================================= */

.sfa-youtube-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.sfa-youtube-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 6;

    width: 130px;
    pointer-events: none;
}

.sfa-youtube-fade-left {
    left: 0;

    background: linear-gradient(
        90deg,
        #080302,
        transparent
    );
}

.sfa-youtube-fade-right {
    right: 0;

    background: linear-gradient(
        -90deg,
        #080302,
        transparent
    );
}

.sfa-youtube-track {
    display: flex;
    width: max-content;
    will-change: transform;

    animation:
        sfaYoutubeScroll 75s linear infinite;
}

.sfa-youtube-marquee:hover .sfa-youtube-track {
    animation-play-state: paused;
}

.sfa-youtube-group {
    display: flex;
    gap: 19px;
    padding-right: 19px;
}

/* Video Card */

.sfa-video-card {
    width: 345px;
    flex-shrink: 0;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;

    color: #fff;
    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #17120d,
            #080807
        );

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.42);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa-video-card:hover {
    color: #fff;
    transform: translateY(-9px);
    border-color: rgba(229, 192, 75, 0.52);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.58),
        0 0 28px rgba(212, 175, 55, 0.08);
}

.sfa-video-thumbnail {
    position: relative;
    height: 194px;
    overflow: hidden;
    background: #111;
}

.sfa-video-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 35%,
            rgba(0, 0, 0, 0.72) 100%
        );
}

.sfa-video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.sfa-video-card:hover img {
    transform: scale(1.075);
    filter: saturate(1.1);
}

.sfa-video-rank {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;

    padding: 7px 10px;

    border: 1px solid rgba(255, 227, 134, 0.4);
    border-radius: 3px;

    color: #f0d575;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;

    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.sfa-video-badge {
    position: absolute;
    top: 14px;
    right: 13px;
    z-index: 3;

    padding: 6px 9px;
    border-radius: 3px;

    color: #fff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    background: #e00000;
}

.sfa-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;

    color: #fff;
    font-size: 17px;

    background:
        rgba(255, 0, 0, 0.88);

    box-shadow:
        0 0 35px rgba(255, 0, 0, 0.33);

    transform:
        translate(-50%, -50%);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.sfa-video-play i {
    margin-left: 3px;
}

.sfa-video-card:hover .sfa-video-play {
    transform:
        translate(-50%, -50%)
        scale(1.12);

    background: #ff0000;
}

/* Video text */

.sfa-video-content {
    padding: 20px 21px 21px;
}

.sfa-video-content small {
    color: #d7b54c;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sfa-video-content h3 {
    margin: 7px 0 13px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}

.sfa-video-content > span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sfa-video-content > span i {
    margin-left: 7px;
    color: #dfbd55;

    transition:
        transform 0.3s ease;
}

.sfa-video-card:hover
.sfa-video-content > span i {
    transform: translateX(5px);
}

/* =========================================
   YOUTUBE FOOTER
========================================= */

.sfa-youtube-footer {
    margin-top: 55px;
    padding: 29px 32px;

    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 22px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(255, 0, 0, 0.13),
            transparent 27%
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.015)
        );
}

.sfa-youtube-footer-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #fff;
    font-size: 25px;
    background: #e00000;
}

.sfa-youtube-footer small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 7px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-youtube-footer h3 {
    margin: 5px 0 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
}

.sfa-youtube-footer h3 span {
    color: #dfbd55;
}

.sfa-youtube-footer > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.43);
    font-size: 9px;
    line-height: 1.6;
}

.sfa-youtube-footer > a {
    min-height: 47px;
    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border-radius: 4px;

    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;

    background: #e00000;

    box-shadow:
        0 14px 30px rgba(255, 0, 0, 0.2);

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.sfa-youtube-footer > a:hover {
    color: #fff;
    transform: translateY(-4px);
    background: #ff0000;
}

@keyframes sfaYoutubeScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 991px) {

    .sfa-youtube-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sfa-youtube-channel {
        max-width: 500px;
    }

    .sfa-youtube-footer {
        grid-template-columns: auto 1fr;
    }

    .sfa-youtube-footer > p {
        grid-column: 1 / -1;
    }

    .sfa-youtube-footer > a {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 700px) {

    .sfa-youtube {
        padding: 90px 0 85px;
    }

    .sfa-youtube-container {
        padding: 0 20px;
    }

    .sfa-youtube-heading h2 {
        font-size: 43px;
    }

    .sfa-youtube-channel {
        grid-template-columns: auto 1fr;
    }

    .sfa-channel-arrow {
        display: none;
    }

    .sfa-youtube-fade {
        width: 38px;
    }

    .sfa-video-card {
        width: 290px;
    }

    .sfa-video-thumbnail {
        height: 164px;
    }

    .sfa-youtube-track {
        animation-duration: 62s;
    }

    .sfa-youtube-footer {
        padding: 25px 20px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sfa-youtube-footer-icon {
        margin: auto;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sfa-youtube-track {
        animation: none;
    }
}
/* =====================================================
   SABRANG YOUTUBE — PREMIUM DIGITAL IMPACT SECTION
===================================================== */

.sfa-youtube {
    position: relative;
    padding: 135px 0 115px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 45%,
            rgba(218, 0, 0, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 20%,
            rgba(212, 175, 55, 0.13),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #020202 0%,
            #100402 48%,
            #030303 100%
        );
}

/* Giant background typography */

.sfa-youtube::before {
    content: "YOUTUBE";
    position: absolute;
    top: 78px;
    left: 50%;
    z-index: 0;

    color: transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(70px, 14vw, 210px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 14px;
    white-space: nowrap;

    transform: translateX(-50%);

    -webkit-text-stroke:
        1px rgba(255, 255, 255, 0.035);

    pointer-events: none;
}

/* Top luxury line */

.sfa-youtube::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;

    width: 84%;
    height: 2px;
    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #761010,
        #e30000,
        #e4bf54,
        #e30000,
        #761010,
        transparent
    );

    box-shadow:
        0 0 22px rgba(224, 0, 0, 0.2);
}

/* Background glows */

.sfa-youtube-red-glow,
.sfa-youtube-gold-glow {
    position: absolute;
    width: 500px;
    height: 500px;

    border-radius: 50%;
    pointer-events: none;
    filter: blur(25px);
}

.sfa-youtube-red-glow {
    top: 20%;
    left: -310px;

    background: radial-gradient(
        circle,
        rgba(210, 0, 0, 0.19),
        transparent 70%
    );
}

.sfa-youtube-gold-glow {
    right: -310px;
    bottom: 5%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.13),
        transparent 70%
    );
}

.sfa-youtube-container {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 6%;
}

/* =====================================================
   SECTION HEADER
===================================================== */

.sfa-youtube-header {
    margin-bottom: 48px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.66fr);

    align-items: end;
    gap: 75px;
}

.sfa-youtube-heading h2 {
    margin: 0 0 20px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 5.5vw, 75px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -2px;

    text-shadow:
        0 15px 45px rgba(0, 0, 0, 0.65);
}

.sfa-youtube-heading h2 span {
    display: block;

    background: linear-gradient(
        90deg,
        #e03229 0%,
        #fff0e6 45%,
        #e5c25d 85%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 5px 18px rgba(212, 175, 55, 0.08));
}

.sfa-youtube-heading > p {
    max-width: 680px;
    margin: 0;

    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.85;
}

/* =====================================================
   OFFICIAL CHANNEL CARD
===================================================== */

.sfa-youtube-channel {
    position: relative;
    padding: 22px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;

    overflow: hidden;

    border: 1px solid rgba(226, 190, 80, 0.32);
    border-radius: 8px;

    color: #fff;
    text-decoration: none;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(255, 0, 0, 0.2),
            transparent 43%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.1),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.016)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-youtube-channel::before {
    content: "";
    position: absolute;
    inset: 7px;

    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    pointer-events: none;
}

.sfa-youtube-channel:hover {
    color: #fff;

    transform: translateY(-6px);

    border-color: rgba(231, 194, 80, 0.62);

    box-shadow:
        0 35px 75px rgba(0, 0, 0, 0.58),
        0 0 30px rgba(212, 175, 55, 0.09);
}

.sfa-youtube-logo {
    position: relative;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;
    flex-shrink: 0;

    border: 2px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;

    color: #fff;
    font-size: 28px;

    background:
        linear-gradient(
            135deg,
            #b90000,
            #ff0000
        );

    box-shadow:
        0 0 30px rgba(255, 0, 0, 0.32);
}

.sfa-youtube-logo::after {
    content: "";
    position: absolute;
    inset: -7px;

    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 50%;

    animation:
        sfaYoutubePulse 2.4s ease-out infinite;
}

.sfa-channel-info {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
}

.sfa-channel-info > small {
    color: rgba(255, 255, 255, 0.37);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-channel-info > strong {
    margin: 4px 0 8px;

    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.sfa-channel-subscribers {
    color: #e1bf56;
    font-size: 9px;
    font-weight: 700;
}

.sfa-channel-subscribers i {
    margin-right: 5px;
}

.sfa-channel-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.sfa-youtube-channel:hover
.sfa-channel-arrow {
    color: #e4c15b;
    transform: translate(3px, -3px);
}

/* =====================================================
   DIGITAL IMPACT STRIP
===================================================== */

.sfa-youtube-impact {
    position: relative;
    z-index: 3;

    max-width: 1050px;
    margin: 0 auto 55px;
    padding: 25px 32px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    border-top: 1px solid rgba(229, 194, 84, 0.34);
    border-bottom: 1px solid rgba(229, 194, 84, 0.34);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.075),
            rgba(179, 0, 0, 0.04),
            rgba(212, 175, 55, 0.075),
            transparent
        );
}

.sfa-youtube-impact::before,
.sfa-youtube-impact::after {
    content: "";
    position: absolute;
    left: 50%;

    width: 110px;
    height: 3px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        #edcc67,
        transparent
    );

    box-shadow:
        0 0 18px rgba(212, 175, 55, 0.38);
}

.sfa-youtube-impact::before {
    top: -2px;
}

.sfa-youtube-impact::after {
    bottom: -2px;
}

.sfa-youtube-impact-item {
    min-width: 135px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.sfa-youtube-impact-item strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;

    text-shadow:
        0 5px 20px rgba(212, 175, 55, 0.16);
}

.sfa-youtube-impact-item:nth-of-type(2) strong {
    color: #ef4141;

    text-shadow:
        0 5px 22px rgba(255, 0, 0, 0.23);
}

.sfa-youtube-impact-item span {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.42);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-youtube-impact-divider {
    width: 1px;
    height: 43px;
    flex-shrink: 0;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(212, 175, 55, 0.44),
        transparent
    );
}

/* =====================================================
   AUTO-SCROLLING VIDEO MARQUEE
===================================================== */

.sfa-youtube-marquee {
    position: relative;
    z-index: 3;

    width: 100%;
    padding: 15px 0 25px;

    overflow: hidden;
}

.sfa-youtube-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 8;

    width: 145px;
    pointer-events: none;
}

.sfa-youtube-fade-left {
    left: 0;

    background: linear-gradient(
        90deg,
        #070201 8%,
        rgba(7, 2, 1, 0.84) 30%,
        transparent
    );
}

.sfa-youtube-fade-right {
    right: 0;

    background: linear-gradient(
        -90deg,
        #070201 8%,
        rgba(7, 2, 1, 0.84) 30%,
        transparent
    );
}

.sfa-youtube-track {
    display: flex;
    width: max-content;
    will-change: transform;

    animation:
        sfaYoutubeScroll 75s linear infinite;
}

.sfa-youtube-marquee:hover
.sfa-youtube-track {
    animation-play-state: paused;
}

.sfa-youtube-group {
    display: flex;
    gap: 21px;
    padding-right: 21px;
}

/* =====================================================
   VIDEO CARDS
===================================================== */

.sfa-video-card {
    position: relative;

    width: 350px;
    flex-shrink: 0;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;

    color: #fff;
    text-decoration: none;

    background:
        linear-gradient(
            145deg,
            #1a130d,
            #080807 60%
        );

    box-shadow:
        0 25px 58px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.sfa-video-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -65px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.13),
        transparent 68%
    );

    pointer-events: none;

    transition:
        transform 0.5s ease;
}

.sfa-video-card:hover {
    color: #fff;

    transform: translateY(-10px);

    border-color: rgba(230, 193, 79, 0.58);

    box-shadow:
        0 38px 80px rgba(0, 0, 0, 0.62),
        0 0 32px rgba(212, 175, 55, 0.09);
}

.sfa-video-card:hover::after {
    transform: scale(1.6);
}

/* Thumbnail */

.sfa-video-thumbnail {
    position: relative;
    height: 197px;

    overflow: hidden;
    background: #111;
}

.sfa-video-thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.sfa-video-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 30%,
            rgba(0, 0, 0, 0.22) 56%,
            rgba(0, 0, 0, 0.85) 100%
        );

    pointer-events: none;
}

.sfa-video-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.92)
        contrast(1.04);

    transition:
        transform 0.75s ease,
        filter 0.75s ease;
}

.sfa-video-card:hover
.sfa-video-thumbnail img {
    transform: scale(1.08);

    filter:
        saturate(1.1)
        contrast(1.04);
}

/* Rank */

.sfa-video-rank {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 5;

    padding: 7px 11px;

    border: 1px solid rgba(255, 227, 134, 0.42);
    border-radius: 4px;

    color: #f1d578;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;

    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(9px);
}

/* Top badge */

.sfa-video-badge {
    position: absolute;
    top: 14px;
    right: 13px;
    z-index: 5;

    max-width: 135px;
    padding: 6px 9px;

    overflow: hidden;
    border-radius: 3px;

    color: #fff;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;

    background:
        linear-gradient(
            135deg,
            #b50000,
            #f00000
        );

    box-shadow:
        0 7px 20px rgba(255, 0, 0, 0.23);
}

/* Play button */

.sfa-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 6;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    border: 2px solid rgba(255, 255, 255, 0.84);
    border-radius: 50%;

    color: #fff;
    font-size: 17px;

    background:
        linear-gradient(
            135deg,
            #be0000,
            #ff0000
        );

    box-shadow:
        0 0 35px rgba(255, 0, 0, 0.36);

    transform:
        translate(-50%, -50%);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.sfa-video-play i {
    margin-left: 3px;
}

.sfa-video-card:hover
.sfa-video-play {
    transform:
        translate(-50%, -50%)
        scale(1.13);

    box-shadow:
        0 0 45px rgba(255, 0, 0, 0.5);
}

/* Views badge */

.sfa-video-views {
    position: absolute;
    right: 13px;
    bottom: 13px;
    z-index: 5;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 4px;

    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;

    background: rgba(0, 0, 0, 0.73);
    backdrop-filter: blur(9px);
}

.sfa-video-views i {
    margin-right: 5px;
    color: #ef3737;
}

/* Video card content */

.sfa-video-content {
    position: relative;
    z-index: 3;

    padding: 21px 22px 23px;
}

.sfa-video-content small {
    color: #d8b64d;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sfa-video-content h3 {
    margin: 8px 0 15px;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.sfa-video-content > span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sfa-video-content > span i {
    margin-left: 7px;
    color: #dfbd55;

    transition:
        transform 0.3s ease;
}

.sfa-video-card:hover
.sfa-video-content > span i {
    transform: translateX(6px);
}

/* =====================================================
   SUBSCRIBE CTA
===================================================== */

.sfa-youtube-footer {
    position: relative;
    margin-top: 58px;
    padding: 31px 34px;

    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 23px;

    overflow: hidden;

    border: 1px solid rgba(226, 190, 80, 0.26);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(255, 0, 0, 0.16),
            transparent 27%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(212, 175, 55, 0.11),
            transparent 34%
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.047),
            rgba(255, 255, 255, 0.014)
        );

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.38);
}

.sfa-youtube-footer::after {
    content: "SUBSCRIBE";
    position: absolute;
    right: 10%;
    bottom: -26px;

    color: rgba(255, 255, 255, 0.035);
    font-family: Arial, sans-serif;
    font-size: 85px;
    font-weight: 900;
    letter-spacing: 7px;
}

.sfa-youtube-footer-icon {
    position: relative;
    z-index: 2;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;

    color: #fff;
    font-size: 27px;

    background:
        linear-gradient(
            135deg,
            #b70000,
            #f40000
        );

    box-shadow:
        0 0 30px rgba(255, 0, 0, 0.25);
}

.sfa-youtube-footer > div {
    position: relative;
    z-index: 2;
}

.sfa-youtube-footer small {
    color: rgba(255, 255, 255, 0.35);
    font-size: 7px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.sfa-youtube-footer h3 {
    margin: 5px 0 0;

    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 500;
}

.sfa-youtube-footer h3 span {
    color: #dfbd55;
}

.sfa-youtube-footer > p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.43);
    font-size: 9px;
    line-height: 1.65;
}

.sfa-youtube-footer > a {
    position: relative;
    z-index: 2;

    min-height: 49px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;

    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    background:
        linear-gradient(
            135deg,
            #bd0000,
            #f00000
        );

    box-shadow:
        0 15px 32px rgba(255, 0, 0, 0.23);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.sfa-youtube-footer > a:hover {
    color: #fff;
    transform: translateY(-4px);

    background: #ff0000;

    box-shadow:
        0 22px 42px rgba(255, 0, 0, 0.36);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes sfaYoutubeScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes sfaYoutubePulse {

    0% {
        opacity: 0.65;
        transform: scale(0.86);
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .sfa-youtube-header {
        gap: 45px;
    }

    .sfa-youtube-impact {
        gap: 22px;
    }

    .sfa-youtube-impact-item {
        min-width: 120px;
    }

    .sfa-video-card {
        width: 330px;
    }
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .sfa-youtube {
        padding: 110px 0 95px;
    }

    .sfa-youtube-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sfa-youtube-channel {
        width: 100%;
        max-width: 520px;
    }

    .sfa-youtube-impact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 15px;
    }

    .sfa-youtube-impact-divider {
        display: none;
    }

    .sfa-youtube-footer {
        grid-template-columns: auto 1fr;
    }

    .sfa-youtube-footer > p {
        grid-column: 1 / -1;
    }

    .sfa-youtube-footer > a {
        grid-column: 1 / -1;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 700px) {

    .sfa-youtube {
        padding: 90px 0 85px;
    }

    .sfa-youtube::before {
        top: 70px;
        font-size: 64px;
        letter-spacing: 5px;
    }

    .sfa-youtube-container {
        padding: 0 20px;
    }

    .sfa-youtube-heading h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .sfa-youtube-heading > p {
        font-size: 11px;
    }

    .sfa-youtube-channel {
        padding: 18px;
        grid-template-columns: auto 1fr;
    }

    .sfa-youtube-logo {
        width: 51px;
        height: 51px;
        font-size: 23px;
    }

    .sfa-channel-arrow {
        display: none;
    }

    .sfa-youtube-impact {
        width: 100%;
        margin-bottom: 42px;
        padding: 23px 12px;
    }

    .sfa-youtube-impact-item {
        min-width: 0;
    }

    .sfa-youtube-impact-item strong {
        font-size: 28px;
    }

    .sfa-youtube-impact-item span {
        font-size: 6px;
        letter-spacing: 0.9px;
    }

    .sfa-youtube-fade {
        width: 38px;
    }

    .sfa-youtube-group {
        gap: 15px;
        padding-right: 15px;
    }

    .sfa-video-card {
        width: 290px;
    }

    .sfa-video-thumbnail {
        height: 164px;
    }

    .sfa-video-play {
        width: 51px;
        height: 51px;
        font-size: 15px;
    }

    .sfa-video-badge {
        max-width: 110px;
    }

    .sfa-youtube-track {
        animation-duration: 62s;
    }

    .sfa-youtube-footer {
        margin-top: 42px;
        padding: 27px 20px;

        grid-template-columns: 1fr;
        text-align: center;
    }

    .sfa-youtube-footer-icon {
        margin: auto;
    }

    .sfa-youtube-footer > p,
    .sfa-youtube-footer > a {
        grid-column: auto;
    }

    .sfa-youtube-footer::after {
        right: 50%;
        font-size: 48px;
        transform: translateX(50%);
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .sfa-youtube-heading h2 {
        font-size: 38px;
    }

    .sfa-video-card {
        width: 270px;
    }

    .sfa-video-thumbnail {
        height: 153px;
    }

    .sfa-channel-info > strong {
        font-size: 11px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .sfa-youtube-track,
    .sfa-youtube-logo::after {
        animation: none;
    }
}