.panaflex-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.panaflex-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.panaflex-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panaflex-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.panaflex-hero-bg {
    position: absolute;
    inset: 0;
}

.panaflex-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panaflex-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.panaflex-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.panaflex-hero-title {
    margin: 0 0 16px 0;
    line-height: 1.1;
    font-weight: 700;
}

.panaflex-hero-subtitle {
    margin: 0 0 30px 0;
    line-height: 1.5;
    font-weight: 400;
}

.panaflex-hero-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.panaflex-hero-content[style*="text-align: center"] .panaflex-hero-btn,
.panaflex-hero-content[style*="align-items: center"] .panaflex-hero-btn {
    align-self: center;
}

.panaflex-hero-content[style*="text-align: right"] .panaflex-hero-btn,
.panaflex-hero-content[style*="align-items: right"] .panaflex-hero-btn {
    align-self: flex-end;
}

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

.panaflex-hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.panaflex-hero-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .panaflex-hero-dots {
        bottom: 20px;
    }
}
