/* ============================================
   PROFESSIONAL HERO SECTION
   Modern, Elegant, Mobile-First Design
   ============================================ */

/* === HERO CONTAINER === */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === BACKGROUND SLIDES === */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* === OVERLAY === */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* === CONTENT === */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* === TEXT STYLING === */
.hero-text {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* === BUTTONS === */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #dc143c 0%, #ff0000 100%);
    color: #ffffff;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #ff0000 0%, #dc143c 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
    color: #ffffff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* === SLIDE INDICATORS === */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.9);
}

.indicator.active {
    background: #ffffff;
    border-color: #ffffff;
    width: 40px;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */
@media only screen and (max-width: 991px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-btn {
        padding: 16px 40px;
        font-size: 15px;
    }

    .hero-indicators {
        bottom: 30px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */
@media only screen and (max-width: 767px) {
    .hero-section {
        height: 100vh;
        min-height: 550px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-text {
        margin-bottom: 35px;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 35px;
        font-size: 14px;
    }

    .hero-indicators {
        bottom: 25px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 30px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================ */
@media only screen and (max-width: 480px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-btn {
        padding: 14px 30px;
        font-size: 13px;
    }

    .hero-indicators {
        bottom: 20px;
    }
}

/* === ANIMATION ON LOAD === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-indicators {
    animation: fadeInUp 0.8s ease-out 1s both;
}