/* Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0c10; /* Koyu Zemin */
    color: #c5c6c7;
}

/* Renkler */
.text-cyan {
    color: #66fcf1 !important;
}

.bg-darker {
    background-color: #050608;
}

/* Butonlar */
.btn-cyan {
    background-color: #45a29e;
    color: #fff;
    border: none;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-cyan:hover {
    background-color: #66fcf1;
    color: #0b0c10;
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.5);
}

.btn-outline-cyan {
    border-color: #45a29e;
    color: #45a29e;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-cyan:hover {
    background-color: #45a29e;
    color: white;
    box-shadow: 0 0 15px rgba(69, 162, 158, 0.5);
}

/* Navbar Düzenlemesi */
.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background-color: rgba(11, 12, 16, 0.95) !important; /* Daha koyu ve opak */
    backdrop-filter: blur(5px);
}

/* Dil Seçici Linkleri */
.lang-switch a {
    color: #c5c6c7;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
}
.lang-switch a:hover {
    color: #66fcf1;
    background-color: rgba(69, 162, 158, 0.2);
}
.lang-switch a.active {
    background-color: #45a29e;
    color: white;
}


/* --- MINIMAL HERO SLIDER AYARLARI --- */

.hero-slider-container {
    position: relative;
    /* Yükseklik Ayarı: Ekranın %65'i kadar.
       Daha minimal isterseniz 50vh, daha büyük isterseniz 75vh yapabilirsiniz. */
    height: 65vh; 
    min-height: 450px; /* Mobilde çok küçülmemesi için alt sınır */
    max-height: 800px; /* Çok büyük ekranlarda devasa olmaması için üst sınır */
    background-color: #0b0c10;
    border-bottom: 2px solid #45a29e; /* Altına şık bir çizgi */
}

.carousel-item {
    /* Container ile aynı yükseklik */
    height: 65vh;
    min-height: 450px;
    max-height: 800px;
}

/* Slider Görseli */
.hero-img {
    object-fit: cover; /* Resmi bozmadan alanı doldur */
    height: 100%;
    width: 100%;
}

/* Karanlık Katman (Overlay) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Resmin üzerini biraz daha koyulaştır ki yazılar okunsun */
    background: linear-gradient(rgba(11, 12, 16, 0.6), rgba(11, 12, 16, 0.8)); 
    z-index: 1;
}

/* Slider İçindeki Yazılar */
.carousel-caption {
    z-index: 2; /* Overlay'in üstünde kalsın */
    /* Yazıları dikey ve yatay olarak tam ortala */
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider Başlık Boyutu */
.display-5 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Slider Alt Noktaları */
.carousel-indicators [data-bs-target] {
    background-color: #66fcf1; /* Cyan renk */
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}


/* --- DİĞER BÖLÜMLER --- */

/* Kartlar */
.service-card {
    background-color: #1f2833;
    border: 1px solid #1f2833;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #66fcf1; 
}

.border-cyan {
    border-color: #45a29e !important;
    box-shadow: 0 0 15px rgba(69, 162, 158, 0.2);
}

/* Form Inputları */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 252, 241, 0.25);
    background-color: #2b3b4b;
    color: white;
}

/* Basit Giriş Animasyonu */
.animated-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}