/* --- PREMIUM ARCHITECTURE VARIABLES --- */
:root {
    --bg-color: #FDFBF7;           /* Lüks fildişi/krem arka plan */
    --text-primary: #0F0F0F;       /* Kurumsal mat derin siyah */
    --text-muted: #555555;         /* Okunabilir ikincil gri */
    --border-color: rgba(15, 15, 15, 0.08); /* Minimalist ince çizgiler */
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --transition-premium: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- 1. LOADER SCREEN STYLES (Aşağıdan Yukarıya Akıcı Geçiş) --- */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
/* JS ile bu sınıf eklendiğinde loader yukarı doğru kayacak */
.loader-overlay.hide {
    transform: translateY(-100%);
}
.loader-content {
    text-align: center;
    width: 280px; /* Logo görseline göre genişliği hafif esnettik */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loader-logo {
    margin-bottom: 35px; /* Bar ile logo arasındaki şık boşluk */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff; /* Eğer arka planın beyazsa burayı beyaz yap */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-overlay.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Gizlendiğinde tıklamayı engeller */
}

/* Çizginin zemini (Görünür olması için biraz daha koyu yapıyoruz) */
.loader-bar-container {
    width: 200px; /* Sabit genişlik daha profesyonel durur */
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2); /* Siyahın %20'si */
    position: relative;
    overflow: hidden;
}

/* Dolum barı */
.loader-bar {
    width: 0;
    height: 100%;
    background-color: #000; /* Barın rengi */
    transition: width 2s linear;
}
.loader-logo-img {
    max-width: 250px; /* Logonun genişliğini istediğin değerde kilitler */
    width: 100%;      /* Ekran küçükse daralmasını sağlar */
    height: auto;     /* Oranını korur */
    display: block;
    margin: 0 auto;   /* Ortalar */
}

/* --- 2. NAVBAR STYLES --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative; /* Sabit durması için */
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-premium);
}
.brand-logo-link:hover {
    opacity: 0.85; /* Premium bir hover efekti */
}

/* Navbardaki Logo Görseli İçin Orantılı Ölçüler */
.nav-logo-img {
    height: auto;
    max-height: 60px; /* Navbarı kabalaştırmayacak şekilde zarif yükseklik */
    width: auto;
    max-width: 180px; /* Geniş logolarda taşmayı önler */
    object-fit: contain;
}
.brand-logo {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 4px;
}
.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 2px;
    margin-top: 3px;
}
.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: 40px; /* Buradaki 20px değerini artırarak daha sağa, azaltarak daha sola çekebilirsin */
}
.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 400; /* Koyu/Kalın olmaması için 400 sabit kalıyor */
    opacity: 0.6;     /* Hepsi aynı pasif opaklıkta başlıyor */
    transition: var(--transition-premium);
    position: relative;
    padding-bottom: 5px;
}

nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-premium);
}

/* Hover ve Active durumlarında sadece alt çizgi beliriyor */
.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}
/* 1. header-actions bloğunu güncelliyoruz */
.header-actions {
    display: flex;
    align-items: center;
    /* gap'i kaldırıyoruz çünkü kontrolü margin ile sağlayacağız */
    gap: 0; 
}

/* 2. lang-switcher'a sağdan boşluk vererek iletişim butonunu itiyoruz */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 15px; /* Dil butonlarının kendi arasındaki boşluk */
    margin-right: 50px; /* İletişim butonunu sola doğru iten, aradaki mesafeyi belirleyen asıl değer */
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-primary);
    opacity: 0.4;
    transition: 0.3s;
    padding: 5px; /* Tıklanabilir alanı korur */
    margin: 0;
}

.lang-btn.active, .lang-btn:hover {
    opacity: 1;
    font-weight: 600;
}

.btn-nav-contact {
    /* Buradaki padding değerlerin orijinal stiliyle oynamadığımızdan kayma yapmaz */
    text-decoration: none;
    background-color: var(--text-primary);
    color: var(--bg-color);
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 12px 26px;
    font-weight: 500;
    transition: var(--transition-premium);
}

