.slideshow-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1b3a1b 0%, #2E7D32 50%, #388e3c 100%);
}

.slideshow-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.slideshow-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.slideshow-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.slideshow-hero h1 span {
    color: #eb7118;
}

.slideshow-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.7;
}

.slideshow-hero-shape {
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 50px;
    background: #f8faf8;
}

@media (max-width: 768px) {
    .slideshow-hero {
        min-height: 35vh;
        padding: 80px 0 30px;
    }
    .slideshow-hero h1 {
        font-size: 1.8rem;
    }
}

.slideshow-section {
    padding: 0;
    background: #111;
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 40vh - 60px);
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

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

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 750px;
    padding: 40px 20px;
}

.slide-category {
    display: inline-block;
    background: rgba(46,125,50,0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.slide-content h2 span {
    color: #eb7118;
}

.slide-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 0;
}

.slide-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b3a1b 0%, #2E7D32 50%, #388e3c 100%);
}

.slide-title .slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.slide-title .slide-content h1 span {
    color: #eb7118;
}

.slide-title .slide-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.slide-stats {
    background: linear-gradient(135deg, #0d260d 0%, #1b3a1b 50%, #2E7D32 100%);
}

.slide-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.slide-stats .stat-item {
    text-align: center;
}

.slide-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #eb7118;
    line-height: 1;
    margin-bottom: 4px;
}

.slide-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.slide-quote {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.slide-quote .quote-icon {
    font-size: 3rem;
    color: rgba(46,125,50,0.3);
    margin-bottom: 16px;
    line-height: 1;
}

.slide-quote blockquote {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.slide-quote .quote-attribution {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-style: normal;
    font-weight: 400;
}

.slide-closing {
    background: linear-gradient(135deg, #1b3a1b 0%, #2E7D32 50%, #388e3c 100%);
}

.slide-closing .slide-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.slide-closing .btn-slideshow-cta {
    display: inline-block;
    background: #eb7118;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.slide-closing .btn-slideshow-cta:hover {
    background: #d45f0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(235,113,24,0.3);
}

.slideshow-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.slideshow-controls .control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 1.4rem;
    font-family: inherit;
    backdrop-filter: blur(4px);
}

.slideshow-controls .control-btn:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.25);
}

.slideshow-controls .control-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slideshow-controls .prev-btn { left: 20px; }
.slideshow-controls .next-btn { right: 20px; }

.slideshow-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.slide-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

.slide-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slide-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none;
    padding: 0;
    font-family: inherit;
}

.slide-indicators .dot:hover {
    background: rgba(255,255,255,0.6);
}

.slide-indicators .dot.active {
    background: #eb7118;
    width: 28px;
    border-radius: 5px;
}

.slide-indicators .dot.active:hover {
    background: #eb7118;
}

.slideshow-footer .auto-play-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-size: 0.85rem;
    font-family: inherit;
}

.slideshow-footer .auto-play-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.slideshow-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 4;
}

.slideshow-progress .slideshow-progress-fill {
    height: 100%;
    background: #eb7118;
    width: 0%;
    transition: width 0.1s linear;
}

@media (max-width: 768px) {
    .slideshow-container {
        height: calc(100vh - 35vh - 40px);
        min-height: 400px;
    }

    .slide-content h2 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-title .slide-content h1 {
        font-size: 2rem;
    }

    .slide-stats .stats-grid {
        gap: 16px;
    }

    .slide-stats .stat-number {
        font-size: 1.8rem;
    }

    .slide-quote blockquote {
        font-size: 1.1rem;
    }

    .slideshow-controls .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .slideshow-controls .prev-btn { left: 10px; }
    .slideshow-controls .next-btn { right: 10px; }

    .slideshow-footer {
        padding: 14px 16px;
    }

    .slide-indicators .dot {
        width: 8px;
        height: 8px;
    }

    .slide-indicators .dot.active {
        width: 20px;
    }

    .slide-closing .slide-content h2 {
        font-size: 1.6rem;
    }
}
