/* ============================================
   Hero Slider Styles
   ============================================ */

/* CSS Variables */
:root {
    --color-secondary: #1f2937;
    --color-secondary-dark: #111827;
}

/* Normal scroll - no effects */
html, body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

main.bg-gray-50 {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar completely */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
main.bg-gray-50::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
}

/* Normal sections - no scroll snap */
.hero-slider,
.hero-section-reel,
.reel-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

/* Hero slider and hero section - reduced height */
.hero-slider,
.hero-section-reel {
    height: 60vh;
    min-height: 60vh;
    overflow: hidden;
}

/* Regular reel sections - normal height */
.reel-section {
    height: auto;
    min-height: auto;
    overflow-y: visible;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 69vh;
    min-height: 72vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Allow interaction with slider content */
.hero-slider .slider-container,
.hero-slider .slider-wrapper,
.hero-slider .slide,
.hero-slider .slider-nav,
.hero-slider .slider-dots,
.hero-slider .slide-btn {
    pointer-events: auto;
}

/* Hero Section Reel */
.hero-section-reel {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 60vh;
    overflow: visible;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: auto;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 20px;
    right: 60px;
    z-index: 2;
    text-align: right;
    color: #fff;
    padding: 0;
    width: auto;
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.slide-content > .text-right {
    text-align: right;
    direction: rtl;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.slide-title {
    display: none;
}

.slide-subtitle {
    display: none;
}

/* Slide Text Overlay */
.slide-text-overlay {
    margin-bottom: 30px;
    text-align: right;
}

.slide-main-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 12px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-sub-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gray-100);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

/* Slide Buttons Group */
.slide-buttons-group {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Fixed Buttons (Always visible) */
.slide-buttons-group-fixed {
    position: relative;
    display: flex;
    gap: 16px;
    /* justify-content: flex-end; */
    flex-wrap: wrap;
    z-index: 10;
    margin-top: 20px;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    min-width: 160px;
    justify-content: center;
}

.slide-btn-catalog {
    background: var(--color-blue-600);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.slide-btn-catalog:hover {
    background: var(--color-blue-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.slide-btn-products {
    background: var(--color-magenta);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.slide-btn-products:hover {
    background: var(--color-pink-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5);
}

.slide-btn:hover,
.slide-btn:active {
    background: var(--color-secondary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
    .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        background: transparent;
        z-index: 2;
    }
    
    .slide-text-overlay {
        text-align: center;
        margin: 0;
        width: 100%;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        border: none;
        order: 1;
    }
    
    .slide-main-text {
        font-size: 2rem;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
        line-height: 1.3;
        margin: 0 0 12px 0;
        letter-spacing: -0.3px;
        display: block;
    }
    
    .slide-main-text .highlight {
        color: #60a5fa;
        display: inline;
    }
    
    .slide-sub-text {
        font-size: 1rem;
        font-weight: 500;
        color: #f9fafb;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
        line-height: 1.5;
        margin: 0;
        display: block;
        opacity: 0.95;
    }
    
    .slide-buttons-group-fixed {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 12px;
        margin: 0;
        width: 100%;
        padding: 0;
        order: 2;
    }
    
    .slide-buttons-group {
        justify-content: center;
        flex-direction: row;
        gap: 12px;
        width: 100%;
    }
    
    .slide-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        font-weight: 700;
        flex: 0 1 auto;
        min-width: 140px;
        max-width: none;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        white-space: nowrap;
    }
    
    .slide-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transition: left 0.5s ease;
    }
    
    .slide-btn:active::before {
        left: 100%;
    }
    
    .slide-btn-catalog {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.6), 0 2px 8px rgba(37, 99, 235, 0.4);
    }
    
    .slide-btn-catalog:active {
        transform: scale(0.98);
        box-shadow: 0 2px 12px rgba(37, 99, 235, 0.5), 0 1px 4px rgba(37, 99, 235, 0.3);
    }
    
    .slide-btn-products {
        background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
        box-shadow: 0 4px 16px rgba(236, 72, 153, 0.6), 0 2px 8px rgba(236, 72, 153, 0.4);
    }
    
    .slide-btn-products:active {
        transform: scale(0.98);
        box-shadow: 0 2px 12px rgba(236, 72, 153, 0.5), 0 1px 4px rgba(236, 72, 153, 0.3);
    }
    
    .slide-btn i {
        font-size: 1rem;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }
    
    .slide-btn:active i {
        transform: scale(1.15);
    }
    
    .slide-btn span {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-content {
        bottom: 20px;
        right: 16px;
        left: auto;
        max-width: calc(100% - 32px);
        padding: 0;
    }
    
    .slide-text-overlay {
        padding: 14px;
        margin-bottom: 20px;
        border-radius: 10px;
    }
    
    .slide-main-text {
        font-size: 1.5rem;
        font-weight: 800;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
        line-height: 1.3;
        margin: 0 0 8px 0;
    }
    
    .slide-sub-text {
        font-size: 0.95rem;
        font-weight: 600;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
        line-height: 1.5;
    }
    
    .slide-buttons-group-fixed {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
        width: 100%;
    }
    
    .slide-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        font-weight: 700;
        min-width: 170px;
        width: auto;
        border-radius: 10px;
        align-self: flex-end;
    }
    
    .slide-btn i {
        font-size: 1rem;
    }
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    right: 30px;
}

.slider-nav.next {
    left: 30px;
}

.slider-nav:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-slider {
        height: 60vh;
        min-height: 60vh;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-nav.prev {
        right: 20px;
    }
    
    .slider-nav.next {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 50vh;
        min-height: 50vh;
        max-height: none;
        z-index: 1;
        margin: 0;
        padding: 0;
        overflow: hidden;
        touch-action: pan-y;
    }
    
    .hero-slider .slider-container,
    .hero-slider .slider-wrapper,
    .hero-slider .slide {
        pointer-events: auto;
        overflow: hidden;
        touch-action: pan-y;
    }
    
    /* Hide slider when menu is open */
    body.mobile-menu-open .hero-slider {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 997;
    }
    
    body.mobile-menu-open main.bg-gray-50 {
        pointer-events: none;
    }
    
    body.mobile-menu-open main.bg-gray-50 > *:not(header) {
        opacity: 0.3;
    }
    
    .slider-container {
        width: 100%;
        height: 60vh;
        max-width: 100%;
    }
    
    .slider-wrapper {
        width: 100%;
        height: 60vh;
        max-width: 100%;
    }
    
    .slide {
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 60vh;
        max-width: 100%;
    }
    
    .slide-content {
        position: absolute;
        bottom: 49px;
        right: 7px;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        max-width: calc(105% - 80px);
        padding: 0;
        text-align: right;
        align-items: flex-end;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 14px;
        background: transparent;
        z-index: 2;
    }
    
    .slide-text-overlay {
        text-align: right;
        margin: 0;
        width: auto;
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        border: none;
    }
    
    .slide-main-text {
        font-size: 1.5rem;
        font-weight: 800;
        color: #ffffff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
        line-height: 1.3;
        margin: 0 0 8px 0;
        letter-spacing: -0.3px;
        display: block;
    }
    
    .slide-main-text .highlight {
        color: #60a5fa;
        display: inline;
    }
    
    .slide-sub-text {
        font-size: 0.875rem;
        font-weight: 500;
        color: #f9fafb;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
        line-height: 1.5;
        margin: 0;
        display: block;
        opacity: 0.95;
    }
    
    .slide-buttons-group-fixed {
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: row;
        gap: 10px;
        margin: 0;
        width: 100%;
        padding: 0;
        align-self: flex-end;
    }
    
    .slide-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        font-weight: 700;
        flex: 0 0 auto;
        min-width: auto;
        max-width: none;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        white-space: nowrap;
        width: auto;
        align-self: flex-end;
    }
    
    .slide-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .slide-btn:active::before {
        left: 100%;
    }
    
    .slide-btn-catalog {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5), 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    .slide-btn-catalog:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4), 0 2px 8px rgba(37, 99, 235, 0.2);
    }
    
    .slide-btn-products {
        background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
        box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5), 0 4px 12px rgba(236, 72, 153, 0.3);
    }
    
    .slide-btn-products:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4), 0 2px 8px rgba(236, 72, 153, 0.2);
    }
    
    .slide-btn i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }
    
    .slide-btn:active i {
        transform: scale(1.1);
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        bottom: 20px;
        z-index: 1001;
        padding: 8px 12px;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(8px);
        border-radius: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border: 2px solid rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .dot.active {
        transform: scale(1.4);
        background: #ffffff;
        border-color: #ffffff;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    
    /* No padding needed - slider is relative now */
    main.bg-gray-50 {
        padding-top: 0 !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure smooth scrolling on mobile */
    html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
}

/* Additional mobile styles for hero-slider section */
@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 60vh;
    }
    
    .slider-container {
        height: 60vh;
    }
    
    .slider-wrapper {
        height: 60vh;
    }
    
    .slide {
        height: 60vh;
    }
    
    .slide-content {
        padding: 20px 16px 20px;
    }
    
    .slide-main-text {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-sub-text {
        font-size: 0.9rem;
    }
    
    .slide-buttons-group-fixed {
        gap: 10px;
        flex-direction: row;
    }
    
    .slide-btn {
        padding: 11px 18px;
        font-size: 0.85rem;
        flex: 1;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        bottom: 16px;
        gap: 10px;
        z-index: 1001;
        padding: 8px 12px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(8px);
        border-radius: 20px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border: 2px solid rgba(255, 255, 255, 0.8);
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .dot.active {
        transform: scale(1.4);
        background: #ffffff;
        border-color: #ffffff;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    
    .slide-image::after {
        background: rgba(0, 0, 0, 0.4);
    }
    
    .slide-content {
        bottom: 40px;
        right: 7px;
        gap: 12px;
        max-width: calc(105% - 60px);
    }
    
    .slide-main-text {
        font-size: 1.375rem;
    }
    
    .slide-sub-text {
        font-size: 0.8rem;
    }
    
    .slide-buttons-group-fixed {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .slide-btn {
        padding: 9px 16px;
        font-size: 0.8rem;
        min-width: auto;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 60vh;
        min-height: 60vh;
    }
    
    .slide-content {
        padding: 18px 14px;
    }
    
    .slide-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .slide-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .slide-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Hero Section Reel Responsive */
.hero-section-reel {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.hero-section-reel .max-w-7xl {
    width: 100%;
    max-width: 1280px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-section-reel .max-w-7xl {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .hero-section-reel {
        padding: 0;
        border: none !important;
    }
    
    .hero-section-reel .max-w-7xl {
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section-reel .grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 20px;
        height: auto;
        min-height: 100%;
        justify-content: center;
        align-items: stretch;
        grid-template-columns: 1fr !important;
    }
    
    /* Hide image section on mobile */
    .hero-section-reel .grid > div:last-child {
        display: none !important;
    }
    
    /* Simplify text content */
    .hero-section-reel .space-y-6,
    .hero-section-reel .space-y-8 {
        gap: 16px !important;
    }
    
    .hero-section-reel p.text-sm {
        font-size: 0.7rem !important;
        margin-bottom: 10px !important;
        padding: 0;
    }
    
    .hero-section-reel h1 {
        font-size: 1.65rem !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
        padding: 0;
    }
    
    .hero-section-reel p.text-lg {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
        padding: 0;
    }
    
    /* Simplify buttons */
    .hero-section-reel .flex.flex-wrap.gap-4 {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-section-reel .slide-btn,
    .hero-section-reel a.inline-flex {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
        margin: 0;
    }
    
    /* Hide stats section on mobile */
    .hero-section-reel .flex.flex-wrap.gap-6.pt-4 {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-section-reel .max-w-7xl {
        padding: 0 !important;
    }
    
    .hero-section-reel .grid {
        padding: 0 16px !important;
        gap: 0 !important;
    }
    
    .hero-section-reel .space-y-6,
    .hero-section-reel .space-y-8 {
        gap: 14px !important;
    }
    
    .hero-section-reel p.text-sm {
        font-size: 0.65rem !important;
        margin-bottom: 8px !important;
    }
    
    .hero-section-reel h1 {
        font-size: 1.4rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    
    .hero-section-reel p.text-lg {
        font-size: 0.85rem !important;
        margin-bottom: 16px !important;
        line-height: 1.5 !important;
    }
    
    .hero-section-reel .flex.flex-wrap.gap-4 {
        gap: 8px !important;
    }
    
    .hero-section-reel .slide-btn,
    .hero-section-reel a.inline-flex {
        padding: 11px 18px !important;
        font-size: 0.8rem !important;
    }
}

/* Reel Sections - Fullscreen Style (only for hero section) */
.hero-section-reel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-reel > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Other reel sections - normal scroll */
.reel-section {
    display: block;
    height: auto;
    min-height: auto;
}

.reel-section > div {
    width: 100%;
    display: block;
    padding: 40px 20px;
}

.reel-section .max-w-7xl,
.reel-section .max-w-6xl {
    width: 100%;
    display: block;
    padding: 40px 20px;
}


@media (max-width: 768px) {
    .reel-section > div {
        padding: 30px 15px;
    }
    
    .reel-section .max-w-7xl,
    .reel-section .max-w-6xl {
        padding: 30px 15px;
    }
    
    /* Simplify text on mobile */
    .reel-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 16px !important;
    }
    
    .reel-section h3 {
        font-size: 1.5rem !important;
        margin-bottom: 14px !important;
    }
    
    .reel-section p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .reel-section > div {
        padding: 25px 16px;
    }
    
    .reel-section .max-w-7xl,
    .reel-section .max-w-6xl {
        padding: 25px 16px;
    }
    
    .reel-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 14px !important;
    }
    
    .reel-section h3 {
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }
    
    .reel-section p {
        font-size: 0.85rem !important;
    }
}