/* ===================================
   HERO - FINAL CLEAN VERSION
   =================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-bg-image {
    transform: scale(1.1);
    animation: kenburnsZoom 15s ease-out forwards;
}

@keyframes kenburnsZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, 2%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-particles {
    display: none;
}

/* BOTTOM POSITION - VERY LOW */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 2rem 12rem 2rem;
}

.hero-content.glass-effect {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    max-width: none;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1.2;
    font-style: normal;
}

.hero-title .highlight {
    color: #ff6b35;
    display: inline;
    font-style: normal;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.7;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.hero-content .btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: none;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-content .btn:hover {
    background: #e55a28;
    transform: translateY(-2px);
}

.hero-content .btn-secondary {
    background: transparent;
    border: none;
    color: white;
    padding: 0;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content .btn-secondary::before {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-content .btn-secondary:hover {
    color: #ff6b35;
}

.hero-content .btn-secondary:hover::before {
    background: #ff6b35;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    padding: 0.5rem;
}

.slider-btn svg {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.slider-btn:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.9));
}

/* HIDDEN DOTS */
.slider-dots {
    display: none;
}

/* SCROLL INDICATOR - SHIFTED DOWN */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 1.5s forwards, heroFloat 3s ease-in-out 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {

    /* 95% height on tablet */
    .hero-slider {
        height: 95vh;
        min-height: 500px;
    }

    .hero-content-wrapper {
        padding: 0 1.5rem 18rem 1.5rem;
    }

    .hero-content.glass-effect {
        gap: 1.25rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content .btn,
    .hero-content .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    /* Hide slider buttons on mobile */
    .slider-nav {
        display: none;
    }
}

@media (max-width: 480px) {

    /* 85% height on mobile */
    .hero-slider {
        height: 85vh;
        min-height: 450px;
    }

    .hero-content-wrapper {
        padding: 0 1rem 9rem 1rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 2.3rem);
    }
}