/* OCS Elementor Post Hero Slider Section Styles */

.ocs-hero-swiper-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ocs-hero-swiper-container {
    width: 100%;
    height: 560px;
    position: relative;
    border-radius: 20px;
}

.ocs-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ocs-hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 6s ease;
}

.swiper-slide-active .ocs-hero-slide-bg {
    transform: scale(1.05);
}

.ocs-hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(105deg, rgba(175, 40, 20, 0.93) 0%, rgba(35, 20, 25, 0.82) 48%, rgba(0, 0, 0, 0.25) 100%);
}

.ocs-hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 580px;
    padding: 60px 0 60px 70px;
    color: #FFFFFF;
}

.ocs-hero-slide-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.ocs-hero-slide-title {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ocs-hero-slide-title .highlight {
    color: #FF8F50;
}

.ocs-hero-slide-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 32px 0;
    padding-left: 14px;
    border-left: 3px solid #FF6B35;
}

.ocs-hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF6B35 0%, #E84A1A 100%);
    color: #FFFFFF !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.ocs-hero-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.6);
}

/* Custom Swiper Navigation Buttons */
.ocs-hero-nav-prev,
.ocs-hero-nav-next {
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #1F2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10 !important;
    transition: all 0.3s ease;
}

.ocs-hero-nav-prev::after,
.ocs-hero-nav-next::after {
    display: none !important;
}

.ocs-hero-nav-prev {
    left: 20px !important;
}

.ocs-hero-nav-next {
    right: 20px !important;
}

.ocs-hero-nav-prev:hover,
.ocs-hero-nav-next:hover {
    background: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Custom Swiper Pagination Dots */
.ocs-hero-pagination {
    bottom: 25px !important;
    left: 70px !important;
    width: auto !important;
    text-align: left !important;
    z-index: 10 !important;
}

.ocs-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.ocs-hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background: #FF6B35;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ocs-hero-swiper-container {
        height: 480px;
    }
    .ocs-hero-slide-content {
        padding: 40px 0 40px 40px;
        max-width: 80%;
    }
    .ocs-hero-slide-title {
        font-size: 2.2rem;
    }
    .ocs-hero-pagination {
        left: 40px !important;
    }
}

@media (max-width: 640px) {
    .ocs-hero-swiper-container {
        height: 440px;
    }
    .ocs-hero-slide-content {
        padding: 30px 20px;
        max-width: 100%;
    }
    .ocs-hero-slide-title {
        font-size: 1.65rem;
    }
    .ocs-hero-slide-excerpt {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .ocs-hero-nav-prev,
    .ocs-hero-nav-next {
        width: 38px !important;
        height: 38px !important;
    }
    .ocs-hero-pagination {
        left: 20px !important;
    }
}
