@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Manrope:wght@400;500;600;700&display=swap');
 
:root {
    --bg: #0d2118;
    --bg-alt: #0f261b;
    --gold: #c5a059;
    --gold-soft: rgba(197, 160, 89, 0.25);
    --gold-hairline: rgba(197, 160, 89, 0.18);
    --sage: #5d6f46;
    --cream: #f4f0e6;
    --text-muted: #a8b3a2;
    --text-faint: #6f7b6e;
    --serif: 'Playfair Display', serif;
    --sans: 'Manrope', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
 
* { margin: 0; padding: 0; box-sizing: border-box; }
 
html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
 
body {
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--cream);
    font-family: var(--sans);
}
 
a { color: inherit; }
 
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
}
 
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
 
/* ============ ALTIN İPLİK — scroll progress ============ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--gold);
    z-index: 2000;
    transition: width 0.1s linear;
}
 
/* ============ ÖZEL İMLEÇ ============ */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 1999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring {
    width: 32px; height: 32px;
    border: 1px solid var(--gold-soft);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-ring.is-active { width: 56px; height: 56px; border-color: var(--gold); background: rgba(197,160,89,0.08); }
@media (pointer: coarse), (max-width: 992px) {
    .cursor-dot, .cursor-ring { display: none; }
}
body.has-fine-cursor { cursor: none; }
body.has-fine-cursor a, body.has-fine-cursor button { cursor: none; }

body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
    touch-action: none !important; /* Mobil cihazlarda kaydırma hareketlerini engeller */
}

body.scroll-locked {
    overflow: hidden !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
 
/* ============ NAVBAR ============ */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
header.scrolled {
    background: rgba(13, 33, 24, 0.82);
    backdrop-filter: blur(14px);
    padding: 16px 80px;
    border-bottom: 1px solid var(--gold-hairline);
}

/* 1. Menü Açıldığında Navbar ve Diğer Alanların Arkada Sabit Durması ve Taşmaması İçin */
body.nav-open {
    overflow: hidden; 
    position: fixed;
    width: 100%;
    height: 100%;
}
 
.nav-logo { height: 150px; cursor: pointer; margin-top: -20px; transition: height 0.4s var(--ease), margin 0.4s var(--ease); }
header.scrolled .nav-logo { height: 64px; margin-top: 0; }
 
/* 2. Navigasyon Menüsünün Tüm Ekranı Kaplaması ve Hafif Şeffaf (Transparan) Olması */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Tam ekran yüksekliği */
    
    /* İsteğinize uygun modern, hafif şeffaf cam efekti (backdrop-filter desteklemeyenler için arka plan rengi) */
    background-color: rgba(15, 44, 21, 0.92); /* Buradaki renk kodunu kendi sitenizin koyu rengiyle değiştirebilirsiniz, 0.92 şeffaflık oranıdır */
    backdrop-filter: blur(10px); /* Arkayı hafif buluşturan şık cam efekti */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* Başlangıçta gizli ve tıklanamaz olması için */
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease, visibility 0.5s;
    z-index: 998; /* Header'ın hemen altında ama içeriklerin üstünde */
}

/* Menü .active olduğunda görünürlük ayarları */
.nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* 3. Mobil Menü İçi Linklerin Tasarımı */
.nav-menu li {
    margin: 20px 0;
}

.nav-menu a {
    font-size: 22px;
    color: var(--cream, #fff);
    text-decoration: none;
}

header.scrolled .nav-menu { margin-top: 0; }
 
nav a {
    color: #e3e3da !important;
    text-decoration: none;
    margin: 0 12px; /* Linkler arası mesafeyi biraz daraltabiliriz */
    font-size: 5px; /* Yazı boyutunu daha minimal bir seviyeye indirdik */
    letter-spacing: 0.8px; /* Küçük yazılarda premium duruş için harf aralığını artırdık */
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
nav a.active { color: var(--gold) !important; }
nav a.active::after { width: 100%; }
nav a:hover { color: #fff !important; }
nav a:hover::after { width: 100%; }
 
/* ============ HERO ============ */
.hero { display: flex; align-items: center; justify-content: space-between; padding: 0 80px; height: 88vh; position: relative; }
.hero-content { width: 45%; }
.hero-content h1 { font-size: 85px; line-height: 1.08; margin: 22px 0; font-family: var(--serif); color: var(--cream); }
.subtitle { color: var(--gold); letter-spacing: 3px; font-size: 13px; font-weight: 600; }
.desc { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; font-size: 16px; max-width: 420px; }
 
/* Slider ve Jar Temeli */
.hero-slider { 
    width: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; /* Pozisyonu korumak için */
}
.jar { 
    height: 300px; 
    cursor: pointer; 
    transition: transform 0.3s ease; /* Sadece boyut değişimi kalsın */
    opacity: 1; 
    filter: none !important; /* Griliği tamamen iptal ettik */
}

.main-jar { 
    height: 380px; 
    z-index: 2; 
    margin: 0 -20px; 
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.5)) grayscale(0%);
    animation: jar-breathe 6s ease-in-out infinite; 
}
.side-jar { opacity: 0.7; filter: grayscale(50%); }
/* KURUMSAL GEÇİŞ: Yana doğru kayarak ve eriyerek değişim */
.jar.fade-out { 
    opacity: 0; 
    transform: translateX(-30px) scale(0.9); 
    filter: blur(10px) grayscale(100%);
}
@keyframes jar-breathe { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.015); } }
 
