/* Global overflow fix */
html,
body {
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

/* --- SURPRISE NEW MODERN HERO --- */
.home-hero {
    position: relative;
    background-color: #050505;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-bottom: 120px;
    /* Space for the bridge anchor */
    padding-top: 60px;
}

/* Dynamic floating background orbs for dark mode style */
.hero-orb-1,
.hero-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.5;
    animation: hero-float-orbs 10s infinite alternate ease-in-out;
    pointer-events: none;
}

.hero-orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--primary-red), transparent 70%);
    top: -10vw;
    right: -10vw;
}

.hero-orb-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, #ff4444, transparent 70%);
    bottom: -10vw;
    left: -10vw;
    animation-delay: -5s;
}

/* Background element for parallax effect - Darkened */
.hero-bg-parallax {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/backgrounds/bg1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    opacity: 0.15;
    /* Subdued image to let text pop */
    will-change: transform;
    mix-blend-mode: overlay;
}

/* Grid layout for the new hero */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-text-col {
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-visual-col {
    animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.hero-text-col h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-text-col h1 .accent {
    color: var(--primary-red);
    display: block;
    text-shadow: 0 0 35px rgba(219, 0, 11, 0.4);
}

.hero-text-col p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 520px;
}

.hero-btns-new {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    position: relative;
    background: var(--primary-red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(219, 0, 11, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-red);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(219, 0, 11, 0.5);
    color: #fff;
    background: #ff1a1a;
}

.hero-btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-5px);
    color: #fff;
}

/* Glass visual content layout */
.hero-glass-visual {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card-main {
    width: 300px;
    height: 400px;
    background-image: url('../images/backgrounds/bg1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: hero-float-slow 6s infinite ease-in-out;
}

.glass-card-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
}

.glass-card-main-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    color: #fff;
}

.glass-card-main-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.glass-card-main-content p {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 700;
    margin: 0;
}

.glass-badge-1,
.glass-badge-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px 25px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.glass-badge-1 {
    top: 5%;
    right: 0;
    animation: hero-float-slow 5s infinite reverse ease-in-out;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.glass-badge-2 {
    bottom: 15%;
    left: -5%;
    animation: hero-float-slow 7s infinite ease-in-out;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.glass-badge-1 i {
    font-size: 2.2rem;
    color: #ffca28;
}

.glass-badge-1 div {
    display: flex;
    flex-direction: column;
}

.glass-badge-1 strong {
    font-size: 1.2rem;
    font-weight: 800;
}

.glass-badge-1 span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.badge-avatar-stack {
    display: flex;
}

.badge-avatar-stack .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    border: 2px solid #222;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    z-index: 10;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    /* updated to fit dark theme */
    animation: hero-bounce 2s infinite;
}

@keyframes hero-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@keyframes hero-float-orbs {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(40px, -40px);
    }
}

@keyframes hero-float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 991px) {
    .home-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-col p {
        margin: 0 auto 30px;
    }

    .hero-btns-new {
        justify-content: center;
    }

    .hero-glass-visual {
        display: none;
        /* keep it clean on mobile */
    }
}


/* 
           THE SEAMLESS BRIDGE 
        */
.bridge-anchor {
    position: relative;
    width: 100%;
    z-index: 50;
    /* Pull the bridge up slightly, but not so much that it overlaps main content */
    margin-top: -12vh;
}

