/* ========== HERO SLIDER SECTION STYLES ========== */

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    background: var(--bg-light);
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--bg-light);
}

.slide-active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-overlay h2 {
    font-size: var(--font-size-3xl);
    margin: 0 0 var(--space-md) 0;
    color: white;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.6);
    display: none;
}

.slide-overlay p {
    font-size: var(--font-size-large);
    margin: 0;
    color: var(--secondary-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.6);
    display: none;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 153, 51, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 20;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slider-prev {
    left: var(--space-xl);
}

.slider-next {
    right: var(--space-xl);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--secondary-color);
    width: 32px;
    border-radius: 6px;
}

/* ========== HERO SECTION STYLES ========== */


.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.carousel-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--bg-light);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(43, 65, 28, 0.2) 0%,
        rgba(43, 65, 28, 0.1) 50%,
        rgba(255, 153, 51, 0.05) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-content {
    color: var(--text-white);
    z-index: 10;
    animation: slideUp 0.8s ease-out;
}

.carousel-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    color: var(--text-white);
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.carousel-content p {
    font-size: var(--font-size-large);
    color: var(--secondary-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Carousel Buttons */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 153, 51, 0.8);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    z-index: 20;
}

.carousel-btn:hover {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: var(--space-xl);
}

.carousel-btn.next {
    right: var(--space-xl);
}

/* Carousel Dots */

.carousel-dots {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.carousel-dot.active {
    background-color: var(--secondary-color);
    width: 32px;
    border-radius: 6px;
}

/* Scroll Hint */

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-white);
    z-index: 20;
    animation: bounce 2s infinite;
}

.hero-scroll-hint p {
    margin-bottom: var(--space-sm);
    color: var(--text-white);
}

.hero-scroll-hint i {
    display: block;
    font-size: var(--font-size-large);
}

/* ========== STATS BANNER ========== */

.stats-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: var(--space-2xl) var(--space-lg);
    color: var(--text-white);
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    display: block;
}

.stat-label {
    font-size: var(--font-size-small);
    opacity: 0.95;
    color: var(--text-white);
}

/* ========== INTRODUCTION SECTION ========== */

.introduction {
    padding: var(--space-2xl) var(--space-lg);
    background-color: var(--bg-white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.intro-image {
    order: -1;
}

.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.intro-text > p {
    margin-bottom: var(--space-md);
}

.achievement-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.achievement-list li {
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm);
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    font-size: var(--font-size-small);
}

.achievement-list li:hover {
    background-color: var(--border-color);
    transform: translateX(4px);
}

.intro-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    min-height: 350px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.intro-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.intro-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    color: var(--text-white);
    text-align: center;
}

.intro-image-placeholder i {
    font-size: var(--font-size-3xl);
    opacity: 0.8;
}

.intro-image-placeholder p {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 500;
    opacity: 0.95;
    color: var(--text-white);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter var(--transition-normal);
}

.intro-image:hover img {
    filter: grayscale(0%);
}

/* ========== ANIMATIONS ========== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
