/* --- 1. DEĞİŞKENLER VE SIFIRLAMA --- */
:root {
    --primary-color: #0A3D91;   /* Kurumsal Gece Mavisi */
    --primary-hover: #072d6e;   /* Koyu Mavi Hover */
    --black-color: #1e293b;     /* Başlıklar ve Net Siyah Alanlar */
    --text-color: #475569;      /* Okunabilir Koyu Gri Gövde Yazısı */
    --bg-light: #f8fafc;        /* Temiz Açık Gri/Beyaz Arka Plan */
    --white: #ffffff;
    --whatsapp-color: #25d366;  /* WhatsApp Yeşil */
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

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

/* --- 2. GENEL KULLANIM SIFIRLAMALARI --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover { 
    background-color: var(--primary-hover); 
}

/* --- 3. İKİ KADEMELİ HEADER TASARIMI --- */
/* ==========================================================================
   PREMIUM TOP HEADER - OPTIMIZED LUXURY STYLE
   ========================================================================== */

.top-header {
    background-color: #1e3a8a; /* Kurumsal lüks mavi tema rengi */
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 9px 0; /* Sığmayı kolaylaştırmak için yüksekliği biraz daralttık */
    font-size: 13px; /* Font boyutunu sığması için eski güvenli haline çektik */
    font-weight: 600; /* Yazıların netliği için kalınlık korundu */
    letter-spacing: 0.3px;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Bilgi Blokları Yerleşimi */
.top-info {
    display: flex;
    align-items: center;
    gap: 20px; /* Sığmayı garantilemek için aralarındaki boşluğu optimize ettik */
}

.top-info .info-block {
    display: flex;
    align-items: center;
    color: #ffffff; /* Saf beyaz yazı rengi */
    white-space: nowrap; /* Yazıların alt satıra kırılıp çirkin durmasını engeller */
}

/* İkonların Büyütülmüş Yeni Ayarları (İkonlar Büyük Kalıyor) */
.top-info .info-block i {
    color: #93c5fd; /* Parlak açık mavi ikonlar */
    margin-right: 7px;
    font-size: 15.5px; /* İkonlar bir tık büyük kalarak görselliği vurgular */
}

.top-info .info-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.top-info .info-link:hover {
    opacity: 0.85;
}

/* Sosyal Medya İkon Alanı */
.top-social {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 15px;
}

.top-social a {
    color: #ffffff;
    font-size: 15px; /* Sosyal medya ikonları da dengeli büyüklükte */
    transition: all 0.3s ease;
    display: inline-block;
}

.top-social a:hover {
    color: #93c5fd;
    transform: translateY(-2px);
}
.renk-btn{
    color: #fffff;
}

/* ==========================================================================
   RESPONSIVE DÜZENLEMELER (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 991px) {
    .top-info {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .top-header-container {
        justify-content: center;
    }
    .hide-mobile, .work-hours {
        display: none !important; /* Mobilde taşmaları önlemek için sadece telefon kalır */
    }
    .top-social {
        border-left: none;
        padding-left: 0;
        margin-left: 12px;
    }
}
/* Alt Kademe (Beyaz Arka Plan) */
.bottom-header {
    background-color: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    position: relative; /* Mobil menünün doğru hizalanması için gerekli */
}

.bottom-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* --- LOGO TASARIMI (PNG İÇİN OPTİMİZE) --- */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 60px;     
    width: auto;      
    display: block;
}

/* Alt kademenin yüksekliğini de logona uyum sağlasın diye esnettik */
.bottom-header {
    background-color: var(--white);
    min-height: 90px; 
    display: flex;
    align-items: center;
    position: relative;
}