.floating-feature-box {
    max-width: 1100px;
    width: calc(100% - 40px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(var(--grid-cols, 3), 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.feature-col {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    /* Allow shadows and updrawn content to be visible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 240px;
}

/* Live & Event Story Specific Styles */
.feature-col.live-story,
.feature-col.event-story {
    padding: 0;
    background: #000;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.feature-col.live-story {
    border: 2px solid var(--primary-red);
}

.feature-col.event-story {
    border: 2px solid #004085;
}

.live-media-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.live-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s;
}

.feature-col.live-story:hover .live-media,
.feature-col.event-story:hover .live-media {
    transform: scale(1.05);
    opacity: 1;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(219, 0, 11, 0.5);
}

.live-badge.blinking {
    animation: live-blink 1.5s infinite;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

@keyframes live-blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.live-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6) 50%, transparent);
    text-align: left;
    z-index: 5;
}

.live-overlay-content h4 {
    color: #fff !important;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.live-overlay-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.live-manage-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
    opacity: 0;
    transition: 0.3s;
    z-index: 15;
}

.feature-col.live-story:hover .live-manage-btn,
.feature-col.event-story:hover .live-manage-btn {
    opacity: 1;
}

.live-manage-btn:hover {
    background: var(--primary-red);
}

.feature-col::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-col:hover::before {
    transform: scaleX(1);
}

/* Side cards hover */
.floating-feature-box .feature-col:not(.live-story):not(.event-story):hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Live/Event Card Prominence - Using variables to prevent JS/CSS fight */
.floating-feature-box .feature-col.live-story,
.floating-feature-box .feature-col.event-story {
    z-index: 20;
    --scroll-y: -80px;
    --hover-y: 0px;
    transform: translateY(calc(var(--scroll-y) + var(--hover-y)));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.4s ease;
}

.floating-feature-box .feature-col.live-story {
    border-color: rgba(219, 0, 11, 0.2);
}

.floating-feature-box .feature-col.event-story {
    border-color: rgba(0, 64, 133, 0.2);
}

.floating-feature-box .feature-col.live-story:hover,
.floating-feature-box .feature-col.event-story:hover {
    --hover-y: -15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991px) {
    .floating-feature-box {
        position: relative;
        transform: none !important;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 0;
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    .bridge-anchor {
        height: auto;
        margin-top: -30px;
    }

    .floating-feature-box .feature-col.live-story,
    .floating-feature-box .feature-col.event-story {
        transform: none !important;
        order: -1;
    }

    .floating-feature-box .feature-col:hover {
        transform: translateY(-5px) !important;
    }
}

.feature-col>i {
    display: none;
}

.feature-col-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(219, 0, 11, 0.25);
    transition: transform 0.3s;
}

.feature-col:hover .feature-col-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.feature-col p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 0;
}

.feature-btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: none;
    transition: all 0.3s;
}

.feature-btn-3d:hover {
    background: #111;
    color: #fff;
    transform: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-btn-3d.red {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 6px 15px rgba(219, 0, 11, 0.25);
}

.feature-btn-3d.red:hover {
    background: #ff1a1a;
    box-shadow: 0 8px 20px rgba(219, 0, 11, 0.35);
}

/* ============================================= */
/*  SHORTS / ERBJUDANDEN SECTION                 */
/* ============================================= */
.shorts-section-dark {
    padding: 80px 0 80px;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    /* Optional space between the bridge and this section */
}

.bridge-spacer {
    height: 160px;
    background: transparent;
}

@media (max-width: 991px) {
    .shorts-section-dark {
        padding: 80px 0 60px;
        margin-top: 20px;
    }

    .bridge-spacer {
        height: 40px;
    }
}

.shorts-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(219, 0, 11, 0.08), transparent 60%);
    pointer-events: none;
}

.shorts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Section header — default is dark text for light backgrounds */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111;
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(219, 0, 11, 0.4);
}

.section-header p {
    margin-top: 25px;
    font-size: 1.05rem;
    color: #666;
}

/* White text override for dark-background sections */
.section-header.on-dark h2 {
    color: #fff;
}

.section-header.on-dark h2::after {
    box-shadow: 0 0 20px rgba(219, 0, 11, 0.6);
}

.section-header.on-dark p {
    color: rgba(255, 255, 255, 0.5);
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
}

.short-card-lg {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.short-card-lg:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 25px 50px rgba(219, 0, 11, 0.2), 0 0 0 1px var(--primary-red);
}

.short-media-lg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: 0.5s;
}

.short-card-lg:hover .short-media-lg {
    opacity: 1;
}