.scroll-cue {
    position: absolute;
    bottom: 30px; left: 80px;
    display: flex; align-items: center; gap: 12px;
    color: var(--text-faint);
    font-size: 11px;
    letter-spacing: 2px;
}
.scroll-cue-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue-line::after {
    content: "";
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--cream);
    animation: cue-drop 2.2s ease-in-out infinite;
}
@keyframes cue-drop { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
 
/* ============ BUTONLAR ============ */
.btn {
    padding: 15px 30px;
    cursor: pointer;
    border: 1px solid var(--gold);
    background: transparent;
    color: #fff;
    margin-right: 15px;
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.15s ease, border-color 0.3s ease;
}
.btn.primary { background: var(--sage); border-color: var(--sage); }
.btn.primary:hover { background: #4b5a39; }
.btn.secondary:hover { background: rgba(197,160,89,0.1); }
.btn.full-width { width: 100%; margin-right: 0; text-align: center; }
.magnetic { will-change: transform; }
 
.features { display: flex; gap: 30px; margin-top: 50px; border-top: 1px solid var(--gold-hairline); padding-top: 20px; font-size: 12px; }
.features span { position: relative; padding-left: 14px; letter-spacing: 0.5px; color: var(--text-muted); }
.features span::before {
    content: "";
    position: absolute;
    left: 0; top: 4px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
 
/* ============ YAPRAKLAR (Premium Hareket) ============ */
.leaf {
    position: absolute !important;
    pointer-events: none !important;
   z-index: 0 !important;          /* Başlıkların altına çekildi (z-index: 0) */
    will-change: transform;
    animation: wind-blow-premium 15s ease-in-out infinite alternate !important;
    transform-origin: center center;
}

@keyframes wind-blow-premium {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(30px) translateY(-15px) rotate(10deg); }
    66% { transform: translateX(-20px) translateY(10px) rotate(-5deg); }
}

/* Her bir yaprağa daha farklı bir varyasyon ekleyelim */
.leaf-1 { top: 10%; left: 5%; width: 120px; animation-duration: 14s; }
.leaf-2 { bottom: 10%; left: 15%; width: 90px; animation-duration: 11s; animation-delay: -2s; }
.leaf-3 { top: 15%; right: 5%; width: 100px; animation-duration: 15s; }
.leaf-4 { top: 60%; right: 10%; width: 80px; animation-duration: 10s; animation-delay: -4s; }
.leaf-5 { bottom: 20%; right: 20%; width: 110px; animation-duration: 18s; }
 
/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); filter: blur(0px); }
 
