/* =============================================
   Hero Slider Section - Modern Design
============================================= */
.hero-slider-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease-out;
    animation: slideZoom 10s ease-out forwards;
}

.hero-slide.active .slide-bg {
    transform: scale(1.15);
}

@keyframes slideZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Slider Navigation Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: rgba(188, 82, 31, 0.9);
    border-color: #bc521f;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(188, 82, 31, 0.4);
}

.hero-slider-prev {
    right: 30px;
}

.hero-slider-next {
    left: 30px;
}

/* Gradient Overlay (Radial + Blur) */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center,
            rgba(23, 58, 80, 0.75) 0%,
            rgba(23, 58, 80, 0.82) 40%,
            rgba(30, 50, 70, 0.88) 70%,
            rgba(23, 58, 80, 0.92) 100%);
    backdrop-filter: blur(3px);
}

.hero-gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%,
            rgba(188, 82, 31, 0.15) 0%,
            transparent 50%);
}

/* Animated Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    width: 5px;
    height: 5px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    width: 12px;
    height: 12px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 25s;
}

.particle:nth-child(4) {
    width: 6px;
    height: 6px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    width: 10px;
    height: 10px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 23s;
}

.particle:nth-child(6) {
    width: 4px;
    height: 4px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 19s;
}

.particle:nth-child(7) {
    width: 7px;
    height: 7px;
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 21s;
}

.particle:nth-child(8) {
    width: 9px;
    height: 9px;
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 24s;
}

.particle:nth-child(9) {
    width: 5px;
    height: 5px;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 17s;
}

.particle:nth-child(10) {
    width: 11px;
    height: 11px;
    left: 15%;
    animation-delay: 1.5s;
    animation-duration: 26s;
}

.particle:nth-child(11) {
    width: 6px;
    height: 6px;
    left: 85%;
    animation-delay: 3.5s;
    animation-duration: 22s;
}

.particle:nth-child(12) {
    width: 8px;
    height: 8px;
    left: 55%;
    animation-delay: 5.5s;
    animation-duration: 20s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-slider-section .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-slider-section .hero-content.content-transitioning {
    opacity: 0;
    transform: translateY(10px);
}

.hero-slider-section .hero-content h1,
.hero-slider-section .hero-content .hero-tagline {
    transition: all 0.3s ease;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(188, 82, 31, 0.9) 0%, rgba(188, 82, 31, 0.7) 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    color: #ffc107;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(188, 82, 31, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(188, 82, 31, 0.2);
    }
}

/* Hero Title (Smaller) */
.hero-slider-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.hero-tagline {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.9;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Buttons */
.hero-slider-section .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Glass Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Hero Quick Stats */
.hero-quick-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.quick-stat {
    text-align: center;
    position: relative;
    padding: 0 25px;
}

.quick-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 40px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #bc521f;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-txt {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-dots .slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dots .slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-slider-dots .slider-dot.active {
    background: #bc521f;
    border-color: #fff;
    transform: scale(1.2);
}

/* Scroll Indicator Enhanced */
.hero-slider-section .scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollBounce 2s infinite;
}

.scroll-text {
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.8;
    color: #fff;
}

.hero-slider-section .scroll-indicator i {
    font-size: 1.5rem;
    color: #fff;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Fixed Social Media Icons */
.fixed-social-icons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-social-icons a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(23, 58, 80, 0.9) 0%, rgba(65, 67, 66, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fixed-social-icons a:hover {
    transform: translateX(5px) scale(1.1);
    background: linear-gradient(135deg, #bc521f 0%, #a04418 100%);
    box-shadow: 0 6px 20px rgba(188, 82, 31, 0.4);
}

/* Special colors for specific platforms */
.fixed-social-icons a[aria-label="Facebook"]:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0d6efd 100%);
}

.fixed-social-icons a[aria-label="Twitter"]:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8ddb 100%);
}

.fixed-social-icons a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 100%);
}

.fixed-social-icons a[aria-label="WhatsApp"]:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider-section h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-quick-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-slider-section .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-quick-stats {
        gap: 20px;
    }

    .quick-stat {
        padding: 0 15px;
    }

    .quick-stat:not(:last-child)::after {
        display: none;
    }

    .fixed-social-icons {
        left: 10px;
    }

    .fixed-social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-slider-dots {
        bottom: 100px;
    }

    .hero-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hero-slider-prev {
        right: 15px;
    }

    .hero-slider-next {
        left: 15px;
    }
}