/* Mobil için logo boyutu */
@media (max-width: 768px) {
    .site-logo img {
        height: 50px; /* Mobilde de çok ufalmadan net okunmasını sağlar */
    }
    .bottom-header {
        min-height: 80px;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover, 
.main-nav a.active { 
    color: var(--primary-color); 
}

/* Navigasyon içindeki gizli randevu butonu (Sadece mobilde görünecek) */
.nav-appointment-btn {
    display: none;
}

/* Masaüstü Randevu Butonu */
.header-action .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobil Hamburger Buton */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* --- 4. RESPONSIVE GÜNCELLEMELERİ --- */
@media (max-width: 992px) {
    .header-action {
        display: none; /* Masaüstü butonunu mobilde gizle */
    }

    .nav-appointment-btn {
        display: inline-block; /* Menü açıldığında içine butonu dahil et */
        background-color: var(--primary-color);
        color: var(--white) !important;
        padding: 10px 20px;
        border-radius: 4px;
        margin-top: 10px;
    }

    .menu-toggle { 
        display: flex; 
    }
    
    .main-nav {
        position: absolute;
        top: 100% !important; /* Alt kademenin tam bittiği yere yapışır */
        left: -100%;
        width: 100%;
        background-color: var(--white);
        transition: var(--transition);
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .main-nav.active { 
        left: 0; 
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    /* Hamburger Butonunun Çarpı (X) Olma Animasyonları */
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

@media (max-width: 768px) {
.top-info .work-hours,
    .top-info .hide-mobile {
        display: none; /* Mobilde hem çalışma saatini hem de adresi gizliyoruz */
    }
    
    .top-header-container {
        justify-content: space-between; /* Kalan telefon ve sosyal medyayı iki yana yaslar */
        width: 100%;
    }
}


/* --- 5. PREMIUM SLIDER TASARIMI --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 130px); /* Ekran yüksekliğine göre açılır, menü yüksekliğini düşer */
    min-height: 600px;
    overflow: hidden;
    background-color: var(--black-color);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slayt Arka Plan Resmi */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease-out; /* Sinematik yavaş büyüme efekti */
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Koyu Karartma (Overlay) - Yazıların muazzam okunmasını sağlar */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 61, 145, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
}

/* İçerik Alanı & Tipografi */
.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 700px;
}

.slide-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

/* Alt çizgi efekti */
.slide-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--white);
}

.slide-content h2 {
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.slide-content h2 strong {
    font-weight: 700;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.6s;
}

.slide-actions {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.8s;
}

/* Aktif slayttaki yazıların sırayla yukarı fırlayarak gelmesi (UX Premium Animasyon) */
.slide.active .slide-subtitle,
.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Şeffaf İkincil Buton Tasarımı */
.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Kontrol Okları Tasarımı */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: var(--transition);
}

.slider-nav:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.prev-slide { left: 30px; }
.next-slide { right: 30px; }

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

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
    width: 30px; /* Aktif noktayı uzatıp şık bir görünüm veriyoruz */
    border-radius: 20px;
}

/* Slider Mobil Optimizasyon */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh; /* Mobilde dikey alanı daraltıyoruz */
    }
    .slide-content h2 {
        font-size: 36px;
    }
    .slide-content p {
        font-size: 15px;
    }
    .slider-nav {
        display: none; /* Mobilde okları gizleyip parmak kaydırmayı / otomatik geçişi öncelikli yapıyoruz */
    }
    .slide-actions {
        flex-direction: column;
        gap: 10px;
    }
}


/* --- 6. PREMIUM GÖRSEL ODAKLI HİZMETLERİMİZ (AKICI EFEKTLER) --- */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.title-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title p {
    font-size: 16px;
    color: var(--text-color);
}

/* 3'lü Grid */
.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Kartın Kendisi */
.visual-card {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    display: flex;
    flex-direction: column;
    position: relative;
    /* Sertliği kıran ultra yumuşak premium geçiş süresi (0.5s cubic-bezier) */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Görsel Alanı */
.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Resmin büyüme geçişini de yumuşatıyoruz */
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* İSTEDİĞİN ÖZEL GÖRSEL EFEKTİ: Mavi Renk Filtresi (Overlay) */
.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0; /* Başlangıçta şeffaf */
    mix-blend-mode: multiply; /* Görselin renkleriyle lüks bir şekilde harmanlanır */
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Kartın Yazı Alanı */
.card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background-color: var(--white);
    z-index: 2;
}