.kampanj-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(219, 0, 11, 0.4);
    backdrop-filter: blur(4px);
}


/* SHORTS MODAL (Reimagined Gallery Style) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: transparent;
    width: auto;
    height: 90vh;
    max-width: 95vw;
    display: flex;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-media-container {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.modal-media-container img,
.modal-media-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Elegant Overlay for Info */
.modal-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
    z-index: 10;
    pointer-events: none;
}

.modal-info-overlay .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.modal-info-overlay .avatar {
    width: 36px;
    height: 36px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(219,0,11,0.3);
}

.modal-info-overlay h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.modal-info-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 400px;
}

/* Floating Navigation Controls */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10005;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.modal-nav-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(219,0,11,0.6);
}

.modal-nav-btn.prev { left: 20px; }
.modal-nav-btn.next { right: 20px; }

.modal-close-v3 {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10006;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.modal-close-v3:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(90deg) scale(1.1);
}


@media (max-width: 1250px) {
    .modal-nav-btn.prev { left: 20px; }
    .modal-nav-btn.next { right: 20px; }
    .modal-close-v3 { right: 20px; top: 20px; }
}

@media (max-width: 768px) {
    .modal-content { height: 85vh; border-radius: 0; width: 100vw; max-width: 100vw; }
    .modal-nav-btn { display: none; } /* On mobile swipe might be better or tap sides */
    .modal-info-overlay { padding: 30px 20px 20px; }
}

.comment-username {
    font-weight: 700;
    font-size: 0.85rem;
    color: #262626;
    margin-bottom: 2px;
    display: block;
}

.comment-text {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

.comment-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 4px;
    display: block;
}

/* Comment slide-down animation */
.comment-item.new-comment {
    animation: slideDown 0.4s ease-out forwards;
    overflow: hidden;
    transform-origin: top;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        max-height: 100px;
        transform: translateY(0);
    }
}

.comment-success-msg {
    background: #f8f9fa;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #efefef;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-actions {
    padding: 15px 20px;
    border-top: 1px solid #efefef;
}

.action-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #262626;
    transition: transform 0.1s;
}

.action-btn:active {
    transform: scale(0.9);
}

.action-btn.liked {
    color: #ed4956;
    animation: likePulse 0.3s;
}

@keyframes likePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.likes-count {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.modal-comment-input-area {
    padding: 15px 20px;
    border-top: 1px solid #efefef;
    background: #fff;
}

.comment-input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 8px 16px;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.comment-input-wrapper:focus-within {
    background: #fff;
    border-color: #dee2e6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comment-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    padding: 8px 0;
    resize: none;
    max-height: 120px;
    font-family: inherit;
    line-height: 1.4;
    color: #262626;
}

.comment-input::placeholder {
    color: #8e8e8e;
    font-weight: 400;
}

.post-btn {
    background: none;
    border: none;
    color: var(--primary-red);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 8px 4px;
    opacity: 0.4;
    transition: all 0.2s;
    white-space: nowrap;
}

.post-btn.active {
    opacity: 1;
    transform: scale(1.05);
}

.post-btn:active {
    transform: scale(0.95);
}

/* Spinner for loading older comments */
.comments-loader {
    display: flex;
    justify-content: center;
    padding: 15px;
    width: 100%;
}

.spinner-dots {
    display: flex;
    gap: 4px;
}

.spinner-dots div {
    width: 6px;
    height: 6px;
    background: #adb5bd;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.spinner-dots div:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner-dots div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    to {
        opacity: 0.3;
        transform: translateY(-4px);
    }
}


