/* Hero Slider Styles */
.hero-slider {
    position: relative;
    background-color: #f4f4f4;
    overflow: hidden;
    min-height: 550px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    padding: 60px 5%;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.tagline {
    color: #C3002F;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-size: 0.9rem;
}

.hero-slide h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: #C3002F;
    color: #ffffff;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(195, 0, 47, 0.6);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.hero-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: white;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Navigation Buttons */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.hero-nav-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.hero-nav-btn:hover {
    background: #C3002F;
    color: white;
    transform: scale(1.1);
}

.hero-nav-btn svg {
    stroke: currentColor;
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-indicator.active {
    background: #C3002F;
    width: 30px;
    border-radius: 6px;
}

.hero-indicator:hover {
    background: rgba(195, 0, 47, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        padding: 40px 5%;
        min-height: auto;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .hero-bg-circle {
        width: 300px;
        height: 300px;
    }
    
    .hero-image-container {
        min-height: 350px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
}