/* Kartın Altındaki Çizgi */
.visual-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

.card-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
}

.card-body p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link i {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}


/* --- YUMUŞACIK HOVER EFEKTLERİ --- */

.visual-card:hover {
    transform: translateY(-6px); /* Havada süzülme hissi */
    box-shadow: 0 30px 60px rgba(10, 61, 145, 0.08); /* Derin ve yumuşak gölge */
}

/* Görsel yavaşça yaklaşır */
.visual-card:hover .card-image img {
    transform: scale(1.05);
}

/* Görselin üzerine lüks Voleks Mavisi filtre tatlıca yayılır */
.visual-card:hover .card-image::after {
    opacity: 0.25; /* Çok hafif, lüks bir mavi ton verir */
}

/* Alt çizgi yumuşakça belirir */
.visual-card:hover::after {
    background-color: var(--primary-color);
}

/* Ok işareti yağ gibi sağa kayar */
.visual-card:hover .card-link i {
    transform: translateX(6px);
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .visual-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section { padding: 70px 0; }
    .section-title h2 { font-size: 30px; }
    .card-image { height: 200px; }
    .card-body { padding: 20px; }
}



/* --- 7. PREMIUM KURUMSAL TANITIM ALANI --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light); /* Arka planı hafif gri yaparak hizmetlerden ayırıyoruz */
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Sol görsel, sağ metin alanı */
    gap: 60px;
    align-items: center;
}

/* Sol Sütun - Görsel ve Rozet */
.about-image-side {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-side:hover .about-img-wrapper img {
    transform: scale(1.03); /* Kurumsal ağırbaşlı hafif yaklaşma */
}

/* Lüks Tecrübe Rozeti */
.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(10, 61, 145, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-side:hover .experience-badge {
    transform: translateY(-5px); /* Mikro etkileşim */
}

.exp-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Sağ Sütun - Metin İçerikleri */
.about-content-side .title-tag {
    margin-bottom: 12px;
}

.about-content-side h2 {
    font-size: 38px;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content-side h2 strong {
    font-weight: 700;
    color: var(--primary-color);
}

.about-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 20px;
}

.about-content-side p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Kurumsal Maddeler */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* İkon Tasarımı */
.feature-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    flex-shrink: 0; /* İkonun sıkışmasını önler */
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 6px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.5;
}

/* --- RESPONSIVE OPTİMİZASYON --- */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; /* Mobilde alt alta gelirler */
        gap: 50px;
    }
    
    .about-image-side {
        padding-right: 0;
        padding-bottom: 0;
        max-width: 550px;
        margin: 0 auto; /* Görseli ortalar */
    }
    
    .about-img-wrapper {
        height: 380px; /* Mobilde yüksekliği biraz kıstık */
    }
    
    .experience-badge {
        padding: 20px;
    }
    
    .exp-number { font-size: 32px; }
    .exp-text { font-size: 11px; }
}

@media (max-width: 768px) {
    .about-section { padding: 60px 0; }
    .about-content-side h2 { font-size: 28px; }
}

/* --- KURUMSAL BUTON TASARIMI --- */
.about-action {
    margin-top: 35px;
}

.btn-about {
    padding: 15px 35px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px; /* Yazı ile ok arasındaki premium boşluk */
    box-shadow: 0 10px 25px rgba(10, 61, 145, 0.15);
}