.btn-nav-contact:hover {
    background-color: transparent;
    color: var(--text-primary);
    box-shadow: inset 0 0 0 1px var(--text-primary);
}

/* Hamburger Menü İkonu (Responsive için) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 2001;
}
.menu-toggle .line {
    width: 25px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-premium);
}
/* Hamburger animasyonu active durumunda çarpı olacak */
.menu-toggle.active .line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle.active .line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* --- 3. MOBIL MENU OVERLAY (Görünmezlik Sorunu Çözülmüş Premium Yapı) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color); /* Lüks fildişi zemin */
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Menü Açıldığında Devreye Giren Sınıf */
.mobile-menu-overlay.active {
    transform: translateX(0);
}
/* BOMBOŞ DURMAYI ENGELLEYEN YENİ KAPSAYICI (HTML ile Tam Uyumlu) */
.mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 35px; /* Linklerin arası nefes alsın */
    width: 100%;
    text-align: center;
}
/* MOBİL LİNKLERİN KENDİ STİLLERİ (Görünmeme İhtimalini Yok Eden Alan) */
.mobile-nav-link {
    text-decoration: none !important;
    color: var(--text-primary) !important; /* Mat derin siyah - Jilet gibi okunur */
    font-family: var(--font-serif), serif;
    font-size: 2.2rem !important; /* Büyük, okunaklı editorial lüks boyut */
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    opacity: 0.8;
    transition: var(--transition-premium);
}

.mobile-nav-link:hover, 
.mobile-nav-link.active {
    opacity: 1;
    transform: scale(1.05);
}

.mobile-btn-contact {
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--text-primary);
    color: var(--bg-color);
    padding: 15px 40px;
    margin-top: 20px;
}

/* ==========================================================================
   GÜNDOĞDUTECH - SIFIRDAN ULTRA-PREMIUM MOBİL MENÜ MOTORU
   ========================================================================== */

/* Masaüstünde Hamburgeri Gizle */
.v-hamburger-btn {
    display: none !important;
    background: transparent !important;
    border: none !important;
    flex-direction: column !important;
    gap: 6px !important;
    cursor: pointer !important;
    z-index: 99999 !important; /* Perdenin de üstünde kalacak */
    padding: 10px !important;
}

.v-hamburger-btn .v-line {
    display: block !important;
    width: 26px !important;
    height: 1px !important;
    background-color: var(--text-primary, #0F0F0F) !important;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease !important;
}

/* Hamburger Aktifleştiğinde Çarpı (X) Animasyonu */
.v-hamburger-btn.v-active .v-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
}
.v-hamburger-btn.v-active .v-line:nth-child(2) {
    opacity: 0 !important;
}
.v-hamburger-btn.v-active .v-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
}

/* SIFIRDAN MOBİL PERDE (Ekranı Tam Kaplayan Katman) */
.v-mobile-curtain {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: #FDFBF7 !important; /* Projenin lüks krem/fildişi rengi */
    z-index: 99998 !important; /* Navbarın üstünde, butonun altında */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Sağdan sola yumuşak kayma hareketi */
    transform: translateX(100%) !important;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) !important;
    visibility: hidden !important; /* Kapalıyken tarayıcı belleğinde gizle */
}

/* Menü Açıldığında Tetiklenecek Kural */
.v-mobile-curtain.v-active {
    transform: translateX(0) !important;
    visibility: visible !important;
}

/* İçerik Konteyneri (Linkleri Ortala ve Yukarı Diz) */
.v-mobile-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 30px !important;
    width: 100% !important;
    padding: 20px !important;
}

