/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-color: var(--dark-color);
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.hero-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-text {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-info {
    display: flex;
    margin-bottom: 2rem;
}

.hero-info-item {
    margin-right: 2rem;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Countdown Styles */
.countdown-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
    padding: 1.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

/* Slide variations */
.slide-1 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.slide-2 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.slide-3 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.slide-4 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

/* Owl Carousel Navigation Styles */
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 11;
}

.owl-prev {
    left: 20px;
}

.owl-next {
    right: 20px;
}

.owl-prev:hover,
.owl-next:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-50%) scale(1.1);
}

/* Owl Carousel Dots Styles */
.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--accent-color) !important;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-item {
        padding: 1rem;
        min-width: 80px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-wrapper {
        padding: 1.5rem;
    }
    
    .countdown-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-info-item {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Tarih başlığı için özel stil */
.hero-title.date-title {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: keep-all !important;
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
}

/* Slide 2 için özel tarih stili */
.slide-2 .hero-title.date-title {
    white-space: nowrap !important;
    word-wrap: normal !important;
    word-break: keep-all !important;
    display: inline !important;
    line-height: 1.2 !important;
    overflow: visible !important;
    text-overflow: clip !important;
    width: auto !important;
    max-width: none !important;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    
    .hero-slide {
        height: auto;
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-wrapper {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .countdown-title {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .owl-nav {
        display: none !important;
    }
    
    /* Hide countdown on mobile for better space usage */
    .countdown-wrapper {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 450px;
    }
    
    .hero-slide {
        min-height: 450px;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    
    .hero-info-item {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 0.6rem 0.4rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-wrapper {
        padding: 0.8rem;
    }
    
    .countdown-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-slide {
        min-height: 400px;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.8rem;
    }
    
    .hero-info-item {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 0.5rem 0.3rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .countdown-wrapper {
        padding: 0.6rem;
    }
    
    .countdown-title {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 360px) {
    .hero-section {
        min-height: 350px;
    }
    
    .hero-slide {
        min-height: 350px;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-text {
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .hero-info-item {
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .countdown-item {
        min-width: 40px;
        padding: 0.4rem 0.2rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
    
    .countdown-wrapper {
        padding: 0.5rem;
    }
    
    .countdown-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

/* ===== HERO SECTION KAPSAMLI MOBİL DÜZELTMELELERİ ===== */

/* iPhone SE (375px) için özel hero düzeltmeleri */
@media (max-width: 375px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-slide {
        height: 100vh;
        min-height: 600px;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-text {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.4rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-info {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-info-item {
        font-size: 0.85rem !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 0.8rem !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Countdown düzeltmeleri */
    .countdown-wrapper {
        padding: 1.5rem 1rem !important;
        margin-top: 1rem !important;
    }
    
    .countdown-title {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .countdown {
        gap: 0.5rem !important;
        justify-content: center !important;
    }
    
    .countdown-item {
        min-width: 65px !important;
        padding: 0.8rem 0.4rem !important;
    }
    
    .countdown-item span:first-child {
        font-size: 1.6rem !important;
    }
    
    .countdown-label {
        font-size: 0.7rem !important;
    }
}

/* iPhone 12/13/14 (428px) için hero düzeltmeleri */
@media (min-width: 376px) and (max-width: 428px) {
    .hero-section {
        height: 100vh;
        min-height: 650px;
    }
    
    .hero-slide {
        height: 100vh;
        min-height: 650px;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .hero-text {
        font-size: 0.95rem !important;
        margin-bottom: 1.8rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-badge {
        font-size: 0.9rem !important;
        padding: 0.5rem 1.2rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .hero-info {
        flex-direction: column !important;
        gap: 0.6rem !important;
        margin-bottom: 1.8rem !important;
    }
    
    .hero-info-item {
        font-size: 0.9rem !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.9rem !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Countdown düzeltmeleri */
    .countdown-wrapper {
        padding: 1.8rem 1.5rem !important;
        margin-top: 1.5rem !important;
    }
    
    .countdown-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .countdown {
        gap: 0.8rem !important;
        justify-content: center !important;
    }
    
    .countdown-item {
        min-width: 75px !important;
        padding: 1rem 0.6rem !important;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem !important;
    }
    
    .countdown-label {
        font-size: 0.8rem !important;
    }
}

/* Tablet (768px) için hero düzeltmeleri */
@media (min-width: 429px) and (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 700px;
    }
    
    .hero-slide {
        height: 100vh;
        min-height: 700px;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.2rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-text {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-badge {
        font-size: 1rem !important;
        padding: 0.6rem 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-info {
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-info-item {
        font-size: 1rem !important;
        margin-right: 0 !important;
        text-align: center !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 350px !important;
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Countdown düzeltmeleri */
    .countdown-wrapper {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .countdown-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .countdown {
        gap: 1rem !important;
        justify-content: center !important;
    }
    
    .countdown-item {
        min-width: 85px !important;
        padding: 1.2rem 0.8rem !important;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem !important;
    }
    
    .countdown-label {
        font-size: 0.9rem !important;
    }
}

/* Landscape orientation için hero düzeltmeleri */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh !important;
        min-height: 500px !important;
    }
    
    .hero-slide {
        height: 100vh !important;
        min-height: 500px !important;
        padding: 1rem 0 !important;
    }
    
    .hero-content {
        padding: 1rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-text {
        font-size: 0.85rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.3rem 0.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero-info {
        margin-bottom: 0.8rem !important;
    }
    
    .hero-info-item {
        font-size: 0.8rem !important;
    }
    
    .hero-buttons {
        gap: 0.5rem !important;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
    }
    
    .countdown-wrapper {
        padding: 1rem !important;
        margin-top: 0.5rem !important;
    }
    
    .countdown-title {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .countdown-item {
        min-width: 60px !important;
        padding: 0.6rem 0.4rem !important;
    }
    
    .countdown-item span:first-child {
        font-size: 1.4rem !important;
    }
    
    .countdown-label {
        font-size: 0.65rem !important;
    }
}

/* Hero section text overflow düzeltmeleri */
@media (max-width: 768px) {
    .hero-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    .hero-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    .hero-info-item {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
}

/* Hero section container padding düzeltmeleri */
@media (max-width: 768px) {
    .hero-content .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero-content .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-content .col-lg-7,
    .hero-content .col-lg-8 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ===== HERO BADGE TEXT OVERFLOW DÜZELTMELELERİ ===== */

/* Hero Badge Text Overflow Düzeltmeleri - Tüm Ekran Boyutları */
@media (max-width: 768px) {
    .hero-badge {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        max-width: 100% !important;
        width: auto !important;
        display: inline-block !important;
        line-height: 1.3 !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .hero-badge::before,
    .hero-badge::after {
        content: none !important;
    }
}

/* iPhone SE ve Küçük Mobil Cihazlar için Hero Badge Düzeltmeleri */
@media (max-width: 375px) {
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 1rem !important;
        border-radius: 25px !important;
        max-width: 90% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.2 !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .hero-badge br {
        display: block !important;
    }
}

/* iPhone 12/13/14 ve Orta Boy Mobil Cihazlar için Hero Badge Düzeltmeleri */
@media (min-width: 376px) and (max-width: 428px) {
    .hero-badge {
        font-size: 0.75rem !important;
        padding: 0.45rem 0.9rem !important;
        margin-bottom: 1.2rem !important;
        border-radius: 30px !important;
        max-width: 92% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.25 !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .hero-badge br {
        display: block !important;
    }
}

/* Tablet ve Büyük Mobil Cihazlar için Hero Badge Düzeltmeleri */
@media (min-width: 429px) and (max-width: 768px) {
    .hero-badge {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 35px !important;
        max-width: 95% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.3 !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .hero-badge br {
        display: block !important;
    }
}

/* Landscape Orientation için Hero Badge Düzeltmeleri */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-badge {
        font-size: 0.65rem !important;
        padding: 0.3rem 0.7rem !important;
        margin-bottom: 0.8rem !important;
        border-radius: 20px !important;
        max-width: 85% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.1 !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    .hero-badge br {
        display: block !important;
    }
}

/* Hero Badge Container Düzeltmeleri */
@media (max-width: 768px) {
    .hero-content {
        overflow: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .hero-badge-container {
        width: 100% !important;
        text-align: center !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1rem !important;
    }
}

/* Hero Badge Animation ve Transition Düzeltmeleri */
@media (max-width: 768px) {
    .hero-badge {
        transition: all 0.3s ease !important;
        transform: none !important;
    }
    
    .hero-badge:hover {
        transform: none !important;
    }
}

/* Hero Badge Accessibility Düzeltmeleri */
@media (max-width: 768px) {
    .hero-badge {
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
    }
    
    .hero-badge:focus {
        outline: 2px solid #fff !important;
        outline-offset: 2px !important;
    }
}

/* Hero Badge Text Specific Düzeltmeleri */
@media (max-width: 768px) {
    .hero-badge {
        /* "SON BİLDİRİ GÖNDERİM TARİHİ" için özel düzeltmeler */
        font-size: clamp(0.65rem, 3vw, 0.9rem) !important;
        padding: clamp(0.3rem, 2vw, 0.6rem) clamp(0.6rem, 3vw, 1.2rem) !important;
        max-width: min(95%, 300px) !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.2 !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }
    
    /* Uzun metinler için özel düzeltmeler */
    .hero-badge:contains("SON BİLDİRİ GÖNDERİM TARİHİ"),
    .hero-badge:contains("SON TARİH") {
        font-size: clamp(0.6rem, 2.5vw, 0.8rem) !important;
        padding: clamp(0.25rem, 1.5vw, 0.5rem) clamp(0.5rem, 2.5vw, 1rem) !important;
        max-width: min(90%, 280px) !important;
        line-height: 1.1 !important;
    }
}