/* ========================================== */
/*  STATS COUNTER SECTION                     */
/* ========================================== */
.stats-section {
    padding: 80px 20px;
    background: #111;
    color: #fff;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 180px;
    flex: 1;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    margin-top: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================== */
/*  WHY XLFOOD                                */
/* ========================================== */
.why-us-section {
    padding: 130px 20px 100px;
    background: #fcfcfc;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 30px auto 60px;
    line-height: 1.7;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(219, 0, 11, 0.1), rgba(219, 0, 11, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-red);
    transition: all 0.3s;
}

.why-card:hover .why-card-icon {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================== */
/*  CATEGORY SHOWCASE                         */
/* ========================================== */
.categories-section {
    padding: 100px 20px;
    background: #fff;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 30px auto 60px;
    line-height: 1.7;
}

.category-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cat-card {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-card:hover img {
    transform: scale(1.08);
}

.cat-card:hover {
    transform: translateY(-6px);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
}

.cat-title {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.cat-btn {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-red);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.cat-card:hover .cat-btn {
    background: #fff;
    color: #111;
}

/* ========================================== */
/*  HOW IT WORKS                              */
/* ========================================== */
.how-it-works-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
}

.how-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 30px auto 60px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(219, 0, 11, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(219, 0, 11, 0.3);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    color: rgba(0, 0, 0, 0.15);
    font-size: 1.3rem;
}

/* ========================================== */
/*  TESTIMONIALS                              */
/* ========================================== */
.testimonials-section {
    padding: 100px 20px;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    color: #f5a623;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
    display: block;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #999;
    display: block;
}

/* ========================================== */
/*  CTA FULLWIDTH                             */
/* ========================================== */
.cta-fullwidth {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.cta-fw-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-fw-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-fw-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-fw-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-fw-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(219, 0, 11, 0.4);
}

.cta-fw-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(219, 0, 11, 0.5);
    background: #ff1a1a;
}

.cta-fw-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.cta-fw-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ========================================== */
/*  LOCATION SECTION                          */
/* ========================================== */
.location-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-detail-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.location-detail-item strong {
    display: block;
    font-weight: 700;
    color: #111;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.location-detail-item span {
    color: #666;
    font-size: 0.95rem;
}

.location-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(219, 0, 11, 0.3);
}

.location-map-btn:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
}

