/* --- GENEL AYARLAR --- */
body { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; background: #f8fafc; color: #334155; }
a { text-decoration: none; }
* { box-sizing: border-box; }

/* 1. DUYURU BARI */
.announcement-bar {
    color: white; text-align: center; padding: 12px; font-size: 0.95rem; font-weight: 500;
    position: relative; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 2. HERO (KARŞILAMA) ALANI */
.hero-wrapper {
    padding: 80px 0; border-bottom: 1px solid rgba(0,0,0,0.03);
    position: relative; overflow: hidden;
    min-height: 650px; display: flex; align-items: center;
}
.hero-container {
    max-width: 1250px; margin: 0 auto; padding: 0 25px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 60px; width: 100%; position: relative; z-index: 2;
}
.hero-content { flex: 1; z-index: 10; }
.hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 25px; letter-spacing: -1px; }
.hero-desc { font-size: 1.15rem; margin-bottom: 40px; line-height: 1.7; opacity: 0.9; max-width: 600px; font-weight: 400; }
.hero-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 45px; background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white !important; border-radius: 50px; font-weight: 600; font-size: 1rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3); transition: all 0.3s ease;
}
.hero-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4); }

.hero-image { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; height: 500px; width: 100%; }
.slide-img { position: absolute; max-width: 100%; max-height: 100%; width: auto; height: auto; opacity: 0; transition: opacity 1s ease, transform 1s ease; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); transform: scale(0.95); object-fit: contain; }
.slide-img.active { opacity: 1; transform: scale(1); z-index: 5; }
.layout-sag { flex-direction: row; text-align: left; }
.layout-sol { flex-direction: row-reverse; text-align: left; }
.layout-alt { flex-direction: column; text-align: center; justify-content: center; }
.layout-alt .hero-content { margin: 0 auto; max-width: 800px; }

/* 3. ÖZELLİKLER */
.features-section { padding: 100px 0; }
.container-custom { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; }
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { padding: 40px 30px; border-radius: 24px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); transition: 0.3s; text-align: center; height: 100%; display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.icon-box { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 25px auto; }

/* 4. SLIDER KARTLARI (GELİŞMİŞ TASARIM) */
.slider-section { padding: 80px 0; overflow: hidden; }
.slider-track { display: flex; gap: 30px; overflow-x: auto; padding-bottom: 40px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.slider-track::-webkit-scrollbar { height: 6px; }
.slider-track::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

/* Normal Kart Tasarımı */
.slide-card-item {
    min-width: 350px; max-width: 350px;
    background: white; border-radius: 24px; overflow: hidden;
    /* Hafif gölge ve border */
    box-shadow: 0 10px 25px rgba(0,0,0,0.04); 
    border: 1px solid rgba(0,0,0,0.03); 
    display: flex; flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yumuşak geçiş */
    position: relative;
}

/* Hover Efekti: Kart yukarı kalkar ve gölge artar */
.slide-card-item:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-color: rgba(99, 102, 241, 0.1);
}

.card-img-box { 
    height: 250px; width: 100%; background: #f8fafc; 
    display: flex; align-items: center; justify-content: center; 
    overflow: hidden; border-bottom: 1px solid #f1f5f9; position: relative; 
}
.card-img-box img { 
    width: 100%; height: 100%; object-fit: contain; 
    transition: transform 0.6s ease; padding: 15px; 
}
/* Hover'da Resim Yakınlaşır */
.slide-card-item:hover .card-img-box img { transform: scale(1.08); }

.card-content { padding: 30px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.btn-card { display: inline-block; margin-top: auto; padding: 12px 25px; background: #3B82F6; color: white; border-radius: 12px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.btn-card:hover { background: #2563EB; box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4); }


/* --- ÇOK YAKINDA MODU (EFEKTLİ & MODERN) --- */
.slide-card-item.coming-soon {
    background: #ffffff;
    border: 2px dashed #cbd5e1; /* Kesik çizgi */
    box-shadow: none;
    position: relative;
    overflow: hidden; /* Blur taşmasın */
}

/* İçeriği Gri Yap */
.slide-card-item.coming-soon .card-img-box img,
.slide-card-item.coming-soon .card-content {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* Hover Efekti: Üzerine gelince renklenir */
.slide-card-item.coming-soon:hover {
    transform: translateY(-5px);
    border-color: #94a3b8;
    background: #fcfcfc;
}
.slide-card-item.coming-soon:hover .card-img-box img,
.slide-card-item.coming-soon:hover .card-content {
    filter: grayscale(0%); /* Renk geri gelir */
    opacity: 0.9;
}

/* Badge (Etiket) */
.btn-soon {
    display: inline-block;
    margin-top: auto;
    padding: 8px 15px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: default;
    border: 1px solid #e2e8f0;
}

/* "Çok Yakında" yazısı üzerine gelince parlasın */
.slide-card-item.coming-soon:hover .btn-soon {
    background: #e2e8f0;
    color: #475569;
}


/* 5. GOOGLE YORUMLARI */
.reviews-section { padding: 80px 0; background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.review-card { padding: 30px; border-radius: 16px; background: #f9fafb; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.02); transition: 0.3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.stars { color: #F59E0B; margin-bottom: 10px; font-size: 0.9rem; }
.review-text { font-size: 0.95rem; line-height: 1.6; color: #4b5563; margin-bottom: 20px; font-style: italic; }
.review-user { display: flex; align-items: center; gap: 12px; }
.user-avatar { width: 40px; height: 40px; background: #3B82F6; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 950px) { 
    .hero-container { flex-direction: column !important; text-align: center !important; gap: 30px; padding: 0 15px; }
    .hero-content { order: 1; padding: 0; width: 100%; margin-bottom: 20px; } 
    .hero-image { order: 2; width: 100%; min-height: 400px; height: 400px; display: block !important; position: relative; overflow: visible; }
    .slide-img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); max-width: 100%; max-height: 100%; width: auto; height: auto; opacity: 0; transition: opacity 0.5s ease; }
    .slide-img.active { opacity: 1 !important; transform: translate(-50%, -50%) scale(1); z-index: 99; }
    .hero-title { font-size: 2.2rem; }
    .slide-card-item { min-width: 300px; max-width: 300px; }
    .slider-track {
        display: flex;
        flex-direction: column; /* Yan yana değil alt alta */
        overflow-x: visible;    /* Kaydırmayı kapat */
        gap: 25px;              /* Kartlar arası boşluk */
        padding-bottom: 0;
    }
}

/* SAYFA BAŞLIĞI ARKA PLAN */
.page-hero {
    background: linear-gradient(135deg, #EEF2FF, #FDF4FF);
    padding: 100px 0 120px;
    margin-bottom: -80px;
}

/* BEYAZ KART ALANI */
.page-content {
    position: relative;
    z-index: 5;
}

.page-card {
    background: #fff;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* ALT METİN */
.section-subtext {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}
