/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden !important;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    animation: kenburns 20s ease-out infinite alternate;
}

/* Ken Burns Effect */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 41, 40, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(41, 41, 40, 0.8) 100%);
    z-index: 1;
}

.hero-slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(221, 159, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(221, 159, 22, 0.3);
    line-height: 1.2;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dd9f16, #ffd54f, #dd9f16, transparent);
}

.hero-subtitle {
    color: #ffd54f;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    margin-top: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
    color: #e3b93b;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn span {
    position: relative;
    z-index: 2;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    color: #000000 !important;
    border: 2px solid #dd9f16;
    font-weight: 700;
}

.hero-btn-primary span {
    color: #000000 !important;
}

.hero-btn-primary:hover {
    background: linear-gradient(90deg, rgba(214,156,22,1) 20%, rgba(227,185,59,1) 40%, rgba(254,244,136,1) 70%, rgba(255,213,79,1) 100%);
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(221, 159, 22, 0.6);
    border-color: #ffd54f;
}

.hero-btn-primary:hover span {
    color: #000000 !important;
}

.hero-btn-secondary {
    background: #292928;
    color: #dd9f16;
    border: 2px solid #dd9f16;
    font-weight: 700;
}

.hero-btn-secondary:hover {
    background: #000000;
    color: #ffd54f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(221, 159, 22, 0.4);
    border-color: #ffd54f;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: #dd9f16;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #dd9f16;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    background: rgba(41, 41, 40, 0.8);
    border: 2px solid #dd9f16;
    border-radius: 50%;
    color: #dd9f16;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    border-color: #ffd54f;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(221, 159, 22, 0.5);
}

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

.hero-dot {
    width: 15px;
    height: 15px;
    background: rgba(41, 41, 40, 0.6);
    border: 2px solid #dd9f16;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(221, 159, 22, 0.5);
    border-color: #ffd54f;
    transform: scale(1.2);
}

.hero-dot.active {
    background: linear-gradient(90deg, rgba(214, 156, 22, 1) 20%, rgba(227, 185, 59, 1) 40%, rgba(254, 244, 136, 1) 70%, rgba(255, 213, 79, 1) 100%);
    border-color: #dd9f16;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(221, 159, 22, 0.5);
}

/* Animation Classes */
.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

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

@media (max-width: 768px) {
    .hero-slider-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-top: 30px;
    }

    .hero-buttons {
        gap: 20px;
        margin: 30px 0;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-feature-item {
        font-size: 1rem;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-slider-dots {
        bottom: 30px;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
    }

    .hero-dot.active {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-tagline {
        font-size: 1rem;
        margin-top: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}