.btn-about i {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* PREMIUM HOVER EFEKTİ */
.btn-about:hover {
    box-shadow: 0 15px 30px rgba(10, 61, 145, 0.25);
}

/* Butonun üzerine gelindiğinde ok işareti lüks bir ivmeyle sağa kayar */
.btn-about:hover i {
    transform: translateX(8px);
}



/* --- 8. PREMIUM APPOINTMENT & CONTACT TASARIMI --- */
.appointment-section {
    padding: 100px 0;
    background-color: var(--white);
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol bilgi, sağ geniş form kutusu */
    gap: 60px;
    align-items: start;
}

/* Sol Taraf - İletişim Bilgileri */
.contact-info-side h2 {
    font-size: 38px;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 20px;
}
.contact-info-side h2 strong {
    color: var(--primary-color);
    font-weight: 700;
}
.contact-info-side p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 35px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.c-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.c-card i {
    font-size: 22px;
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.c-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 2px;
}

.c-card a {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    transition: var(--transition);
}
.c-card a:hover { color: var(--primary-color); }

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

/* Sağ Taraf - Lüks Randevu Formu */
.appointment-form-side {
    position: relative;
}

.form-box {
    background-color: var(--white);
    padding: 45px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(10, 61, 145, 0.05); /* Yumuşacık lüks bir gölge */
}

.form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 8px;
}

.form-box p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Lüks Input Tasarımları */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
}

/* İkonlu Input Sarıcı Yapı */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #94a3b8; /* Soluk gri şık ikonlar */
    font-size: 16px;
    transition: var(--transition);
}

.input-wrapper input, 
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 45px; /* İkonun üstüne binmesin diye soldan boşluk */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black-color);
    background-color: var(--white);
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Textarea İçin İkon Hizalaması */
.text-area-wrapper i {
    top: 16px;
}
.input-wrapper textarea {
    resize: none;
}

/* FOCUS DURUMU (Müşteri tıklayınca pamuk gibi açılan mavi efekt) */
.input-wrapper input:focus, 
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10, 61, 145, 0.08); /* Hafif mavi parlama */
}

/* Müşteri inputa odaklanınca ikonun rengi de mavi olur */
.input-wrapper input:focus + i,
.input-wrapper input:focus ~ i,
.input-wrapper textarea:focus ~ i {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 15px;
    margin-top: 10px;
}
.btn-submit i {
    transition: transform 0.4s ease;
}
.btn-submit:hover i {
    transform: translate(4px, -2px); /* Gönder ikonu hafifçe uçuşa geçer */
}

/* --- RESPONSIVE OPTİMİZASYON --- */
@media (max-width: 992px) {
    .appointment-container {
        grid-template-columns: 1fr; /* Mobilde alt alta gelirler */
        gap: 50px;
    }
    .form-box {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr; /* Küçük ekranlarda yan yana inputlar tek sütun olur */
    }
}


/* --- 9. PREMIUM TESTIMONIALS CAROUSEL (DÜZELTİLMİŞ) --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* Şeritin dışarı taşmasını gizleyen ana kontrol alanı */
.testi-slider-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden; /* Kartların yanlardan taşan kısmını keser */
}

.testimonials-carousel {
    display: flex;
    width: 100%;
    /* Kayma geçiş animasyonunu yumuşatıyoruz */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}

/* Ekran boyutuna göre milimetrik genişlik formülü */
.testimonial-slide {
    flex: 0 0 calc(100% / 3); /* Büyük ekranda her kart tam genişliğin 3'te 1'i kadar olur */
    padding: 0 15px;
    box-sizing: border-box;
}

/* Yorum Kartı İç Tasarımı */
.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.testi-quote {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 28px;
    color: #cbd5e1;
}

.testi-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.testi-rating i {
    font-size: 14px;
    color: var(--primary-color);
}

.testi-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: auto; /* Profil alanını her zaman en alta sabitler */
}

.user-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.user-meta h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 2px;
}
.user-meta span {
    font-size: 13px;
    color: #94a3b8;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(10, 61, 145, 0.05);
}

/* Noktalar (Dots) Alanı */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.testi-dot.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* --- RESPONSIVE KIRILMALARI --- */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 50%; /* Tabletlerde yan yana 2 kart */
    }
}