/* ============ ORTAK BAŞLIK STİLLERİ ============ */
.sub-title { color: var(--gold); letter-spacing: 4px; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.section-title { font-size: 50px; font-family: var(--serif); margin: 18px 0 0; color: var(--cream); }
.about-text { max-width: 640px; font-size: 17px; line-height: 1.85; color: var(--text-muted); margin-top: 24px; }
 
/* ============ KURUMSAL ============ */
.about-section { 
    padding: 140px 80px; 
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; max-width: 1300px; margin: 0 auto; }
 
.value-strip { display: flex; gap: 0; margin-top: 50px; border-top: 1px solid var(--gold-hairline); padding-top: 36px; }
.value-item { flex: 1; padding-right: 30px; border-right: 1px solid var(--gold-hairline); }
.value-item:last-child { border-right: none; padding-right: 0; }
.value-item h4 { font-family: var(--serif); font-size: 19px; color: var(--gold); margin-bottom: 10px; }
.value-item p { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }
 
.about-stats { display: flex; flex-direction: column; gap: 46px; padding-top: 10px; border-left: 1px solid var(--gold-hairline); padding-left: 50px; }
.stat-block { display: flex; flex-direction: column; }
.stat-number { font-size: 52px; font-weight: 700; color: var(--gold); font-family: var(--serif); display: inline; }
.stat-suffix { font-size: 30px; color: var(--gold); font-family: var(--serif); }
.stat-label { font-size: 12px; letter-spacing: 1.5px; color: var(--text-faint); text-transform: uppercase; margin-top: 6px; }
 
/* ============ ÜRETİM SÜRECİ — Timeline ============ */
.process-section { padding: 60px 80px 150px; }
.process-intro { text-align: center; margin-bottom: 90px; }
.process-intro .section-title { margin-top: 18px; }
 
.timeline { max-width: 1200px; margin: 0 auto; position: relative; }
.timeline-line { position: relative; height: 1px; background: var(--gold-hairline); margin: 0 10px 60px; }
.timeline-fill { position: absolute; top: 0; left: 0; height: 1px; width: 0%; background: var(--gold); transition: width 1.8s var(--ease); }
.timeline.in-view .timeline-fill { width: 100%; }
 
.timeline-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.timeline-step { position: relative; text-align: left; padding-top: 26px; }
.timeline-step::before {
    content: "";
    position: absolute;
    top: -64px; left: 0;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--gold-hairline);
}
.step-number { font-family: var(--serif); font-size: 34px; color: var(--gold); opacity: 0.7; display: block; margin-bottom: 8px; }
.timeline-step h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.timeline-step p { font-size: 13.5px; line-height: 1.7; color: var(--text-muted); }
 
/* ============ ÜRÜNLER / SHOWROOM ============ */
/* Slider Kapsayıcısı */
.showroom-section {
   width: 100vw !important; /* Ekranın %100'ü */
   left: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    background-color: #0d2118;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider-container {
  width: 100vw;
    max-width: 1300px; /* Çok geniş ekranlarda slider'ın dağılmasını önler */
  height: 80vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none; /* Kenarlık varsa kaldır */
    background: transparent;
}

