/* Kankacım, Mobil Slider - MAVİ & TURUNCU KONSEPT (Tam Kare, Boşluksuz) */

.mobile-slider-wrapper {
    width: 100%;
    position: relative;
    /* 1:1 Kare oran, mobilde ekranı güzel doldurur */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #ffffff;
}

/* Slaytlar */
.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover; 
    background-position: center center;
    z-index: 1;
    transform: scale(1);
}

/* Zoom Animasyonu */
@keyframes mobileZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.mobile-slide.active {
    opacity: 1;
    z-index: 2;
    animation: mobileZoom 7s linear forwards;
}

/* Mobil Sis Efekti - Alt tarafı okunabilir kılar */
.mobile-fog-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%; /* Yazılar rahat okunsun diye biraz artırdım */
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
    z-index: 5;
    pointer-events: none;
}

/* SİMETRİK KESİK (BEYAZ ALAN) */
.mobile-overlay-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    z-index: 10;
    /* Hafif asimetrik kesim modern durur */
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 50% 0%, 0% 30%);
    pointer-events: none;
}

/* Mobil İçerik Alanı */
.mobile-content-wrapper {
    position: absolute;
    bottom: 110px; /* Kesik alanın hemen üstü */
    left: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 20;
    color: white;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
    pointer-events: none;
}

.mobile-content-wrapper * {
    pointer-events: auto;
}

.mobile-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.mobile-content-wrapper.active-anim .mobile-title {
    opacity: 1;
    transform: translateY(0);
}

.mobile-desc {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-content-wrapper.active-anim .mobile-desc {
    opacity: 1;
    transform: translateY(0);
}

/* BUTON - TURUNCU (#e68f23) */
.mobile-btn {
    display: inline-block;
    background-color: #e68f23; /* İstediğin Turuncu Tonu */
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.7s; /* Transition süresini düzelttim */
    box-shadow: 0 4px 15px rgba(230, 143, 35, 0.4); /* Turuncu gölge */
}

.mobile-btn:hover {
    background-color: #cf7e1d; /* Hoverda hafif koyusu */
    transform: translateY(-2px);
}

.mobile-content-wrapper.active-anim .mobile-btn {
    opacity: 1;
    transform: translateY(0);
}

/* YÖN TUŞLARI */
.mobile-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0;
    display: flex;
    gap: 15px;
    z-index: 30;
    pointer-events: auto;
}

/* Navigasyon Butonları - MAVİ (#317da8) */
.mobile-nav-btn {
    width: 45px;
    height: 45px;
    background-color: white;
    border: 1px solid #ddd;
    color: #317da8; /* İkon rengi ana mavi */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-nav-btn:hover, .mobile-nav-btn:active {
    background-color: #317da8; /* Hoverda Mavi olsun */
    color: white;
    transform: scale(1.1);
    border-color: #317da8;
}