/* assets/css/style.css */
:root {
    --primary-color: #0056b3; /* Medikal Mavi */
    --secondary-color: #00a8cc; /* Açık Turkuaz */
    --text-color: #333;
    --bg-color: #f4f7f6;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

body { background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Header */
.main-header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 1rem 0; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }

.logo a { text-decoration: none; font-size: 1.8rem; font-weight: bold; color: var(--primary-color); }
.logo span { color: var(--secondary-color); }

.navbar ul { list-style: none; display: flex; }
.navbar ul li { margin-left: 20px; }
.navbar ul li a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s; }
.navbar ul li a:hover { color: var(--primary-color); }
/* --- MODERN GALERİ STİLLERİ --- */

.page-header {
    background: linear-gradient(135deg, #f0f2f5 0%, #eef2f3 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

.page-header h1 { font-size: 2.5rem; color: var(--text-color); margin-bottom: 10px; }
.page-header p { color: #666; font-size: 1.1rem; }

/* Filtre Butonları */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px; /* Hap şeklinde butonlar */
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

/* Grid Yapısı */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Galeri Kartı Animasyonu */
.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease-in-out; /* Sayfa yüklendiğinde efekt */
}

/* Gizleme Efekti (JS için gerekli) */
.gallery-item.hide {
    display: none;
}
.gallery-item.show {
    animation: zoomIn 0.4s ease forwards; /* Filtreleme animasyonu */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Görsel Alanı */
.gallery-img-box {
    position: relative;
    height: 280px;
    cursor: pointer;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-img-box:hover img {
    transform: scale(1.1);
}

/* Overlay (Üzerine Gelince Çıkan Bilgi) */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.gallery-img-box:hover .overlay {
    opacity: 1;
}

.category-tag {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    align-self: flex-start;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

/* Video Alanı */
.video-wrapper {
    position: relative;
    padding-bottom: 0;
    height: 100%;
    background: #000;
}
.video-wrapper video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.video-info {
    padding: 15px;
    background: #fff;
    text-align: center;
    border-top: 1px solid #eee;
}
.video-info h3 { font-size: 1rem; color: #333; }

/* Animasyon Keyframes */
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal iyileştirme */
.modal-content { border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
#caption { font-size: 1.2rem; color: #fff; font-weight: 300; padding-top: 15px; }
/* Hero Section (Anasayfa Banner) */
.hero { background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: var(--white); padding: 100px 0; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.btn { display: inline-block; background: var(--white); color: var(--primary-color); padding: 10px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; margin-top: 20px; }

/* Footer */
.main-footer { background-color: #222; color: #fff; text-align: center; padding: 20px 0; margin-top: 50px; }
/* --- HAKKIMIZDA SAYFASI STİLLERİ --- */

/* Genel Düzen */
.about-main { padding: 60px 0; background-color: var(--white); }

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text { flex: 1; }
.about-text h2 { color: var(--primary-color); font-size: 2rem; margin-bottom: 20px; }
.about-text p { margin-bottom: 15px; color: #555; text-align: justify; }

/* --- MODERN LOGO KARTI STİLLERİ --- */

/* --- GÜNCELLENMİŞ HEADER LOGO STİLİ --- */

.logo {
    /* Logonun kapsayıcısı */
}

.logo-link {
    display: flex; /* Resim ve yazıyı yan yana getirir */
    align-items: center; /* Dikeyde ortalar */
    text-decoration: none;
    gap: 10px; /* Resim ile yazı arasındaki boşluk */
}

/* Logo Resmi Ayarları */
.logo-link img {
    height: 50px; /* Header yüksekliğine uygun bir boyut */
    width: auto; /* Genişlik orantılı kalsın */
    object-fit: contain;
}

/* Logo Yazı Ayarları */
.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1; /* Satır aralığını daraltır */
}

.logo-text span {
    color: var(--secondary-color);
}

/* Mobilde logo çok büyük kalmasın diye ufak bir ayar */
@media (max-width: 768px) {
    .logo-link img { height: 40px; }
    .logo-text { font-size: 1.5rem; }
}

/* Mobilde kutu boyutu ayarı */
@media (max-width: 768px) {
    .logo-box {
        padding: 20px;
        max-width: 300px;
    }
}
}

/* Özellik Listesi */
.feature-list ul { list-style: none; margin-top: 20px; }
.feature-list ul li { margin-bottom: 10px; font-weight: 600; color: var(--secondary-color); }

/* --- YENİ EKLENEN/GÜNCELLENEN KISIMLAR --- */

/* Features Section (Avantajlar) - Eski Stats yerine */
.features-section {
    background-color: var(--primary-color); /* Mavi zemin */
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.features-section .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1); /* Hafif şeffaf beyaz */
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: #fff; /* Üzerine gelince beyaz olsun */
    color: var(--text-color); /* Yazı rengi koyu olsun */
}

.feature-box .f-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.feature-box:hover p {
    opacity: 1;
    color: #555;
}

/* Mobilde kutular alt alta */
@media (max-width: 768px) {
    .features-section .container { flex-direction: column; align-items: center; }
    .feature-box { width: 100%; max-width: 350px; }
}

/* Misyon Vizyon Kartları */
.mission-vision { padding: 80px 0; background-color: #f9f9f9; }

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary-color);
}

.mv-card h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.4rem; }
.mv-card p { color: #666; font-size: 0.95rem; line-height: 1.7; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .about-container { flex-direction: column; }
    .about-image { width: 100%; order: -1; /* Resmi mobilde üste al */ }
    .stats-section .container { flex-direction: column; }
}
/* --- İLETİŞİM SAYFASI STİLLERİ --- */

.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-wrapper {
    display: flex;
    gap: 50px; /* İki sütun arası boşluk */
}

/* Sol Taraf: Bilgiler */
.contact-info {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h2 { color: var(--primary-color); margin-bottom: 25px; }
.contact-info p { color: #555; margin-bottom: 30px; }

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.info-item .details h3 { font-size: 1.1rem; margin-bottom: 5px; color: #333; }
.info-item .details p { font-size: 0.95rem; margin-bottom: 0; color: #666; }

/* Sağ Taraf: Form */
.contact-form-box {
    flex: 1.5; /* Form tarafı biraz daha geniş olsun */
}

.contact-form-box h2 { color: var(--primary-color); margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fcfcfc;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: #fff;
}

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%; /* Buton tüm satırı kaplasın */
}

.btn-submit:hover {
    background-color: #004494; /* Biraz daha koyu mavi */
}

/* Harita Bölümü */
.map-section {
    width: 100%;
    line-height: 0; /* Harita altında boşluk kalmaması için */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
    .contact-info, .contact-form-box { width: 100%; }
}
/* --- MODERN INTRO BÖLÜMÜ (ANASAYFA) --- */

.modern-intro {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden; /* Taşmaları gizle */
}

.intro-wrapper {
    display: flex;
    align-items: center; /* Dikeyde ortala */
    gap: 60px; /* Metin ve resim arası boşluk */
}

/* Sol Taraf: Metin Stilleri */
.intro-text {
    flex: 1; /* Alanın yarısını kapla */
}

.section-heading {
    font-size: 2.5rem;
    color: #333;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color); /* Mavi vurgu */
}

.divider-line {
    width: 80px;
    height: 4px;
    background: var(--secondary-color); /* Turkuaz çizgi */
    margin-bottom: 25px;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.btn-text-arrow {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: margin-left 0.3s ease;
}

.btn-text-arrow span { margin-left: 8px; transition: transform 0.3s; }
.btn-text-arrow:hover span { transform: translateX(5px); }

/* Sağ Taraf: Resim ve Çerçeve */
.intro-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: visible; /* Süsleme dışarı taşsın diye */
    width: 100%;
    max-width: 500px;
}

.image-frame img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Derin gölge */
    position: relative;
    z-index: 2;
}

/* Arkadaki Süsleme Kutusu (Pattern) */
.pattern-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
    transition: transform 0.4s ease;
}

.intro-image:hover .pattern-box {
    transform: translate(10px, 10px); /* Mouse gelince hareket etsin */
}

/* MOBİL UYUMLULUK */
@media (max-width: 900px) {
    .intro-wrapper {
        flex-direction: column; /* Alt alta diz */
        text-align: center;
        gap: 40px;
    }

    .divider-line { margin: 0 auto 25px auto; } /* Çizgiyi ortala */
    
    .intro-image { width: 100%; }
    .image-frame { max-width: 100%; }
    
    .pattern-box { display: none; /* Mobilde kalabalık yapmasın */ }
}
/* --- ZIG-ZAG TASARIM İÇİN EK STİL --- */

/* Süsleme kutusunu sola kaydır */
.pattern-box-left {
    position: absolute;
    top: -20px;
    left: -20px; /* Sağ yerine sol taraftan taşsın */
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
    transition: transform 0.4s ease;
}

/* Mouse ile üzerine gelince hareket efekti */
.intro-image:hover .pattern-box-left {
    transform: translate(-10px, 10px); 
}

/* Mobilde görsellerin ve metinlerin sırasını düzeltme */
@media (max-width: 900px) {
    /* Mobilde her zaman önce resim, sonra yazı gelsin istiyorsan bu kalsın. 
       Eğer mobilde önce YAZI sonra RESİM olsun istiyorsan aşağıdaki kodu kullan: */
    
    /* .intro-wrapper {
        flex-direction: column-reverse; 
    } 
    */
    
    /* Mevcut durumda mobilde:
       1. Section: Yazı -> Resim
       2. Section: Resim -> Yazı
       Bu çeşitlilik mobilde de güzel durur.
    */
}
/* --- FORM UYARI MESAJLARI --- */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* --- FOOTER SOSYAL MEDYA STİLLERİ --- */

.main-footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.social-links {
    margin-bottom: 20px; /* İkon ile yazı arasındaki boşluk */
}

.social-links a {
    color: #fff; /* İkonun normal rengi (Beyaz) */
    font-size: 1.8rem; /* İkon büyüklüğü */
    margin: 0 10px; /* İkonlar arası boşluk */
    transition: all 0.3s ease;
    display: inline-block;
}

/* Üzerine gelince Instagram rengine dönüşsün ve büyüsün */
.social-links a:hover {
    color: #d62976; /* Instagram pembesi */
    transform: scale(1.2) rotate(5deg); /* Hafif büyüme ve dönme efekti */
}

.footer-content p {
    opacity: 0.7;
    font-size: 0.9rem;
}
/* --- WHATSAPP SABİT BUTON STİLLERİ --- */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px; /* Alttan boşluk */
    right: 25px; /* Sağdan boşluk */
    background-color: #25d366; /* WhatsApp Yeşili */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px; /* İkon boyutu */
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Diğer her şeyin üstünde dursun */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Üzerine gelince koyu yeşil */
    transform: scale(1.1); /* Hafif büyüme efekti */
    color: #fff;
}

/* Mobilde butonun biraz daha yukarıda olması gerekebilir (Footer linklerine basmak için) */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
/* --- ZİYARETÇİ SAYACI STİLİ --- */

.visitor-badge {
    margin-top: 30px; /* Butondan biraz aşağıda dursun */
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2); /* Yarı saydam beyaz */
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 0.95rem;
    backdrop-filter: blur(5px); /* Buzlu cam efekti */
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.5s ease;
}

.visitor-badge i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #fff; /* İkon rengi */
}

.visitor-badge strong {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffd700; /* Rakamı Altın Sarısı yapalım ki dikkat çeksin */
    margin: 0 4px;
}

/* Hero alanındaki öğelerin alt alta düzgün durması için */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}/* --- ALT ZİYARETÇİ SAYACI STİLLERİ --- */

.visitor-stats {
    background: linear-gradient(to right, #f8f9fa, #e9ecef); /* Hafif gri geçişli zemin */
    padding: 40px 0;
    border-top: 1px solid #dee2e6;
    margin-top: 50px; /* Üstteki içerikten biraz ayrılsın */
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; /* Ortala */
    gap: 20px;
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--secondary-color); /* Turkuaz renk */
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stats-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-text h3 {
    margin: 5px 0 0 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.stats-text h3 span {
    color: var(--primary-color); /* Mavi renk */
    font-weight: 800;
    font-size: 1.5rem;
}

/* Mobilde alt alta gelsin */
@media (max-width: 768px) {
    .stats-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
/* --- GALERİ WHATSAPP BUTONLARI --- */

/* Resim Overlay içindeki buton */
.btn-whatsapp-overlay {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: background 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-whatsapp-overlay:hover {
    background-color: #128c7e;
    color: #fff;
}

/* Video altındaki buton */
.btn-whatsapp-small {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Video kutusu düzenlemesi */
.video-info h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.video-info p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}
/* --- PREMIUM SLIDER POP-UP TASARIMI (YENİ) --- */

/* Modal Arka Planı (Buzlu Cam Efekti) */
.slider-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(10, 10, 10, 0.9); /* Koyu arka plan */
    backdrop-filter: blur(15px); /* Bulanıklık efekti */
    animation: fadeInModal 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInModal {
    from { opacity: 0; } to { opacity: 1; }
}

/* Kapatma Butonu */
.close-slider {
    position: absolute;
    top: 25px; right: 35px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 0.6;
}
.close-slider:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* İçerik Kutusu */
.slider-content {
    width: 100%; height: 85%;
    display: flex; justify-content: center; align-items: center;
    padding-top: 20px;
}

#slider-media-container {
    width: 85%; height: 90%;
    display: flex; justify-content: center; align-items: center;
}

#slider-media-container img, 
#slider-media-container video {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Derinlik gölgesi */
    animation: zoomMedia 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes zoomMedia {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Yön Okları */
.prev, .next {
    cursor: pointer;
    position: absolute; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.3s ease;
    z-index: 10000;
}
.prev { left: 30px; }
.next { right: 30px; }

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* Alt Bilgi (Caption) */
.slider-caption {
    position: absolute; bottom: 0; width: 100%;
    text-align: center;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}

.slider-caption h3 {
    font-size: 1.5rem; font-weight: 600; margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slider-caption p {
    font-size: 0.9rem; opacity: 0.8; margin: 0;
    background: rgba(255,255,255,0.1);
    padding: 4px 12px; border-radius: 12px;
}

/* WhatsApp Butonu */
.btn-whatsapp-modal {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff; padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold; text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-whatsapp-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}