@media (max-width: 768px) {
    .testimonials-section { padding: 60px 0; }
    .testimonial-slide {
        flex: 0 0 100%; /* Mobilde tek kart */
    }
}


/* --- 10. PREMIUM 3 KADEMELİ FOOTER TASARIMI --- */
.site-footer {
    background-color: #0b1329; /* Siyah/Mavi arası çok asil, derin bir kurumsal koyu ton */
    color: #94a3b8;
    position: relative;
}

/* --- KADEME 1: ULTRA-PREMIUM SOSYAL MEDYA BAR (ÇERÇEVELİ & EFEKTLİ) --- */
.footer-top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    background-color: #070d1e;
}

.footer-top-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-premium {
    display: flex;
    align-items: center;
    gap: 15px; /* Çerçevelerin yan yana asil durması için ideal boşluk */
}

/* Şık Çerçeveli İkon Butonları */
.premium-border-icon {
    width: 46px;
    height: 46px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25); /* İnce, şeffaf beyaz asil çerçeve */
    border-radius: 10px; /* Yumuşatılmış köşeli lüks görünüm */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    /* Pamuk gibi akan sinematik geçiş eğrisi */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* LÜKS MİKRO ETKİLEŞİM HOVER EFEKTLERİ */
.premium-border-icon:hover {
    color: var(--white);
    border-color: var(--white); /* Çerçeve net beyaz bir çizgiye dönüşür */
    background-color: var(--primary-color); /* Arka plan Voleks Mavisi ile dolar */
    transform: translateY(-4px); /* Hafif yukarı süzülme */
    
    /* Çerçevenin etrafına yayılan lüks neon mavi ışık halesi (Glow) */
    box-shadow: 0 10px 25px rgba(10, 61, 145, 0.4), 
                0 0 15px rgba(255, 255, 255, 0.1);
}

/* İkonun hover anında hafifçe büyüme ve parlaması */
.premium-border-icon i {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-border-icon:hover i {
    transform: scale(1.1); /* İkon çok hafif belirginleşir */
}

/* --- KADEME 2: ANA İÇERİK GRİDİ --- */
.footer-main-content {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr; /* Sütun genişlik dengeleri */
    gap: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Menü başlıklarının altındaki modern kurumsal çizgi */
.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Sütun 1: Logo ve Metin özel */
.footer-logo-img {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px; /* Alttaki kısa bilgi metniyle olan lüks boşluk */
}

.footer-logo-img img {
    height: 80px;     /* Header'daki logodan bir tık daha minimal, footer'a tam oturan yükseklik */
    width: auto;      /* Logonun orijinal en-boy oranını korur */
    display: block;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2)); /* Logoya hafif bir derinlik katar */
}

/* Mobil cihazlar için footer logo hizalaması */
@media (max-width: 576px) {
    .footer-logo-img {
        display: flex;
        justify-content: center; /* Mobilde her şey tek sütun olunca logoyu da ortalar */
    }
}

.about-widget p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
}

/* Sütun 2 & 3: Menü Listeleri */
.links-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-widget a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.links-widget a i {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* Menü Linki Hover Efekti */
.links-widget a:hover {
    color: var(--white);
    padding-left: 5px; /* Hafif sağa kayma */
}
.links-widget a:hover i {
    transform: translateX(3px);
    opacity: 1;
    color: var(--primary-color);
}

/* Sütun 4: İletişim Bilgileri */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    font-size: 14px;
    line-height: 1.5;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact-list a:hover {
    color: var(--white);
}

/* --- KADEME 3: COPYRIGHT BAR --- */
.footer-bottom-copyright {
    background-color: #070d1e; /* En alt kademe bir tık daha koyu */
    padding: 25px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-container strong {
    color: var(--white);
    font-weight: 600;
}

.designer-credit a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.designer-credit a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(10, 61, 145, 0.3);
}

/* --- FOOTER RESPONSIVE OPTİMİZASYON --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Tabletlerde 2x2 matris düzenine geçer */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-main-content {
        padding: 50px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde hepsi tek sütun alt alta dizilir */
        gap: 35px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}



/* --- 11. SERVICES ARCHIVE PAGE STYLES --- */
.archive-hero {
    position: relative;
    width: 100%;
    height: 300px; /* İç sayfalar için ideal, kullanıcıyı boğmayan premium yükseklik */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--black-color);
}

