/* 
 * Hero Section Styles
 * Çetin Otomotiv
 */

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* hero-slider kuralları style.css'den geliyor */
/* .hero-slider için height:100% burada kaldırıldı - style.css'deki 700px kullanılıyor */

.hero-slide {
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* hero-content kuralları style.css'den geliyor */
/* Buraya yalnızca ek stiller ekleyin */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00a86b, #00c77f);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.hero-badge i {
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary-light);
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 20;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.4;
    margin: 0 6px;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-slide {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
}
