/* Profesyonel Züccaciye Hero Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 450px;
    }
}

.hero-slider-section .heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slider-section .hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider-section .hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-slider-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.7) 0%, rgba(153, 27, 27, 0.5) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-slider-section .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.hero-slider-section .hero-text-wrapper {
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
    width: 100%;
}

.hero-slider-section .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-slider-section .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .hero-slider-section .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-slider-section .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-slider-section .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.hero-slider-section .hero-button-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-slider-section .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    border: none;
}

.hero-slider-section .hero-btn:hover {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
    color: white;
}

.hero-slider-section .hero-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-slider-section .hero-btn:hover i {
    transform: translateX(5px);
}

.hero-slider-section .hero-btn-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-slider-section .hero-btn-secondary:hover {
    background: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.95);
    color: #dc2626 !important;
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

@media (max-width: 576px) {
    .hero-slider-section .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Navigation Buttons */
.hero-slider-section .hero-nav {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.9);
    color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-slider-section .hero-nav:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-slider-section .hero-nav::after {
    content: none;
    display: none;
}

.hero-slider-section .hero-nav i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .hero-slider-section .hero-nav {
        width: 45px;
        height: 45px;
    }
    
    .hero-slider-section .hero-nav i {
        font-size: 1.2rem;
    }
}

.hero-slider-section .swiper-button-prev {
    left: 20px;
}

.hero-slider-section .swiper-button-next {
    right: 20px;
}

/* Pagination Dots */
.hero-slider-section .hero-dots {
    bottom: 30px !important;
    z-index: 20;
}

.hero-slider-section .hero-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider-section .hero-dots .swiper-pagination-bullet-active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* Slide Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.hero-feature-item:hover .hero-feature-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-feature-text {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-feature-text {
        font-size: 0.85rem;
    }
}

/* Loading Animation */
.hero-slider-section .swiper-slide-active .hero-text-wrapper {
    animation: fadeInUp 0.8s ease;
}

/* Accessibility */
.hero-slider-section .hero-nav:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}
