/* === HERO SLIDER === */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    background: rgb(62 28 28 / 48%);
    padding: 30px 50px 30px 40px;
    border-radius: 4px;
}

.hero-slide-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-slide-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    font-size: 15px;
    padding: 12px 30px;
    background-color: #e31937;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #c41530;
    color: #ffffff;
}

/* Swiper Controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #ffffff;
    background-color: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background-color: #e31937;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: #e31937;
    width: 30px;
    border-radius: 6px;
}

/* === HERO with placeholder (no image) === */
.hero-slide-placeholder {
    height: 100vh;
    background: linear-gradient(135deg, #494949 0%, #222222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-placeholder .hero-slide-content {
    text-align: center;
    max-width: 700px;
}