.archive-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.archive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 61, 145, 0.9) 0%, rgba(7, 13, 30, 0.95) 100%); /* Lüks kurumsal degrade kaplama */
}

.archive-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
}

.archive-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Breadcrumb Navigasyon Linkleri */
.breadcrumb-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-links a:hover {
    color: var(--white);
}

.breadcrumb-links i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-links span {
    color: var(--primary-color); /* Aktif sayfayı mavi tona çekiyoruz */
    font-weight: 500;
}

/* Listeleme Alanı Boşluğu */
.services-archive-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* --- ARCHIVE RESPONSIVE --- */
@media (max-width: 768px) {
    .archive-hero {
        height: 220px; /* Mobilde dikey alanı daraltıyoruz */
    }
    .archive-hero-content h1 {
        font-size: 32px;
    }
    .services-archive-section {
        padding: 60px 0;
    }
}


/* --- 12. ULTRA PREMIUM SERVICE DETAIL STYLES --- */
.service-detail-section {
    padding: 100px 0;
    background-color: var(--white);
}

.detail-container {
    display: grid;
    grid-template-columns: 300px 1fr; /* Sol menü sabit 300px, sağ içerik esnek */
    gap: 50px;
    align-items: start;
}

/* --- SOL SIDEBAR --- */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sidebar-widget {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    overflow: hidden;
}

/* Yan Menü Tasarımı */
.service-list-widget h3 {
    font-size: 18px;
    color: var(--black-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-list-widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list-widget li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background-color: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-list-widget li a i {
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

/* Menü Aktif & Hover Durumu */
.service-list-widget li:hover a,
.service-list-widget li.active a {
    background-color: #0a3d910a; /* Çok hafif saydam mavi arka plan */
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}
.service-list-widget li:hover a i {
    transform: translateX(3px);
    opacity: 1;
}

/* Lüks Destek Çağrı Kartı */
.support-widget {
    background: linear-gradient(145deg, #0a3d91 0%, #070d1e 100%);
    color: var(--white);
    text-align: center;
    border: none;
    position: relative;
}

.support-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-widget h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.support-widget p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.support-phone-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.support-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(10, 61, 145, 0.3);
}

/* --- SAĞ İÇERİK ALANI --- */
.detail-featured-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.detail-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-main-content h2 {
    font-size: 32px;
    color: var(--black-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.detail-lead {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--black-color);
    margin-bottom: 20px;
}

.detail-main-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Madde Işaretleri Grid Yapı */
.detail-bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 35px 0;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
}

.bullet-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* --- SIKÇA SORULAN SORULAR (AKORDEON) --- */
.detail-faq-area {
    margin-top: 50px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.detail-faq-area h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    background-color: var(--bg-light);
    font-weight: 600;
    font-size: 15px;
    color: var(--black-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}
.faq-question:hover { background-color: #f8fafc; }

/* --- SSS PREMIUM YUMUŞAK AKORDEON GEÇİŞLERİ --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    /* Açılış ve kapanış süresini 0.5 saniyeye çıkarıp, sinematik yavaşlama eğrisi ekledik */
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: var(--white);
}

.faq-answer p {
    padding: 20px 24px;
    margin-bottom: 0;
    font-size: 14px;
}

/* Akordeon Açık Durumu */
.faq-item.open .faq-answer {
    max-height: 300px; /* İçeriğin yüksekliğine yakın bir değer animasyonu daha da yumuşatır */
}
.faq-item.open .faq-question {
    background-color: var(--white);
    color: var(--primary-color);
    border-bottom: 1px solid #e2e8f0;
}

/* Mini Aksiyon Kutusu */
.detail-cta-box {
    margin-top: 50px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 8px 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.detail-cta-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 6px;
}
.detail-cta-box p { font-size: 14px; margin-bottom: 0; }

/* --- DETAY RESPONSIVE --- */
@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr; /* Mobilde alt alta gelirler */
        gap: 40px;
    }
    .detail-featured-image { height: 280px; }
    .detail-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .detail-bullets-grid {
        grid-template-columns: 1fr; /* Küçük ekranda maddeler tek sütun */
    }
    .detail-main-content h2 { font-size: 26px; }
}



/* --- 13. HAKKIMIZDA (ABOUT) İÇ SAYFA STYLES --- */
.about-page-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* İSTATİSTİK / SAYAÇ BARI TASARIMI */
.counter-section {
    padding: 60px 0;
    background-color: #070d1e; /* Footer ile uyumlu asil koyu ton */
    color: var(--white);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Yan yana nizamı 4 adet veri sütunu */
    gap: 30px;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    /* Hafif süzülme animasyonu */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color); /* Sayaç ikonları kurumsal mavi */
    font-size: 22px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 4px;
}

.counter-info p {
    font-size: 14px;
    color: #94a3b8; /* Soluk okunaklı gri */
    margin-bottom: 0;
}

/* --- ABOUT PAGE RESPONSIVE --- */
@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr); /* Tabletlerde 2x2 matris düzenine döner */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .about-page-section {
        padding: 60px 0;
    }
    .counter-section {
        padding: 50px 0;
    }
    .counter-grid {
        grid-template-columns: 1fr; /* Mobilde hepsi tek sütun alt alta dizilir */
        gap: 30px;
    }
    .counter-item {
        justify-content: center;
        text-align: left;
    }
}