/* BOMBOŞ DURMAYI BİTİREN LİNK STİLLERİ */
.v-mobile-item {
    font-family: var(--font-serif), serif !important;
    font-size: 2.2rem !important; /* Editorial büyük font */
    color: #0F0F0F !important; /* Mat kurumsal siyah yazılar */
    text-decoration: none !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.v-mobile-item:hover,
.v-mobile-item.active {
    opacity: 1 !important;
    transform: scale(1.05) !important;
}

/* İletişim Butonunun Premium Ayrışması */
.v-mobile-item.v-mobile-contact {
    font-family: var(--font-sans), sans-serif !important;
    font-size: 0.85rem !important;
    background-color: #0F0F0F !important;
    color: #FDFBF7 !important;
    padding: 14px 36px !important;
    margin-top: 15px !important;
    font-weight: 500 !important;
}

/* Mobil Dil Seçici Bölümü */
.v-mobile-languages {
    display: flex !important;
    gap: 20px !important;
    margin-top: 25px !important;
    border-top: 1px solid rgba(15, 15, 15, 0.08) !important;
    padding-top: 25px !important;
    width: 160px !important;
    justify-content: center !important;
}

.v-mobile-lang-btn {
    background: none !important;
    border: none !important;
    color: #0F0F0F !important;
    opacity: 0.4 !important;
    font-family: var(--font-sans), sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    letter-spacing: 1px !important;
    transition: opacity 0.3s ease !important;
}

.v-mobile-lang-btn.active {
    opacity: 1 !important;
    font-weight: 700 !important;
}

/* RESPONSIVE TETİKLEYİCİLER */
@media (max-width: 1024px) {
    .desktop-nav, 
    .main-header > .header-actions > .lang-switcher, 
    .main-header > .header-actions > .btn-nav-contact {
        display: none !important; /* Masaüstü elemanlarını mobilde tamamen kazı */
    }
    
    .v-hamburger-btn {
        display: flex !important; /* Hamburger butonunu piyasaya sür */
    }
}



/* ==========================================================================
   4. EXTENDED FLOATING LAYER HERO SECTION (Sola Doğru Genişletilmiş)
   ========================================================================== */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 86px); /* Navbar payı düşülmüş kusursuz tam ekran */
    padding: 0 6% 0 8%; /* Görsel sola genişleyeceği için sağ kenar boşluğunu biraz daralttık */
    background-color: var(--bg-color);
    overflow: hidden;
}

/* --- SOL VE ARKA KATMAN İÇERİK ALANI --- */
.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 550px;
    z-index: 2; /* Görsel kartının arkasında kalıp o gizemli derinliği yaratır */
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 7.5rem; /* İddialı, devasa ve kurumsal elite başlık */
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -3px;
    color: var(--text-primary);
    margin-bottom: 45px;
    text-transform: capitalize;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px; /* Geniş ve asil haute-couture harf aralığı */
    line-height: 1.8;
    color: var(--text-muted);
    border-left: 2px solid var(--text-primary); /* Net dikey asil çizgi */
    padding-left: 25px;
    margin-bottom: 45px;
    text-transform: uppercase;
    max-width: 380px;
}

/* Minimalist Buton */
.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 6px;
    transition: var(--transition-premium);
}

.btn-discover .arrow { 
    transition: var(--transition-premium); 
}

.btn-discover:hover {
    opacity: 0.7;
}

.btn-discover:hover .arrow { 
    transform: translateX(6px);
}


/* --- SAĞDAN SOLA DOĞRU GENİŞLETİLMİŞ YATAY GÖRSEL ALANI --- */
.hero-image-container {
    position: relative;
    /* İSTEDİĞİN DOKUNUŞ: Genişliği %45'ten %56'ya çıkararak görseli sola doğru uzattık */
    width: 56%; 
    /* Yüksekliği %65vh'den %60vh'ye çekerek dikey kabalığı bitirip tam bir yatay dikdörtgen yaptık */
    height: 60vh; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 3; /* Yazıların üzerine binen o premium katman hissi */
    perspective: 1000px; /* 3D hover derinliği için */
}

.hero-image-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px; /* Jilet gibi keskin, kurumsal ve modern mimari dikdörtgen */
    /* Havada asılı durma hissini pekiştiren, alt zeminle çakışmayan soft lüks gölge */
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.05); 
    position: relative;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Manzarayı bozmadan, kırpmadan alana kusursuz yayar */
    /* Pürüzsüz akan ve kesin çalışan sinematik nefes alma animasyonu */
    animation: floatingLayerBreathing 24s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
}

/* Mouse ile üzerine gelindiğinde sinematik mikro 3D dönüş hareketi */
.hero-image-container:hover .hero-image-card {
    transform: rotateY(-3deg) rotateX(1.5deg) scale(1.01);
}