/* Renkleri Sitemize Uyarladık */
.now-showing { color: #c5a059 !important; }
.now-showing::before { background: #c5a059 !important; }
.spec-value { color: #c5a059 !important; }
.badge-icon { background: #c5a059 !important; }
.add-button { border: 2px solid #c5a059 !important; }
.add-button::before, .add-button::after { background: #c5a059 !important; }

/* Accordion Slider'ın orijinal davranışını koruyoruz */
.accordion-slider {
    display: flex;
    width: 100%;
    height: 100%;
}


body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Yatay kaydırmayı önle */
}
.slide { 
    flex: 1; position: relative; cursor: pointer; 
    background-size: cover; background-position: center; 
    filter: grayscale(1); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active { flex: 4; filter: grayscale(0); } /* Aktif olunca daha fazla genişlesin */

.slider-container {
   width: 100vw; /* Sayfanın tamamını kapla */
    max-width: 1300px;
  height: 85vh; /* İstersen 100vh yaparak tam ekran yapabilirsin */
   margin: 0;
   position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Kurumsal altın çerçeve */
    background: #0d2118; /* Koyu yeşil arka plan */
    padding: 0;
    border: none; /* Kenarlık varsa kaldır */
    
}

/* Başlık */
.now-showing {
    position: absolute;
    top: 25px;
    left: 25px;
    color: #c5a059 !important; /* Altın rengi */
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 10;
}

.now-showing::before {
	content: "";
	width: 6px;
	height: 6px;
	.now-showing::before {
    background: #c5a059 !important;
}
	border-radius: 50%;
}

.accordion-slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
	flex: 1;
	position: relative;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
	filter: grayscale(0.6); /* Hafif gri tonlama ile premium hava */
}

.slide:hover {
	filter: grayscale(0);
}

.slide.active {
    flex: 3; /* Aktif ürün daha fazla alan kaplasın */
    filter: grayscale(0); /* Aktif ürün renkli */
}

.slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
}

.slide-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	color: white;
	z-index: 2;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    transform: translateY(20px);
}

.slide.active .slide-content {
	bottom: 80px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    opacity: 1;
    max-height: 800px;
    transform: translateY(0);
}

.slide-number {
	font-size: 64px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1;
	position: absolute;
	bottom: 30px;
	left: 30px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-number {
	bottom: auto;
	top: -50px;
	font-size: 48px;
	left: 0;
}

.car-brand {
	font-size: 16px;
	font-weight: 700;
	color: #c5a059 !important; /* Altın detay */
	margin-bottom: 5px;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	position: absolute;
	bottom: 100px;
	left: 30px;
	white-space: nowrap;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .car-brand {
	transform: rotate(0deg);
	position: static;
	transform-origin: unset;
}

.car-name {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .car-name {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.car-subtitle {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .car-subtitle {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.4s;
}

.car-specs {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .car-specs {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.spec-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
	font-size: 14px;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .spec-row {
	opacity: 1;
	transform: translateX(0);
}

.slide.active .spec-row:nth-child(1) {
	transition-delay: 0.6s;
}
.slide.active .spec-row:nth-child(2) {
	transition-delay: 0.65s;
}
.slide.active .spec-row:nth-child(3) {
	transition-delay: 0.7s;
}
.slide.active .spec-row:nth-child(4) {
	transition-delay: 0.75s;
}

.spec-label {
	color: rgba(255, 255, 255, 0.7);
}

.spec-value {
	color: #c5a059 !important; /* Altın değerler */
    font-weight: 600;
}



.performance-badges {
	display: flex;
	gap: 12px;
	margin-top: 15px;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0s;
}

.slide.active .performance-badges {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.8s;
}

.badge {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .badge {
	opacity: 1;
	transform: scale(1);
}

.slide.active .badge:nth-child(1) {
	transition-delay: 0.85s;
}
.slide.active .badge:nth-child(2) {
	transition-delay: 0.9s;
}
.slide.active .badge:nth-child(3) {
	transition-delay: 0.95s;
}

.badge-icon {
	width: 8px;
	height: 8px;
	background: #c5a059 !important;
	border-radius: 50%;
}

.add-button {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 32px;
	height: 32px;
	background: transparent;
	border: 2px solid #c5a059 !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
	z-index: 3;
}

.add-button::before,
.add-button::after {
	content: "";
	position: absolute;
	background: #c5a059 !important;
	transition: all 0.4s ease;
}

.add-button::before {
	width: 12px;
	height: 2px;
}

.add-button::after {
	width: 2px;
	height: 12px;
	transform: rotate(0deg);
}

.slide.active .add-button::before {
	transform: rotate(0deg);
}

.slide.active .add-button::after {
	opacity: 0;
	transform: scale(0);
}

.navigation-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(197, 160, 89, 0.2); /* Hafif altın şeffaf */
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 4;
	backdrop-filter: blur(5px);
}

.nav-prev {
	left: 20px;
}

.nav-next {
	right: 20px;
}

.navigation-arrows:hover {
	background: rgba(197, 160, 89, 0.5);
}

@media (max-width: 768px) {
	.accordion-slider {
		flex-direction: column;
	}

	.slide {
		flex: 1;
		min-height: 80px;
	}

	.slide.active {
		flex: 2;
	}

	.slide-number {
		font-size: 32px;
	}

	.car-brand {
		transform: none;
		position: static;
	}
}

/* Tüm sayfa boşluklarını temizle */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Taşmayı engelle */
}


/* Başlangıç durumu (Görünmez ve hafif aşağıda) */
.showroom-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animasyon tetiklendiğinde (Ekrana girdiğinde) */
.showroom-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}







 
/* ============ KALİTE — Trust Strip ============ */
.quality-section { padding: 140px 80px; text-align: center; }
.quality-intro { max-width: 700px; margin: 0 auto; }
.quality-intro .about-text { margin-left: auto; margin-right: auto; }
 
.trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 60px auto 0;
    max-width: 1000px;
    border-top: 1px solid var(--gold-hairline);
    border-bottom: 1px solid var(--gold-hairline);
}
.trust-item {
    flex: 1;
    min-width: 200px;
    padding: 26px 24px;
    font-size: 13.5px;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    border-right: 1px solid var(--gold-hairline);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--gold); font-size: 13px; }
.cert-note { font-size: 12px; color: var(--text-faint); margin-top: 26px; }
 
/* ============ MÜŞTERİ DENEYİMİ — Quote Rotator ============ */
.testimonial-section { padding: 140px 80px; text-align: center; }
.testimonial-intro { margin-bottom: 60px; }
 
.quote-rotator { max-width: 760px; margin: 0 auto; position: relative; display: flex; align-items: center; justify-content: center; gap: 24px; }
.quote-track { position: relative; min-height: 160px; flex: 1; display: flex; align-items: center; justify-content: center; }
.quote { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); pointer-events: none; }
.quote.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.6; color: var(--cream); margin-bottom: 20px; }
.quote cite { font-size: 13px; color: var(--gold); letter-spacing: 0.5px; font-style: normal; }
 
.quote-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold-hairline); background: transparent; color: var(--cream); font-size: 18px; cursor: pointer; transition: border-color 0.3s ease, color 0.3s ease; flex-shrink: 0; }
.quote-arrow:hover { border-color: var(--gold); color: var(--gold); }
 
.quote-dots { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-hairline); cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; }
.dot.active { background: var(--gold); transform: scale(1.3); }
 
/* ============ İLETİŞİM ============ */
.contact-section { padding: 140px 80px 150px; }
.contact-intro { text-align: center; margin-bottom: 70px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; max-width: 1100px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item h4 { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.contact-item p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
 
.contact-form { display: flex; flex-direction: column; gap: 26px; }
.form-row { display: flex; gap: 26px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;background: transparent;
    border-bottom: 1px solid var(--gold-hairline);
    color: #fff;
    padding: 10px 2px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-faint); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-success { display: none; color: var(--gold); font-size: 13px; margin-top: 4px; }
.form-success.visible { display: block; }
 
/* ============ FOOTER ============ */
.site-footer {
     background: transparent;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer-section h4 { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-section p, .footer-section li { font-size: 12px; line-height: 1.7; color: #aab0a5; margin-bottom: 6px; list-style: none; }
.footer-section li a { color: #aab0a5; text-decoration: none; transition: color 0.3s ease; }
.footer-section li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1100px; margin: 40px auto 0; padding-top: 18px; border-top: 1px solid var(--gold-hairline); display: flex; justify-content: space-between; font-size: 11px; color: #666; }
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .menu-toggle { display: block !important; visibility: visible !important; order: 3 !important; z-index: 9999 !important; }
    .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background: white !important; }
    .logo-link { order: 1 !important; margin: 0 !important; }
    .nav-logo { height: 120px !important; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        
        background-color: rgba(15, 44, 21, 0.92); 
        backdrop-filter: blur(10px); 
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* Başlangıçta gizli ve hamburger menüye saklanmış olması için */
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease, visibility 0.5s;
        z-index: 998;
    }
    .nav-menu a { font-size: 19px !important; font-weight: 400 !important; margin: 10px 0 !important; color: white !important; text-decoration: none !important; letter-spacing: 1px !important; display: block !important; text-align: center !important; width: 100% !important; }
    .nav-menu a:hover { color: var(--gold) !important; }
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-menu li {
        margin: 20px 0;
    }
    header { padding: 15px 20px !important; flex-direction: row !important; justify-content: space-between !important; align-items: center !important; }
    header.scrolled { padding: 12px 20px !important; }
    header.scrolled .nav-logo { height: 64px !important; }
 
    .hero { flex-direction: column; height: auto; text-align: center; padding-top: 20px !important; margin-top: 20px !important; }
    .hero-content { width: 100%; margin-bottom: 30px; }
    .hero-content h1 { font-size: 48px; line-height: 1.1; margin: 20px auto; text-align: left !important; }
    .desc { font-size: 15px; padding: 0 2px; margin-bottom: 30px; max-width: 100%; }
    .hero-btns { display: flex; flex-direction: column !important; gap: 10px !important; width: 80% !important; margin: 0 auto !important; }
    .btn { width: 100% !important; margin: 0 !important; padding: 12px 0 !important; font-size: 14px !important; text-align: center; }
    .features { flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px; }
    /* Slider ve Jar Temeli */
.hero-slider { 
    width: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; /* Pozisyonu korumak için */
}
    .jar { 
    height: 200px; 
    cursor: pointer; 
    /* Yavaşça değişen opaklık ve yumuşak bir süzülme */
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s ease;
    opacity: 1;
    filter: none;
}
    .main-jar { 
    height: 300px; 
    z-index: 2; 
    margin: 0 -20px; 
    filter: none;
    animation: jar-breathe 6s ease-in-out infinite; 
}
    .side-jar { opacity: 0.7; filter: grayscale(50%); }
    /* KURUMSAL GEÇİŞ: Yana doğru kayarak ve eriyerek değişim */
.jar.fade-out { 
    opacity: 0; 
    transform: translateX(-30px) scale(0.9); 
    filter: blur(10px) grayscale(100%);
}
    .scroll-cue { display: none; }
 
    .about-section { padding: 70px 24px; }
    .section-title { font-size: 34px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-stats { flex-direction: row; flex-wrap: wrap; gap: 30px; border-left: none; padding-left: 0; border-top: 1px solid var(--gold-hairline); padding-top: 30px; }
    .value-strip { flex-direction: column; gap: 24px; }
    .value-item { border-right: none; padding-right: 0; }
 
    .process-section { padding: 50px 24px 80px; }
    .timeline-steps { grid-template-columns: 1fr; gap: 36px; }
    .timeline-step::before { top: -20px; }
    .timeline-line { display: none; }
 
    .quality-section, .testimonial-section { padding: 70px 24px; }
    .trust-strip { flex-direction: column; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--gold-hairline); justify-content: flex-start; }
    .trust-item:last-child { border-bottom: none; }
    .quote p { font-size: 19px; }
    .quote-rotator { gap: 12px; }
 
    .contact-section { padding: 70px 24px 90px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; gap: 18px; }
 
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
 
@media (max-width: 768px) {
    .accordion-slider {
        display: flex;
        flex-direction: column; /* Yataydan dikeye dön */
        height: auto; /* Yüksekliği içeriğe bırak */
    }
    .slide {
        height: 400px; /* Her bir kartın mobil yüksekliği */
        flex: none; /* Esnemeyi iptal et */
        width: 100%;
        margin-bottom: 10px;
    }
    .slide.active {
        flex: none;
        height: 500px; /* Aktif kart mobil boyutu */
    }
    .navigation-arrows {
        display: none; /* Mobil cihazlarda oklar yerine dokunmatik kaydırma daha iyi */
    }
    .slide-number { font-size: 32px; }
    .car-brand { transform: none; position: static; }
    .slider-container { height: auto; }
}
@media (max-width: 768px) {
    .slide-content {
        padding: 20px;
        background: rgba(0,0,0,0.6); /* İçeriğin okunması için koyu katman */
    }
    .car-specs {
        display: none; /* Mobil ekranı çok dolduruyorsa gizle veya sadeleştir */
    }
    .car-name { font-size: 24px; }
}
 
.showroom-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   ÜRÜNLER SAYFASI - PREMIUM KART YAPILARI
   ============================================================ */
.products-section {
    padding: 100px 80px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.products-section.active {
    opacity: 1;
    transform: translateY(0);
}
.section-intro {
    text-align: center;
    margin-bottom: 70px;
}
.section-title {
    font-family: var(--serif);
    font-size: 40px;
    color: var(--cream);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--dark-green-card);
    border: 1px solid var(--gold-hairline);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease), border-color 0.5s ease, box-shadow 0.5s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.product-image-wrap {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background: #133023;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 12px;
}
.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}
.order-trigger-btn {
    width: 100%;
    padding: 14px 0;
}

/* ============================================================
   SİPARİŞ MODALI VE FORMU (JS Animasyonları)
   ============================================================ */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 23, 16, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.order-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    background: var(--dark-green);
    border: 1px solid var(--gold);
    width: 750px;
    max-width: 90%;
    border-radius: 8px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    transform: scale(0.92);
    transition: transform 0.4s var(--ease);
}
.order-modal-overlay.open .order-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--gold);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s ease;
}
.modal-close-btn:hover {
    color: #fff;
}

.modal-left {
    width: 40%;
    background: var(--dark-green-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-right: 1px solid var(--gold-hairline);
    text-align: center;
}
.modal-product-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}
.modal-product-title {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--cream);
}

.modal-right {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-title {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 30px;
    margin-top: 0;
}

.whatsapp-order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gold-hairline);
    color: #fff;
    padding: 10px 2px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-faint);
}

