/* ====================================
   Hero Slider - Full Screen Modern
   Immersive Full-Height Hero Section
   ==================================== */

/* Main Container */
.hero-modern-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

/* Hero Slide */
.hero-slide-modern {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(67 17 169 / 34%) 0%, rgb(93 43 196 / 0%) 100%);
    z-index: 1;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: float-particle 8s ease-in-out infinite;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation: float-particle 10s ease-in-out infinite 2s;
}

.particle-3 {
    top: 40%;
    right: 15%;
    animation: float-particle 12s ease-in-out infinite 4s;
}

.particle-4 {
    bottom: 30%;
    left: 70%;
    animation: float-particle 9s ease-in-out infinite 1s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 20px) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) scale(1.2);
        opacity: 0.8;
    }
}

/* Content Container */
.hero-content-modern {
    position: relative;
    z-index: 3;
    padding: 40px 20px;
}

/* Badge */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 32px;
}

.badge-dot-hero {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-hero 2s ease-in-out infinite;
}

@keyframes pulse-hero {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.badge-text-hero {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Main Title */
.hero-title-fullscreen {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 24px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* Subtitle */
.hero-subtitle-fullscreen {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.hero-actions-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #ffffff;
    color: #4311a9;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #4311a9;
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(5px);
}

[dir="rtl"] .btn-hero-primary:hover svg {
    transform: translateX(-5px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Scroll Indicator */
.scroll-indicator-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: bounce-indicator 2s ease-in-out infinite;
}

@keyframes bounce-indicator {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Decorative Elements */
.hero-decorative-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.deco-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.deco-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
    animation: rotate-shape 30s linear infinite;
}

.deco-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    animation: rotate-shape 25s linear infinite reverse;
}

.deco-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float-shape 15s ease-in-out infinite;
}

@keyframes rotate-shape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title-fullscreen {
        font-size: 60px;
    }

    .hero-subtitle-fullscreen {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hero-modern-fullscreen {
        min-height: 550px;
    }

    .hero-title-fullscreen {
        font-size: 48px;
    }

    .hero-subtitle-fullscreen {
        font-size: 17px;
        max-width: 600px;
    }

    .deco-shape.shape-1,
    .deco-shape.shape-2 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-modern-fullscreen {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content-modern {
        padding: 20px;
    }

    .hero-title-fullscreen {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-subtitle-fullscreen {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-actions-modern {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 60px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .deco-shape,
    .particle {
        display: none;
    }

    .scroll-indicator-modern {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title-fullscreen {
        font-size: 28px;
    }

    .hero-subtitle-fullscreen {
        font-size: 15px;
    }

    .hero-badge-modern {
        padding: 8px 18px;
        margin-bottom: 24px;
    }

    .badge-text-hero {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .hero-modern-fullscreen {
        height: auto;
        min-height: auto;
    }

    .hero-overlay-modern {
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-particles,
    .hero-decorative-modern,
    .scroll-indicator-modern {
        display: none;
    }
}