/* --- SAF CSS SİNEMATİK NEFES ALMA ANİMASYONU --- */
@keyframes floatingLayerBreathing {
    0% {
        transform: scale(1.02) translateZ(0px);
    }
    50% {
        transform: scale(1.06) translateZ(8px); /* Derinlik veren yumuşak yaklaşma */
    }
    100% {
        transform: scale(1.02) translateZ(0px);
    }
}


/* ==========================================================================
   EKSİKSİZ RESPONSIVE DÜZEN (MİLİMETRİK MOBİL VE TABLET UYUMU)
   ========================================================================== */

@media (max-width: 1400px) {
    .hero-title {
        font-family: var(--font-serif);
        font-size: 6rem;
    }
    .hero-image-container {
        width: 54%;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 0 4%;
        gap: 20px;
    }
    .hero-title {
        font-size: 5.2rem;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column; /* Mobilde kusursuz dikey alt alta düzen */
        justify-content: center;
        padding: 80px 30px;
        min-height: auto;
        gap: 50px; /* Yazılar ile yatay görsel arasındaki mobil mesafe */
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center; /* Mobilde elit durması için içerik ortalanır */
        align-items: center;
        z-index: 4;
    }
    
    .hero-title {
        font-size: 4.8rem;
        line-height: 1.05;
        margin-bottom: 25px;
    }
    
    .hero-subtitle { 
        border-left: none; /* Mobilde ortalı düzen için dik çizgi kaldırılır */
        padding-left: 0; 
        margin: 0 auto 35px auto; 
    }
    
    .hero-image-container { 
        width: 100%;
        height: 40vh; /* Mobilde de şık bir yatay dikdörtgen oranını korur */
        justify-content: center;
        z-index: 3;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem; /* Küçük telefonlarda taşma yapmayan jilet boyut */
        letter-spacing: -1px;
    }
    
    .hero-image-container { 
        height: 32vh; /* Küçük ekranlarda altın oran yatay dikdörtgen alan */
    }
}


/* --- 5. STATS & MOTTO BANNER --- */
.motto-section {
    padding: 100px 50px;
    border-top: 1px solid var(--border-color);
}
.motto-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}
.section-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}
.motto-statement {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.3;
    max-width: 750px;
}
.stats-counters {
    display: flex;
    gap: 40px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* --- 6. FEATURED RESIDENCES --- */
.featured-section {
    padding: 100px 50px;
    border-top: 1px solid var(--border-color);
}
.featured-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.5fr;
    gap: 60px;
}
.featured-intro-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
}
.section-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 35px;
}
.slider-arrows { display: flex; gap: 15px; }
.arrow-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: var(--transition-premium);
}
.arrow-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}
.featured-cards-wrapper {
    display: flex;
    gap: 30px;
}
.property-card { flex: 1; }
.property-card:nth-child(2) { margin-top: 60px; } /* Asimetrik yerleşim efekti */
.card-img-holder {
    width: 100%;
    height: 360px;
    overflow: hidden;
    margin-bottom: 20px;
}
.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-premium);
}
.property-card:hover .card-img-holder img { transform: scale(1.04); }
.card-details h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.location {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* --- 7. SERVICES SECTION --- */
.services-section {
    padding: 100px 50px;
    border-top: 1px solid var(--border-color);
    background-color: #F8F5F0; /* Alanı ayırmak için çok hafif ton farkı */
}
.center-tag { text-align: center; }
.services-main-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-align: center;
    font-weight: 300;
    margin-bottom: 60px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.service-box {
    padding: 40px;
    border: 1px solid rgba(15, 15, 15, 0.05);
    background: var(--bg-color);
    transition: var(--transition-premium);
}
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.service-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}
.service-box h4 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.service-box p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --- 8. INTERMEDIATE CTA BANNER --- */
.cta-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 50px;
    text-align: center;
    color: var(--white);
}
.cta-overlay-content h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}
.cta-overlay-content p {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.btn-primary-white {
    text-decoration: none;
    background-color: var(--white);
    color: var(--text-primary);
    padding: 15px 35px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition-premium);
}
.btn-primary-white:hover {
    background-color: transparent;
    color: var(--white);
    box-shadow: inset 0 0 0 1px var(--white);
}