/* --- 14. İLETİŞİM (CONTACT) İÇ SAYFA STYLES --- */
.contact-page-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* 3'lü Bilgi Kartları Düzeni */
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.c-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-action-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

/* Kart Hover Efekti */
.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(10, 61, 145, 0.05);
}
.contact-info-card:hover .c-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Sayfa İçi Form Kutusu */
.contact-page-form-wrapper {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(10, 61, 145, 0.03);
}

.contact-form-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.contact-form-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 10px;
}

.contact-form-title p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Tam Ekran Harita */
.contact-full-map {
    width: 100%;
    line-height: 0; /* Alttaki boşluk piksellerini yok eder */
    border-top: 1px solid #e2e8f0;
}

/* --- CONTACT RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr; /* Tablet ve mobilde kartlar alt alta dizilir */
        gap: 25px;
    }
    .contact-page-form-wrapper {
        padding: 30px 20px;
    }
}



/* --- 15. PREMIUM BLOG ARCHIVE STYLES --- */
.blog-archive-section {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-main-layout {
    display: grid;
    grid-template-columns: 1fr 320px; /* Yazılar geniş, sidebar dengeli 320px */
    gap: 50px;
    align-items: start;
}

/* Sol Taraf - Blog Kartları */
.blog-posts-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-list-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card-img {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Kartın sol üstündeki minimal tarih etiketi */
.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(10, 61, 145, 0.2);
}

/* Kart İçeriği */
.blog-card-content {
    padding: 35px;
}

.blog-meta-tags {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 15px;
}
.blog-meta-tags i { color: var(--primary-color); }

.blog-card-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}
.blog-card-content h2 a {
    color: var(--black-color);
    text-decoration: none;
    transition: var(--transition);
}
.blog-card-content h2 a:hover { color: var(--primary-color); }

.blog-card-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Premium Ok İşaretli Buton */
.blog-read-more-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-read-more-btn i {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- HOVER ETKİLEŞİMLERİ --- */
.blog-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 61, 145, 0.04);
}
.blog-list-card:hover .blog-card-img img {
    transform: scale(1.05); /* Görsel lüks bir şekilde yavaşça büyür */
}
.blog-list-card:hover .blog-read-more-btn i {
    transform: translateX(6px); /* Ok sağa doğru fırlar */
}

