.bm-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.bm-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    line-height: normal;
    transition: opacity var(--bm-hero-trans, 800ms) ease;
    pointer-events: none;
    z-index: 1;
}

.bm-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.bm-hero-wrapper {
    height: 85vh;
}

.bm-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 60, 20, 0.55);
    z-index: 1;
}

.bm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    width: 100%;
}

.bm-hero-title {
    color: #ffffff;
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bm-hero-subtitle {
    color: #ffffff;
    margin: 0 0 32px;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.bm-hero-btn {
    display: inline-block;
    padding: 14px 36px;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
    letter-spacing: 0.03em;
}

.bm-hero-btn:hover {
    background-color: #ffffff;
    color: #1a3a1a;
    transform: translateY(-2px);
    text-decoration: none;
}

.bm-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: rgba(0,0,0,0.3);
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.bm-hero-arrow:hover {
    background: rgba(0,0,0,0.55) !important;
    transform: translateY(-50%) scale(1.1);
}

.bm-hero-arrow svg {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.bm-hero-prev { left: 24px; }
.bm-hero-next { right: 24px; }

.bm-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.bm-hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.bm-hero-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .bm-hero-wrapper,
    .bm-hero-slide {
        height: 400px;
    }
    .bm-hero-arrow { width: 38px; height: 38px; }
    .bm-hero-arrow svg { width: 18px; height: 18px; }
    .bm-hero-prev { left: 10px; }
    .bm-hero-next { right: 10px; }
    .bm-hero-content { padding: 0 16px; }
}
