/* Hero Slider Section */
.hero-slider-section {
    background: linear-gradient(135deg, #222831 0%, #393e46 100%);
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    padding-top: 2rem;
}

.hero-slider-section .container {
    width: 100%;
}

.hero-slider-section .row {
    margin: 0;
    align-items: stretch;
}

.hero-slider-section .col-lg-7 {
    padding-right: 0.5rem;
    display: flex;
}

.hero-slider-section .col-lg-5 {
    padding-left: 0.5rem;
    display: flex;
}

/* Image Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
    flex: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 40, 49, 0.7) 0%, rgba(57, 62, 70, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-description {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

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

.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 transparent;
}

.dot.active {
    background: #ee1e46;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(238, 30, 70, 0.8);
    transform: scale(1.1);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0;
}

.hero-slider:hover .slider-nav {
    opacity: 1;
}

.slider-nav:hover {
    background: rgba(238, 30, 70, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Loading State */
.slider-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    background: linear-gradient(135deg, #222831 0%, #393e46 100%);
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ee1e46;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

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

/* Login Form Container Styles */
.login-form-container {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.login-form-wrapper {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-slider-section {
        min-height: auto;
        padding: 1.5rem 0;
        align-items: flex-start;
    }
    
    .hero-slider-section .row {
        margin: 0;
    }
    
    .hero-slider-section .col-lg-7,
    .hero-slider-section .col-lg-5 {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
    }
    
    .hero-slider {
        height: 320px;
        margin-bottom: 1rem;
    }
    
    .login-form-container {
        height: 320px;
        padding: 0;
    }
    
    .slider-loading {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-section {
        padding: 1rem 0;
    }
    
    .hero-slider-section .row {
        margin: 0;
    }
    
    .hero-slider {
        height: 280px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .login-form-container {
        height: auto;
        padding: 1rem 0;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-loading {
        height: 280px;
        font-size: 1rem;
    }
    
    .login-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        height: 240px;
    }
    
    .login-form-container {
        height: auto;
        padding: 1rem 0;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slider-loading {
        height: 240px;
    }
    
    .login-form-wrapper {
        padding: 1.5rem;
    }
}