/* Sayısal inputlardaki artırma/azaltma oklarını (spin butonlarını) gizleme kuralları */
.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-group input[type=number] {
    -moz-appearance: textfield; /* Firefox için uyarı verse de çalışır */
    appearance: textfield;
}

.btn-submit {
    background: #25d366; /* WhatsApp Yeşili */
    color: #fff;
    margin-top: 10px;
    padding: 16px 0;
    border: none;
}
.btn-submit:hover {
    background: #128c7e;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

@media (max-width: 768px) {
    .order-modal {
        flex-direction: column;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-left { width: 100%; padding: 20px; border-right: none; border-bottom: 1px solid var(--gold-hairline); }
    .modal-right { width: 100%; padding: 20px; }
    .modal-product-img { width: 120px; height: 120px; }
    .form-title { font-size: 22px; margin-bottom: 15px; }
    .whatsapp-order-form { gap: 16px; }
}


/* Filtre Butonları Konumlandırma ve Görsel Tasarım */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px !important; /* Butonların standart boyutunu korumak için */
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--gold-hairline);
    color: var(--cream);
    transition: all 0.3s ease;
}

/* Buton Aktif (Seçili) Durumu */
.filter-btn.active, 
.filter-btn:hover {
    background: var(--gold);
    color: var(--dark-green);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

/* Ürün Kartı Filtreleme Animasyonları */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.product-card {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, border-color 0.5s ease, box-shadow 0.5s ease;
    /* Önceki kart özellikleriniz bozulmadan kalabilir */
}

/* Filtreye uymayan kartları gizleme sınıfı */
.product-card.hide-card {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* Filtre Butonları Tasarımı */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px !important;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--gold-hairline);
    color: var(--cream);
    transition: all 0.3s ease;
}