/* --- 9. PREMIUM ORANTIYLA AYARLANMIŞ FOOTER --- */
.premium-footer {
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 50px 30px 50px; /* Dev boyutta olmaması için padding sıkıştırıldı */
}
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    margin-bottom: 15px;
}
.footer-motto {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 320px;
    margin-bottom: 20px;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition-premium);
}
.footer-socials a:hover { transform: translateY(-3px); opacity: 0.7; }

.footer-block h4 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-premium);
}
.footer-nav ul li a:hover { color: var(--text-primary); padding-left: 5px; }

.footer-contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Alt Haklar Çizgisi */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.gundogdu-credit a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
}

/* --- 10. RESPONSIVE MEDIA QUERIES (TAM DÜZEN VE TERTİP) --- */
@media (max-width: 1024px) {
    .main-header { padding: 20px 30px; }
    .desktop-nav, .btn-nav-contact { display: none; }
    .menu-toggle { display: flex; } /* Hamburger aktif */
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }
    .hero-subtitle { border-left: none; padding-left: 0; margin: 0 auto 30px auto; }
    .hero-image-wrapper { justify-content: center; margin-top: 40px; }
    .hero-image-mask { width: 100%; height: 50vh; }
    
    .motto-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .stats-counters { justify-content: center; }
    
    .featured-grid { grid-template-columns: 1fr; gap: 40px; }
    .property-card:nth-child(2) { margin-top: 0; }
    .featured-cards-wrapper { flex-direction: column; gap: 40px; }
    
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}




/* ==========================================================================
   5. ULTRA-PREMIUM CORPORATE SECTION STYLES
   ========================================================================== */

.corporate-section {
    padding: 120px 10%;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    gap: 140px; /* Bölümler arasında nefes aldıran devasa lüks boşluklar */
}

/* --- ÜST BAŞLIK ALANI --- */
.corp-header {
    max-width: 800px;
    margin-bottom: 20px;
}

.corp-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.corp-main-title {
    font-family: var(--font-serif);
    font-size: 4.8rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
}

/* --- ASİMETRİK GRID YAPISI --- */
.corp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px; /* Görsel ve yazı arasındaki o net kurumsal mesafe */
}

/* Hakkımızda bloğunda görsel solda, değerlerde sağda olacak otomatik akış */
.values-block {
    grid-template-columns: 1fr 1fr;
}

/* --- GÖRSEL KUTULARI (Jilet Gibi Keskin & Kibar) --- */
.corp-image-box {
    width: 100%;
    height: 55vh; /* Kaba durmayan, yatay-dikdörtgen elite oran */
    overflow: hidden;
    border-radius: 0px; /* Oval tasarımlar tamamen reddedildi, keskin kurumsal hat */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
    position: relative;
}