/* Sayfalama (Pagination) */
.blog-pagination {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.page-num {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.page-num.active, .page-num:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(10, 61, 145, 0.15);
}

/* --- SAĞ SIDEBAR (ARAMA & POPÜLER) --- */
.sidebar-search-form {
    position: relative;
    display: flex;
}
.sidebar-search-form input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    background-color: var(--bg-light);
    transition: var(--transition);
}
.sidebar-search-form input:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
}
.sidebar-search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

/* Popüler Yazılar Listesi */
.pop-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pop-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}
.pop-post-item img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
}
.pop-post-item h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.pop-post-item h4 a { color: var(--black-color); text-decoration: none; }
.pop-post-item h4 a:hover { color: var(--primary-color); }
.pop-post-item span { font-size: 12px; color: #94a3b8; }

/* --- BLOG RESPONSIVE --- */
@media (max-width: 992px) {
    .blog-main-layout {
        grid-template-columns: 1fr; /* Tablet ve mobilde sidebar alta düşer */
        gap: 50px;
    }
    .blog-card-img { height: 260px; }
}


/* --- 16. PREMIUM BLOG DETAIL STYLES --- */
.blog-detail-section {
    padding: 100px 0;
    background-color: var(--white);
}

.blog-detail-content {
    background-color: var(--white);
}

/* Büyük Manşet Görseli */
.post-featured-image {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta Bilgi Çubuğu */
.post-meta-details {
    display: flex;
    gap: 25px;
    font-size: 13px;
    color: #94a3b8;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 35px;
}
.post-meta-details i {
    color: var(--primary-color);
}

/* Makale İçeriği Tipografisi (UX Odaklı) */
.post-lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--black-color);
    margin-bottom: 25px;
}

.post-entry-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8; /* Rahat okuma aralığı */
    margin-bottom: 25px;
}

.post-entry-content h3 {
    font-size: 22px;
    color: var(--black-color);
    font-weight: 700;
    margin: 40px 0 20px 0;
}

/* Elit Alıntı Kutusu */
.post-blockquote {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 30px 40px;
    border-radius: 0 8px 8px 0;
    margin: 40px 0;
    position: relative;
}
.post-blockquote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 45px;
    color: rgba(10, 61, 145, 0.05); /* Arka planda dev transparan tırnak */
    line-height: 1;
}
.post-blockquote p {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Paylaşım Alt Barı */
.post-share-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.post-share-footer h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
}
.post-share-social {
    display: flex;
    gap: 10px;
}
.post-share-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}
.post-share-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- DETAY RESPONSIVE --- */
@media (max-width: 768px) {
    .post-featured-image { height: 260px; }
    .post-share-footer {
        flex-direction: column;
        text-align: center;
    }
    .post-blockquote {
        padding: 25px 20px;
    }
}


/* --- 17. ULTRA-PREMIUM BACK TO TOP BUTTON --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #070d1e; /* Koyu asil zemin */
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px; /* Sosyal medya ikonlarıyla uyumlu squircle köşeler */
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999; /* Her şeyin üstünde durması için */
    opacity: 0; /* İlk başta gizli */
    visibility: hidden;
    transform: translateY(20px); /* Aşağıdan yukarı doğru fırlama efekti için ilk konum */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Butonun Görünür Olduğu Durum (JS ile tetiklenecek) */
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Premium Hover Efekti (Glow & Süzülme) */
.back-to-top-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px); /* Hafif yukarı esneme */
    box-shadow: 0 10px 20px rgba(10, 61, 145, 0.4), 
                0 0 15px rgba(10, 61, 145, 0.6);
}

/* Telefonlarda parmak mesafesi için biraz yukarı alıyoruz */
@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}