.location-map {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========================================== */
/*  MOBILE RESPONSIVE (≤991px)                */
/* ========================================== */
@media (max-width: 991px) {

    /* Floating Bridge */
    .floating-feature-box {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -40px auto 40px;
        padding: 0 15px;
        width: 100%;
    }

    .bridge-anchor {
        height: auto;
    }

    /* Shorts Carousel */
    .shorts-carousel {
        gap: 12px;
    }

    .short-card-lg {
        min-width: 200px;
        height: 320px;
    }

    /* Shorts Modal (Legacy removed) */


    /* Stats */
    .stats-section {
        padding: 50px 15px;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: auto;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Why Us — Stack to single column */
    .why-us-section {
        padding: 50px 15px;
    }

    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .why-card {
        padding: 30px 20px;
    }

    /* Categories — Stack to single column */
    .categories-section {
        padding: 50px 15px;
    }

    .category-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .cat-card {
        height: 220px;
        min-height: auto;
    }

    /* How it works */
    .how-it-works-section {
        padding: 50px 15px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        width: 100%;
        max-width: none;
        padding: 30px 20px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 50px 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-top: 30px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    /* CTA */
    .cta-fullwidth {
        padding: 50px 15px;
    }

    .cta-fw-content h2 {
        font-size: 1.6rem;
    }

    .cta-fw-content p {
        font-size: 0.95rem;
    }

    .cta-fw-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-fw-btn-primary,
    .cta-fw-btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    /* Location */
    .location-section {
        padding: 50px 15px;
    }

    .location-container {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .location-map {
        height: 280px;
        border-radius: 12px;
    }

    .location-info .section-header {
        text-align: center !important;
    }

    /* Subtitles */
    .why-us-subtitle,
    .categories-subtitle,
    .how-subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
        margin: 20px auto 40px;
    }
}

/* Smaller Mobile (≤576px) */
@media (max-width: 576px) {
    .stats-section {
        padding: 40px 15px;
    }

    .why-us-section {
        padding: 40px 15px;
    }

    .categories-section {
        padding: 40px 15px;
    }

    .how-it-works-section {
        padding: 40px 15px;
    }

    .testimonials-section {
        padding: 40px 15px;
    }

    .cta-fullwidth {
        padding: 40px 15px;
    }

    .location-section {
        padding: 40px 15px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .step-number {
        font-size: 3rem;
        right: 10px;
    }

    .cat-card {
        height: 180px;
    }
}

/* ============================================= */
/*  NEW REIMAGINED HERO V2 (Split Layout)      */
/* ============================================= */
.home-hero-v2 {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 100px;
}

.home-hero-v2 .hero-bg-parallax {
    position: absolute;
    inset: 0;
    background-image: url('../images/backgrounds/hero_v2_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
    mix-blend-mode: normal;
    /* Removed overlay blending for clear image */
    pointer-events: none;
}

.hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    z-index: 5;
    pointer-events: none;
}

.hero-container-v2 {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* Animations */
@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-text-side {
    animation: heroReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-newsletter-side {
    animation: heroReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(219, 0, 11, 0.1);
    color: var(--primary-red);
    border: 1px solid rgba(219, 0, 11, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-text-side h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-text-side h1 .accent {
    color: var(--primary-red);
    text-shadow: 0 0 40px rgba(219, 0, 11, 0.3);
}

.hero-text-side p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero-btns-v2 {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--primary-red);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(219, 0, 11, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(219, 0, 11, 0.5);
    background: #ff1a1a;
    color: #fff;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-5px);
    color: #fff;
}

/* NEWSLETTER CARD */
.newsletter-glass-card {
    background: #fff;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.nl-card-header {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #ff4d4d);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(219, 0, 11, 0.4);
    flex-shrink: 0;
}

.header-text h3 {
    color: #111;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.header-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Form Styles */
.hero-nl-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.nl-input-wrapper {
    position: relative;
    width: 100%;
}

.nl-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.1rem;
}

.nl-input-wrapper input {
    width: 100%;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 18px 20px 18px 55px;
    color: #111;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.nl-input-wrapper input:focus {
    background: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(219, 0, 11, 0.05);
}

.btn-nl-v2 {
    width: 100%;
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s;
}

.btn-nl-v2:hover {
    background: #ff1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(219, 0, 11, 0.3);
}

.btn-nl-v2 i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-nl-v2:hover i {
    transform: translateX(5px);
}

/* Response Message */
.nl-response-msg {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0 5px;
    display: none;
}

.nl-response-msg.success {
    color: #4ade80;
    display: block;
}

.nl-response-msg.error {
    color: #f87171;
    display: block;
}

/* Card Footer */
.nl-card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.trust-avatars {
    display: flex;
}

.t-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background-size: cover;
    margin-left: -10px;
}

.t-avatar:first-child {
    margin-left: 0;
}

.t-count {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid #1a1a1a;
}

.nl-card-footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 500;
}

/* Scroll down indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.scroll-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff;
    animation: scrollSlide 2s infinite cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes scrollSlide {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container-v2 {
        gap: 40px;
    }

    .hero-text-side h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .home-hero-v2 {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-container-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-side p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns-v2 {
        justify-content: center;
    }

    .hero-features-mini {
        justify-content: center;
    }

    .newsletter-glass-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
    }

    .hero-scroll-down {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-text-side h1 {
        font-size: 2.5rem;
    }

    .hero-btns-v2 {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Modal Thumbnails Gallery Strip */
.modal-thumbnails-wrapper {
    position: absolute;
    bottom: 120px; /* Above description overlay roughly */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 15;
    pointer-events: none;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
    pointer-events: all;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.modal-thumbnails::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

.thumb-item {
    width: 60px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.thumb-item img, .thumb-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover {
    transform: translateY(-5px);
    opacity: 1;
    border-color: rgba(255,255,255,0.5);
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--primary-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(219,0,11,0.4);
}

@media (max-width: 768px) {
    .modal-thumbnails-wrapper { bottom: 100px; width: 100%; }
    .thumb-item { width: 40px; height: 60px; }
}