.corp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Sürekli çok hafif sinematik nefes alma hareketi */
.animate-zoom img {
    animation: corpNefes 22s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.animate-zoom-reverse img {
    animation: corpNefesReverse 22s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* --- YAZI ALANLARI --- */
.corp-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.corp-section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.corp-paragraph {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 400;
    text-align: justify;
}

.corp-paragraph:last-child {
    margin-bottom: 0;
}

/* Vizyon & Misyon özel dikey yerleşimi */
.values-adjustment {
    gap: 50px;
}

.value-item {
    display: flex;
    flex-direction: column;
}

/* --- KUSURSUZ SINEMATIK ANIMASYONLAR --- */
@keyframes corpNefes {
    0% { transform: scale(1.02) rotate(0deg); }
    50% { transform: scale(1.06) translateY(-3px); }
    100% { transform: scale(1.02) rotate(0deg); }
}

@keyframes corpNefesReverse {
    0% { transform: scale(1.06) translateY(-3px); }
    50% { transform: scale(1.02) rotate(0deg); }
    100% { transform: scale(1.06) translateY(-3px); }
}

/* ==========================================================================
   MİLİMETRİK KURUMSAL RESPONSIVE DÜZEN
   ========================================================================== */

@media (max-width: 1200px) {
    .corporate-section {
        padding: 80px 6%;
        gap: 100px;
    }
    .corp-main-title {
        font-size: 3.8rem;
    }
    .corp-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .corporate-section {
        padding: 60px 4%;
        gap: 80px;
    }
    
    .corp-main-title {
        font-size: 3.2rem;
    }
    
    .corp-grid {
        grid-template-columns: 1fr !important; /* Mobilde her şey tek sütun alt alta */
        gap: 40px;
    }
    
    /* Vizyon ve Misyon alanında görselin mobilde alta gelmesi için sıralama ayarı */
    .values-block .corp-text-box {
        order: 1;
    }
    .values-block .corp-image-box {
        order: 2;
    }
    
    .corp-image-box {
        height: 40vh; /* Telefonlarda kibar duran yatay dikdörtgen oran */
    }
    
    .corp-text-box {
        text-align: center;
        align-items: center;
    }
    
    .corp-paragraph {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .corporate-section {
        padding: 50px 20px;
        gap: 70px;
    }
    .corp-main-title {
        font-size: 2.4rem;
    }
    .corp-section-title {
        font-size: 2rem;
    }
    .corp-image-box {
        height: 32vh;
    }
}




/* ==========================================================================
   ULTRA-PREMIUM SERVICES PAGE STYLES
   ========================================================================== */

/* Hizmetler Hero Alanı */
.services-hero {
    padding: 140px 10% 80px 10%;
    background-color: var(--bg-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.srv-hero-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.srv-hero-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Hizmet Kartları Bölümü */
.services-detailed-section {
    padding: 100px 10%;
    background-color: var(--bg-color);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-detailed-card {
    background-color: #F8F5F0; /* Kart zemininde hafif kontrast lüks bej */
    padding: 50px 40px;
    border: 1px solid rgba(15, 15, 15, 0.03);
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    background-color: var(--white);
    box-shadow: 0 20px 50px rgba(15, 15, 15, 0.05);
}

.srv-card-icon {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.srv-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.srv-card-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Kart İçi Alt Detay Listesi */
.srv-sub-list {
    list-style: none;
    margin-top: auto; /* Listeyi kartın en altına kilitler, hizayı bozmaz */
    border-top: 1px solid rgba(15, 15, 15, 0.08);
    padding-top: 20px;
}

.srv-sub-list li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.srv-sub-list li i {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* --- SÜREÇ ADIMLARI (PROCESS) --- */
.process-section {
    padding: 120px 10%;
    background-color: #111111; /* Derinlik katmak için sürece asil koyu zemin */
    color: #FDFBF7;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: rgba(253, 251, 247, 0.5);
    display: block;
    margin-bottom: 15px;
}

.process-main-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 300;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(253, 251, 247, 0.1);
    display: block;
    margin-bottom: -10px;
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.process-step p {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(253, 251, 247, 0.7);
}

/* ==========================================================================
   SERVICES RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .srv-hero-title { font-size: 3rem; }
    .services-detailed-grid, 
    .process-steps-grid {
        grid-template-columns: 1fr; /* Mobilde dikey akış */
        gap: 30px;
    }
    .services-detailed-section { padding: 60px 5%; }
    .process-section { padding: 80px 5%; }
}




/* ==========================================================================
   ULTRA-PREMIUM CONTACT PAGE STYLES (NO-BLUE PHONES & MAP)
   ========================================================================== */

/* İletişim Hero Alanı */
.contact-hero {
    padding: 140px 10% 60px 10%;
    background-color: var(--bg-color);
    text-align: center;
}

.cnt-hero-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.cnt-hero-title {
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

/* Detay Grid Alanı */
.contact-details-section {
    padding: 60px 10% 100px 10%;
    background-color: var(--bg-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.info-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    opacity: 0.9;
}

.info-block h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.info-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Linkleri ve E-postaları Özelleştirme */
.info-text a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-premium);
}

.info-text a:hover {
    color: var(--text-primary);
}

/* TELEFON NUMARALARININ MAVİ VE ALTININ ÇİZİLİ OLMASINI ENGELLEYEN KURAL */
.protected-phone,
a[href^="tel"] {
    color: var(--text-muted) !important; /* Mavi yerine kurumsal griye zorla */
    text-decoration: none !important; /* Alt çizgiyi kaldır */
    font-family: var(--font-sans) !important;
    pointer-events: auto; /* Tıklanabilirliği koru ama stili bozma */
}

.protected-phone:hover,
a[href^="tel"]:hover {
    color: var(--text-primary) !important; /* Hover olunca hafif parlasın */
}

/* Harita Sorununu Çözen Konteyner Ayarı */
.contact-map-section {
    width: 100%;
    height: 55vh; 
    background-color: var(--bg-color);
    padding: 0 10% 100px 10%;
}

.map-container {
    width: 100%;
    height: 100%;
    /* Haritayı premium kurumsal konsepte uyduran minimalist koyu ton filtresi */
    filter: grayscale(1) invert(0.92) contrast(1.1); 
    border: 1px solid var(--border-color);
    transition: var(--transition-premium);
}

/* Haritaya mouse ile gelindiğinde hafifçe canlanma efekti */
.map-container:hover {
    filter: grayscale(0.2) invert(0) contrast(1); /* Hover olunca orijinal renkler hafifçe gelir */
}
/* SAYFAYLA BERABER AKAN SOL KONTEYNER */
.v-sticky-left-socials {
    position: fixed;
    bottom: 50%;
    left: 30px;
    transform: translateY(50%); /* Tam dikey ortalama */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; /* Sayfadaki içeriklerin üstünde kalsın */
}

/* İkonların Kurumsal Lüks Duruşu */
.sticky-social-icon {
    width: 48px;
    height: 48px;
    background-color: var(--text-primary, #0F0F0F); /* Sitenin mat derin siyahı */
    color: var(--bg-color, #FDFBF7); /* Fildişi tonu */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 0px; /* Jilet gibi keskin kurumsal köşe çizgisi */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Efektleri (Yeşil veya Pembe Yapıp Tasarımı Bozmuyoruz, Elit Çevirme Yapıyoruz) */
.sticky-social-icon:hover {
    background-color: var(--white, #FFFFFF);
    color: var(--text-primary, #0F0F0F);
    transform: translateX(5px) scale(1.05); /* Sağa doğru hafifçe esner */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE: Mobilde Butonların Altta Zarif Durması (Solu Kapatmasın) */
@media (max-width: 768px) {
    .v-sticky-left-socials {
        bottom: 20px;
        left: 20px;
        transform: none;
        flex-direction: row; /* Yan yana dizilim */
        gap: 10px;
    }
    
    .sticky-social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}
/* ==========================================================================
   CONTACT RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .cnt-hero-title { font-size: 2.8rem; }
    .contact-info-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta sıralansın */
        gap: 40px;
        padding-top: 40px;
    }
    .contact-details-section { padding: 40px 5% 60px 5%; }
    .contact-map-section { 
        height: 40vh; 
        padding: 0 5% 60px 5%; 
    }
}

/* 1. Kapsayıcı: Görselin sınırlarını belirliyoruz */
.featured-intro-img {
    overflow: hidden; /* Animasyon sırasında dışarı taşmayı engeller */
    position: relative;
    border-radius: 0; /* Eğer köşeleri yuvarlatmak istersen buraya değer gir */
}

/* 2. Resim: Animasyonun kendisi */
.featured-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Geçişi yumuşatmak için transition */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

/* 3. Fare Üzerindeyken (Hover): Yakınlaştırma efekti */
.featured-intro-img:hover img {
    transform: scale(1.08); /* Hafifçe %8 büyüterek premium etki yaratır */
}



/* Loader ve Menü Geçişleri İçin Gerekli Kurallar */
.loader-overlay.hide {
    display: none !important;
}

.v-mobile-curtain.active {
    display: block !important;
}

/* Dil butonlarının aktif durumunu belirtmek için */
.lang-btn.active {
    opacity: 1;
    text-decoration: underline;
}