.filter-btn.active, 
.filter-btn:hover {
    background: var(--gold);
    color: var(--dark-green);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

/* Ürün Kartı Geçiş Animasyonları */
.product-card {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Kriter Dışında Kalan Kartları Gizleme */
.product-card.hide-card {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    position: absolute;
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* İZOLASYON VE DEĞİŞKEN TABANLI KURUMSAL STİL */
.corp-wrapper {
    background-color: var(--bg, #0d2118);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--cream, #f4f0e6);
    width: 100%;
    overflow-x: hidden;
    font-family: inherit;
}

.corp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-center { text-align: center; }

/* 1. Üst Başlık / Hero */
.corp-hero {
    padding: 120px 0 80px 0;
    background: linear-gradient(rgba(13, 33, 24, 0.85), rgba(13, 33, 24, 0.95)), url('../img/hero-bg.jpg') no-repeat center center/cover;
    border-bottom: 1px solid var(--gold-hairline, rgba(197, 160, 89, 0.18));
    text-align: center;
}

.corp-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold, #c5a059);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--serif, serif);
}

.corp-hero-subtitle {
    font-size: 18px;
    color: var(--cream, #f4f0e6);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Bölüm Genel Yapısı */
.corp-section {
    padding: 90px 0;
}

.corp-section-alt {
    background-color: rgba(255, 255, 255, 0.02);
}

.corp-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Tipografi ve Başlıklar */
.corp-tagline {
    display: inline-block;
    color: var(--gold, #c5a059);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gold, #c5a059);
    padding-bottom: 4px;
}

.corp-section-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: var(--serif, serif);
    color: var(--cream, #f4f0e6);
}

.corp-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted, #a8b3a2);
    margin-bottom: 20px;
}
.corp-desc:last-child { margin-bottom: 0; }

/* Görsel Kutusu ve Çerçeve Efekti */
.corp-image-box {
    position: relative;
    border-radius: 10px;
}

.corp-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.corp-img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold, #c5a059);
    border-radius: 10px;
    z-index: -1;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.corp-image-box:hover .corp-img {
    transform: translateY(-8px);
}

.corp-image-box:hover .corp-img-frame {
    transform: translate(15px, 15px);
}

/* Kart Yapıları (Misyon - Vizyon) */
.corp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 45px;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
}

.corp-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold, #c5a059);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

.corp-card-icon-wrap {
    color: var(--gold, #c5a059);
    margin-bottom: 25px;
    background: rgba(197, 160, 89, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.corp-card-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--gold, #c5a059);
    margin-bottom: 15px;
    font-family: var(--serif, serif);
}

.corp-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Galeri Alanı */
.corp-gallery-header {
    margin-bottom: 40px;
}

.corp-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.corp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.corp-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

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

.corp-gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 44, 21, 0.88);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.corp-gallery-overlay span {
    color: var(--gold, #c5a059);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.corp-gallery-item:hover .corp-gallery-overlay {
    opacity: 1;
}

.corp-gallery-item:hover .corp-gallery-overlay span {
    transform: translateY(0);
}

.corp-gallery-item:hover .corp-gallery-img {
    transform: scale(1.08);
}

/* RESPONSİVE DÜZEN */
@media (max-width: 992px) {
    .corp-grid-2col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .corp-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .corp-hero { padding: 90px 0 60px 0; }
    .corp-hero-title { font-size: 34px; }
    .corp-section { padding: 60px 0; }
    .corp-section-title { font-size: 28px; }
}

@media (max-width: 576px) {
    .corp-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .corp-card { padding: 30px; }
    .corp-hero-title { font-size: 28px; }
    .corp-container { padding: 0 15px; }
}

/* ===================================================
   MASAÜSTÜ EKRANLAR İÇİN (993px ve üstü)
=================================================== */
@media (min-width: 993px) {
    .nav-menu {
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        
        /* Yan yana dizilim */
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
    }
    
    /* Hamburger menü ikonunu masaüstünde gizle */
    .menu-toggle {
        display: none !important;
    }
}

/* Mobil Menü içerisindeki 'a' etiketleri (Önceden genel verilmişti) */
@media (max-width: 992px) {
    .nav-menu a {
        font-size: 22px;
        color: var(--cream, #fff);
        text-decoration: none;
    }
}

header.scrolled .nav-menu { margin-top: 0; }

/* Normal Nav Linkleri (Masaüstü düzeni) */
nav a {
    color: #e3e3da !important;
    text-decoration: none;
    margin: 0 15px;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
nav a.active { color: var(--gold) !important; }
nav a.active::after { width: 100%; }
nav a:hover { color: #fff !important; }
nav a:hover::after { width: 100%; }

/* ============ İLETİŞİM SAYFASI GENEL DÜZENİ ============ */
.contact-wrapper {
    background-color: var(--bg, #0d2118);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--cream, #f4f0e6);
    width: 100%;
    overflow-x: hidden;
    font-family: var(--sans, sans-serif);
    padding: 100px 0; /* Navbar'ın altına inmesi için üst boşluk */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* İletişim Hero / Başlık Alanı */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-tagline {
    display: inline-block;
    color: var(--gold, #c5a059);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gold, #c5a059);
    padding-bottom: 4px;
}

.contact-title {
    font-size: 45px;
    font-family: var(--serif, serif);
    color: var(--cream, #f4f0e6);
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--text-muted, #a8b3a2);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* İçerik Izgarası (Bilgiler + Harita) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 60px;
}

/* Bilgi Kartları Alanı */
.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.4s var(--ease, cubic-bezier(0.16, 1, 0.3, 1)), border-color 0.4s ease, background 0.4s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold, #c5a059);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

.contact-icon-wrap {
    color: var(--gold, #c5a059);
    background: rgba(197, 160, 89, 0.1);
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold, #c5a059);
    margin-bottom: 8px;
    font-family: var(--serif, serif);
}

.contact-card-content p, 
.contact-card-content a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted, #a8b3a2);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-card-content a:hover {
    color: #ffffff;
}

/* Google Maps Gömülü Alanı (Map Embed) */
.map-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    min-height: 400px; /* Haritanın her zaman görünür olması için minimum yükseklik */
    height: 100%;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    /* Haritanın sitenizin koyu moduna uyum sağlaması için düşük doygunluk filtresi eklendi, isterseniz kaldırabilirsiniz */
    filter: sepia(10%) hue-rotate(60deg) invert(90%);
}

/* Kurumsal Sosyal Medya / Alt Bilgi Bantı */
.contact-footer-strip {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 40px 20px;
    text-align: center;
}

.contact-footer-strip h4 {
    color: var(--gold, #c5a059);
    font-family: var(--serif, serif);
    font-size: 22px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold, #c5a059);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #c5a059);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold, #c5a059);
    color: var(--bg, #0d2118);
    transform: translateY(-3px);
}

/* ============ RESPONSİVE / MOBİL UYUM ============ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Mobil ve tabletlerde harita alta iner */
        gap: 30px;
    }
    
    .contact-title {
        font-size: 34px;
    }

    .map-box {
        min-height: 320px; /* Küçük ekranlarda harita boyutu */
    }
}

@media (max-width: 576px) {
    .contact-wrapper {
        padding: 60px 0;
    }

    .contact-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .contact-icon-wrap {
        min-width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .contact-title {
        font-size: 28px;
    }
}



/* ============ PREMİUM KURUMSAL LOADER ============ */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background-color: var(--bg, #0d2118);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.9s;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    width: 280px; 
    will-change: transform, opacity, filter;
}

/* Sabit Logo */
.loader-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

/* Altın Sarısı Dolum Barı */
.loader-progress-track {
    width: 100%;
    height: 3px;
    background-color: rgba(197, 160, 89, 0.18); 
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--gold, #c5a059);
    border-radius: 4px;
    transition: width 0.08s linear; 
    box-shadow: 0 0 12px var(--gold, #c5a059);
}

/* Bittiğinde JS ile ekleyeceğimiz Premium Dağılma / Açılış Animasyonları */
.loader-content.is-loaded {
    animation: premium-disperse 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes premium-disperse {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0px);
    }
    40% {
        transform: scale(1.04);
        opacity: 0.85;
        filter: blur(3px);
    }
    100% {
        transform: scale(0.92) translateY(-40px);
        opacity: 0;
        filter: blur(10px);
    }
}