/**
* Updated: 19.02.2026 with Bootstrap v5.3.7 
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

/* ========================= */
/* THEME VARIABLES */
/* ========================= */


/* Sayfanın varsayılan hali zaten senin yaptığın o karanlık tasarım */
html {
  transition: filter 0.5s ease-in-out;
  
}



/* AYDINLIK MOD: Sayfayı komple tersine çevir */
[data-theme="light"] {
  filter: invert(1) hue-rotate(180deg);
  background-color: #fff;
}

/* TERSİNE ÇEVRİLMEMESİ GEREKENLER (Görseller, Videolar ve TEMA BUTONU) */
[data-theme="light"] img, 
[data-theme="light"] video, 
[data-theme="light"] iframe,
[data-theme="light"] .profile-video,
[data-theme="light"] .theme-switch i,
[data-theme="light"] #theme-icon,    /* Tema ikonunu buraya ekledik */
[data-theme="light"] #theme-toggle i { /* Alternatif olarak kapsayıcıyı da ekledik */
  filter: invert(1) hue-rotate(180deg) !important;
}

/* Sarı rengin (#ffb400) aydınlık modda soluk kalmaması için ekstra canlılık */
[data-theme="light"] .highlight, 
[data-theme="light"] .tag, 
[data-theme="light"] .yellow-btn {
  /* Eğer bu sarılar hala maviye çalıyorsa aşağıdaki satırı aktifleştir */
  /* filter: invert(1) hue-rotate(180deg) saturate(2) !important; */
}


/* --- TEMA BUTONU RENK DÜZELTMESİ (SAF SARI) --- */

[data-theme="light"] #theme-toggle, 
[data-theme="light"] #theme-icon, 
[data-theme="light"] .theme-switch i {
  /* Parlaklığı kısmak yerine doygunluğu artırıyoruz */
  filter: invert(1) hue-rotate(180deg) saturate(5) !important;
  color: #ffb400 !important;
  opacity: 1 !important;
}

/* Butonun beyaz arka planda kaybolmaması için hafif gölge (isteğe bağlı) */
[data-theme="light"] #theme-toggle {
    text-shadow: 0px 0px 2px rgba(0,0,0,0.2);
}

/* Font yüklenene kadar gövdeyi gizle */
html {
  
}








/* Fontlar (Dokunulmadı) */
:root {
  --default-font: "Urbanist", sans-serif;
  --heading-font: "Urbanist", sans-serif;
  --nav-font: "Urbanist", sans-serif;
}

/* Değişkenleri uygulamak için: */
body {
  font-family: var(--default-font);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}

nav, .navbar {
  font-family: var(--nav-font);
}

/* Global Renkler - ANA TEMA (Dark Mode Öncelikli) */
:root { 
  --background-color: #0b0d10; /* Senin derin siyahın */
  --default-color: #ffffff;    /* Yazılar saf beyaz */
  --heading-color: #ffffff;    /* Başlıklar beyaz */
  --accent-color: #ffb400;     /* Senin asil sarın */
  --surface-color: #15191d;    /* Kartlar için biraz daha açık bir siyah/mavi */
  --contrast-color: #0b0d10;   /* Sarının üzerindeki yazı rengi (siyah olmalı) */
}

/* Nav Menu Renkleri */
:root {
  --nav-color: #ffffff;           /* Menü yazıları beyaz */
  --nav-hover-color: #ffb400;     /* Hoverda sarı */
  --nav-mobile-background-color: #0b0d10; 
  --nav-dropdown-background-color: #15191d; 
  --nav-dropdown-color: #eeeeee; 
  --nav-dropdown-hover-color: #ffb400; 
}

/* AYDINLIK MOD PRESETI (Light Mode için bunları kullanacak) */
.light-background {
  --background-color: #f8f9fa; /* Temiz, hafif gri/beyaz */
  --default-color: #212529;    /* Koyu gri yazılar */
  --heading-color: #0b0d10;    /* Başlıklar senin siyahın */
  --surface-color: #ffffff;    /* Kartlar saf beyaz */
  --accent-color: #ffb400;     /* Vurgu rengi DEĞİŞMEZ, yine sarı */
  --contrast-color: #ffffff;
}

/* KOYU MOD PRESETI */
.dark-background {
  --background-color: #0b0d10;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #15191d;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Theme Toggle Ayarları */
#theme-toggle {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 9999;
}

#theme-icon {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  display: inline-block;
  color: var(--accent-color); /* İkon rengi direkt sarı olsun */
}

/* Border ve Shadow Engelleyici (Global) */
* {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #ffffff;                    /* Varsayılan metin rengi beyaz */
  background-color: #0b0d10;         /* Senin derin siyahın */
  font-family: var(--default-font);  /* Orijinal yazı tipine geri döndük */
  border: none !important;
  box-shadow: none !important;
}

a {
  color: #ffb400;                    /* Linkler senin altın sarın */
  text-decoration: none;
  transition: 0.3s;
  border: none !important;
}

a:hover {
  /* Hover rengini sarının şeffaf hali yerine beyaza çektim, çok daha net durur */
  color: #ffffff; 
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffffff;                    /* Başlıklar beyaz */
  font-family: var(--heading-font);  /* Orijinal başlık fontuna geri döndük */
  border: none !important;
  box-shadow: none !important;
}

/* Tüm alt elemanlarda olası border ve shadow'ları kökten engellemek için */
* {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
/* PHP Email Form Mesajları
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529; /* Hata için kırmızı kalabilir, uyarıcıdır */
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 400; /* Daha minimalist bir görünüm için 400 */
  border: none !important;
  box-shadow: none !important;
}

.php-email-form .sent-message {
  display: none;
  color: #0b0d10;      /* Arka plan sarı olduğu için yazı koyu olsun */
  background: #ffb400; /* Başarı mesajı senin sarınla parlasın */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border: none !important;
  box-shadow: none !important;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color); /* Mevcut tema yüzey rengi */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border: none !important;
  box-shadow: none !important;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  /* Yüklenme halkası senin sarınla dönsün */
  border: 3px solid #ffb400; 
  border-top-color: transparent; /* Üst kısım boş kalsın ki dönerken belli olsun */
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  /* Arka planı transparan başlatıyoruz, zemin rengin (0b0d10) alttan görünecek */
  --background-color: rgba(11, 13, 16, 0); 
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  /* Shadow ve Border kesinlikle yok */
  border: none !important;
  box-shadow: none !important;
}

/* Sayfa kaydırıldığında header'ın arka planı netleşirse diye (Opsiyonel Scrolled Durumu) */
.scrolled .header {
  --background-color: #0b0d10;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
  border: none !important;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
  border: none !important; /* Resim çerçevesi riskine karşı */
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 200; /* İstediğin o ince, editoryal font ağırlığı */
  color: #ffffff;  /* Ana yazı beyaz */
  font-family: var(--heading-font);
  letter-spacing: 1px;
}

/* Logodaki vurgu kısmını (BLM) sarı yapmak istersen bu klası h1 içinde kullanabilirsin */
.header .logo h1 span {
  color: #ffb400; /* Senin sarın */
  font-weight: 600; /* Vurgu kısmı biraz daha dolgun durabilir */
}

/* Butonları yan yana dizen kapsayıcı */
  .header-controls {
    display: flex;
    align-items: center;
    gap: 15px; /* İki buton arasındaki boşluk */
  }

  /* Dil butonu özel ayarları */
  .lang-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .lang-link:hover {
    opacity: 0.7; /* Üzerine gelince hafif şeffaflaşır */
  }

  /* İkonun 'B' gibi görünmesini engelleyen kritik ayar */
  .lang-link i {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif !important;
    font-weight: 900 !important; /* İkonun dolu (solid) görünmesini sağlar */
    color: #ffffff;
    font-size: 1.2rem;
  }





/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/

/* Kayan Yazı ve Konteynır Ayarları */
#logoText {
  display: inline-flex;
  align-items: center;    /* Yazıyı kendi alanı içinde dikeyde ortalar */
  white-space: nowrap;
  color: #ffffff;         /* Logo artık BEYAZ */
  font-weight: 400; 
  font-size: 26px; 
  margin: 0 !important;
  padding: 0 !important;
  
  /* Zıplamayı engelleyen sihirli satırlar */
  height: 40px;           /* Sabit yükseklik */
  min-height: 40px;       /* Alanın daralmasını engeller */
  line-height: 40px;      /* Yazıyı bu yüksekliğin tam ortasına hizalar */
}

@media (max-width: 768px) {
  #logoText {
    font-size: 20px;
    font-weight: 600;
  }
}

.logo-highlight {
  color: #ffb400;         /* Senin SARIN (#ffb400) */
  font-weight: 700; 
}

/* Header Genel Hizalaması */
.header .container-fluid {
  height: 35px;           /* Header yüksekliğini sabitledik */
  display: flex;
  align-items: center;    /* İçindeki logoyu ve menüyü dikeyde ortalar */
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none; /* Alt çizgiyi kaldırmak için garantiye alalım */
}



/*--------------------------------------------------------------
# Scroll Top Button - Dark & Compact Edition
--------------------------------------------------------------*/
/* --- ORTAK BOYUT VE STİL AYARLARI (EŞİTLENDİ) --- */
.scroll-top, .whatsapp-sticky {
  position: fixed;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* YENİ EŞİT BOYUT: 50px */
  width: 50px;
  height: 50px;
  
  /* KÖŞE YUMUŞATMA: Modern 10px */
  border-radius: 10px !important;
  
  background-color: #121418 !important;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* --- SCROLL TOP ÖZEL --- */
.scroll-top {
  right: 20px;
  bottom: 20px;
  visibility: hidden;
  opacity: 0;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.scroll-top i {
  font-size: 22px; /* İkon boyutu dengelendi */
  color: #ffffff !important;
  transition: 0.3s;
}

/* --- WHATSAPP ÖZEL --- */
.whatsapp-sticky {
  left: 20px;
  bottom: 20px;
}

.whatsapp-sticky i {
  font-size: 28px; /* WhatsApp ikonu doğası gereği biraz daha büyük durabilir */
  color: #25d366 !important;
  transition: 0.3s;
}

/* --- HOVER EFEKTLERİ (HER İKİSİ İÇİN AYNI) --- */
.scroll-top:hover, .whatsapp-sticky:hover {
  background-color: #ffb400 !important;
  transform: translateY(-7px); /* Şık bir yükselme efekti */
}

.scroll-top:hover i, .whatsapp-sticky:hover i {
  color: #121418 !important;
}

/* --- MOBİL OPTİMİZASYONU (EŞİT KÜÇÜLME) --- */
@media (max-width: 768px) {
  .scroll-top, .whatsapp-sticky {
    width: 45px;
    height: 45px;
    bottom: 15px;
  }
  
  .scroll-top { right: 15px; }
  .whatsapp-sticky { left: 15px; }

  .scroll-top i { font-size: 20px; }
  .whatsapp-sticky i { font-size: 24px; }
}

/* ==========================================================================
   NAV MENU (OFFCANVAS) - TÜM CSS KODLARI (EKRAN ALTINA SABİTLENMİŞ)
   ========================================================================== */

/* --- ANA PANEL: BUZLU CAM VE DÜZEN --- */
.custom-nav-panel { 
    background: rgba(11, 13, 16, 0.75) !important; 
    backdrop-filter: blur(30px) saturate(180%) !important; 
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    width: 420px !important; 
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important; 
    box-shadow: -20px 0 60px rgba(0,0,0,0.7);
    display: flex !important;
    flex-direction: column !important; /* İçeriği dikeyde hizalamak için şart */
    padding: 0 !important; /* İç boşluğu kontrollü vereceğiz */
}

/* Header: Navigasyon Başlığı ve Kapatma Butonu */
.offcanvas-header {
    padding: 35px 25px 15px 25px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-title {
    font-size: 11px;
    letter-spacing: 4px;
    color: #ffcc00;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Body: Menü İçeriği */
.offcanvas-body {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 0 !important;
    scrollbar-width: none;
}

.offcanvas-body::-webkit-scrollbar {
    display: none;
}

/* --- ÜST KISIM: 6'LI MENÜ GRİD --- */
.nav-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
    padding: 10px 25px 20px 25px;
}

.nav-card { 
    background: rgba(255, 255, 255, 0.04); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 28px 15px; 
    border-radius: 26px; 
    text-decoration: none; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 12px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-card i { 
    font-size: 26px; 
    color: rgba(255, 255, 255, 0.3); 
}

.nav-card span { 
    font-size: 11px; 
    color: #888; 
    font-weight: 700; 
    letter-spacing: 1px;
}

.nav-card:hover { 
    background: rgba(255, 255, 255, 0.1); 
    transform: translateY(-5px); 
    border-color: rgba(255, 204, 0, 0.5);
}

.nav-card.active { 
    background: linear-gradient(145deg, rgba(255, 204, 0, 0.2), rgba(255, 204, 0, 0.05)); 
    border-color: #ffcc00; 
}

.nav-card.active i { color: #ffcc00; }
.nav-card.active span { color: #fff; }

/* --- ALT KISIM: SABİTLENMİŞ BUTONLAR --- */
.action-stack {
    margin-top: auto !important; /* Orta alanı boş bırakıp butonları en alta iter */
    padding: 30px 25px 40px 25px;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-action { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px; 
    border-radius: 22px; 
    font-weight: 700; 
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
}

/* Buton Renkleri */
.btn-project { 
    background: #ffcc00; 
    color: #000 !important; 
}

.btn-whatsapp { 
    background: #25d366; 
    color: #fff !important; 
}

.btn-ai { 
    background: #6f42c1; 
    color: #fff !important; 
}

.btn-action:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

/* Versiyon Etiketi */
.version-tag {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.15);
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/*--------------------------------------------------------------
# Footer - Black & Gold Edition (Full Clean)
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  /* Gölge kökten kaldırıldı */
  box-shadow: none !important;
  border: none !important;
}

.footer .copyright p {
  margin-bottom: 0;
  font-weight: 200; /* Minimalist dokunuş */
}

.footer .social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  /* Yuvarlak çerçeveyi ve border'ı sildik */
  border-radius: 0; 
  border: none !important; 
  font-size: 18px;
  /* İkonlar beyaz başlasın */
  color: #ffffff; 
  margin: 0 10px;
  transition: 0.3s;
  background: transparent;
  box-shadow: none !important;
}

.footer .social-links a:hover {
  /* Hover'da senin o meşhur sarın parlasın */
  color: #ffb400 !important;
  transform: translateY(-3px); /* Hafif yukarı kayma efekti (çizgisiz şıklık) */
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  opacity: 0.6; /* Daha az dikkat çeksin, asaletini korusun */
}

/* Footer içindeki linkler (varsa) sarı olsun */
.footer a {
  color: #ffb400;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  /* Animasyon gecikmesini sıfırlayarak hızı artırıyoruz */
  [data-aos-delay] {
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }

  /* Mobilde bazen otomatik gelen gölge ve borderları kökten siliyoruz */
  * {
    -webkit-tap-highlight-color: transparent; /* Mobilde tıklayınca çıkan o mavi gölgeyi siler */
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 40px 0; /* Biraz daha genişlik ferahlık katar */
  background-color: #0b0d10; /* Derin siyah zemin */
  border: none !important;
  box-shadow: none !important;
}

.page-title .breadcrumbs {
  margin-bottom: 1rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

/* Breadcrumb Pasif Maddeler (Beyaz) */
.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.85rem;
  color: #ffffff !important; 
  opacity: 0.7; /* Pasif olanlar hafif soft beyaz */
  font-weight: 300;
}

/* Breadcrumb Aktif Madde (Senin Sarın) */
.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: #ffb400 !important;
  opacity: 1 !important;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: #ffffff !important;
  text-decoration: none;
  transition: 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: #ffb400 !important;
}

/* Ayırıcı Çizgi (/) Beyaz */
.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff !important;
  opacity: 0.5;
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

/* Ana Başlık (Saf Beyaz) */
.page-title .title-wrapper h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font boyutu */
  margin-bottom: 0.5rem;
  font-weight: 200; /* Minimalist ince font */
  color: #ffffff !important;
  letter-spacing: 1px;
}

/* Alt Metin (Beyaz) */
.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: #ffffff !important;
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
  font-weight: 200;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
  .page-title {
    padding: 30px 0;
  }
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #ffffff !important;         /* Tüm ana yazılar saf beyaz */
  background-color: #0b0d10 !important; /* Arka plan senin derin siyahın */
  padding: 60px 0;
  overflow: clip;
  border: none !important;           /* Border ve Shadow koruması */
  box-shadow: none !important;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  background-color: transparent !important;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff !important;         /* Başlıklar bembeyaz */
  border: none !important;           /* Başlık altı çizgileri engeller */
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: #ffb400 !important;         /* Alt açıklama metni senin imza sarın */
  text-transform: uppercase;         /* Daha profesyonel bir duruş için */
  letter-spacing: 1px;
}

/* Section Title altındaki olası çizgileri (pseudo-elements) tamamen sıfırla */
.section-title::before,
.section-title::after,
.section-title h2::before,
.section-title h2::after {
  display: none !important;
}

/*--------------------------------------------------------------
# HERO SECTION – CLEAN FINAL (Square Video 1:1)  ✅ UPDATED
--------------------------------------------------------------*/

#hero.hero {
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0b0d10;
  overflow: hidden;
  position: relative;
}

/* HERO LCP için: AOS efektlerini ilk ekranda devre dışı bırak */
#hero [data-aos]{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Modern mobile vh fix */
@supports (height: 100svh) {
  #hero.hero { min-height: 100svh; }
}

/* ========== EYEBROW ========== */
#hero.hero .intro .eyebrow {
  position: relative;
  padding-left: 14px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  border-left: none !important;
}

#hero.hero .intro .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #ffb400;
  border-radius: 2px;
}

#hero .eyebrow .text {
  font-family: var(--nav-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

/* ========== HEADLINE ========== */
#hero .display-heading {
  font-family: var(--heading-font);
  font-weight: 850;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
}

#hero .highlight-text { color: #ffb400; }

/* ============================================================
   ✅ CLS KİLİDİ (EK BLOK) – H1 ölçüsünü sabitle
   Font gelince satır kırılması/ölçü değişimi zıplatmasın diye.
============================================================ */
#hero .display-heading{
  max-width: 24ch;
  min-height: 2.4em;
  text-wrap: balance;
}

/* ========== LEAD TEXT ========== */
#hero .lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* ========== META BOX ========== */
#hero .meta-item {
  background: rgba(255,180,0,0.08);
  border: 1px solid rgba(255,180,0,0.2);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#hero .meta-item i { color: #ffb400; }
#hero .meta-item span { color: #fff; font-weight: 600; }

/* ========== BUTTON ========== */
.hakan-btn {
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  
  /* Arka planın bir tık üstü: Ultra Dark */
  background-color: #121418; 
  color: rgba(255, 255, 255, 0.7); /* Yazı da biraz sönük başlasın */
  border: 1px solid rgba(255, 255, 255, 0.03); /* Çok ince, belli belirsiz bir hat */
}
.hakan-btn:hover {
  transform: translateY(-5px);
  background-color: #ffb400; /* Ve sahne sarının! */
  color: #0b0d10;
  border-color: #ffb400;
  box-shadow: 0 15px 35px rgba(255, 180, 0, 0.1); 
}

.hakan-btn-send {
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  
  /* Arka planın bir tık üstü: Ultra Dark */
  background-color: #121418; 
  color: rgba(255, 255, 255, 0.7); /* Yazı da biraz sönük başlasın */
  border: 1px solid rgba(255, 255, 255, 0.03); /* Çok ince, belli belirsiz bir hat */
}

.hakan-btn-send:hover {
  transform: translateY(-5px);
  background-color: #ffb400; /* Ve sahne sarının! */
  color: #0b0d10;
  border-color: #ffb400;
  box-shadow: 0 15px 35px rgba(255, 180, 0, 0.1); 
}

/* ========== VIDEO / PORTRAIT ========== */
#hero .portrait-wrap { position: relative; }

#hero .portrait-wrap .portrait-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  display: block;
  background: transparent;
}

/* Hover efekti (sadece desktop) */
@media (hover:hover) {
  #hero .portrait-wrap:hover .portrait-img {
    transform: translateY(-4px);
    transition: transform .35s ease;
  }
}

/* ========== BADGE (DARK & WHITE TEXT - FINAL) ========== */
#hero .badge-custom.custom-desktop-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  /* Arka plan senin istediğin o özel ton */
  background: #16191d !important; 
  padding: 12px 20px;
  border-radius: 15px;
  /* Koyu zeminde belli olan derin gölge */
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  /* İnce bir kenarlık, derinlik katması için */
  border: 1px solid rgba(255, 255, 255, 0.05);

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: .25s ease;
}

@media (min-width: 1367px) {
  #hero .badge-custom.custom-desktop-badge {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Badge içindeki yazı - BEYAZ ZORLAMASI */
#hero .badge-custom span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff !important; /* Artık beyaz */
}

/* Badge içindeki buton */
#hero .ig-follow-btn {
  /* Buton arka planı hafif gri-dark */
  background: rgba(255, 255, 255, 0.1); 
  color: #ffffff !important; /* Buton yazısı da beyaz */
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .2s ease;
  text-decoration: none;
}

/* Hoverda BİZİM SARI (#ffb400) */
#hero .ig-follow-btn:hover {
  background: #ffb400 !important;
  color: #0b0d10 !important; /* Sarı üzerinde siyah daha net okunur */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}
/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  #hero.hero { text-align: center; }

  #hero .lead { margin: 0 auto 25px; }

  #hero .cta-group,
  #hero .meta { justify-content: center; }

  #hero .portrait-wrap { margin-top: 50px; }
}

@media (max-width: 768px) {
  .hakan-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* ============================
   VIDEO SHELL (Poster overlay) ✅ SINGLE SOURCE (no duplicates)
   Mobilde video tamamen kapalı
============================ */
.video-shell{
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;  /* kare alan sabit */
}

/* poster üstte */
.video-shell .video-poster{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  z-index: 2;
  opacity: 1;
  transition: opacity .15s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

/* video altta */
.video-shell video{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobilde video tamamen kapalı, sadece poster */
@media (max-width: 991px){
  .video-shell video{ display: none !important; }
  .video-shell .video-poster{ opacity: 1 !important; }
}

/* HERO poster (Mobilde orta boy avatar stili) */
@media (max-width: 991px) {
  #hero .portrait-wrap {
    /* Boyutu 220px yaparak "bir tık" büyüttük */
    max-width: 220px !important; 
    margin-left: auto;
    margin-right: auto;
    
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    
    /* Daha yumuşak bir görünüm için */
    border: 4px solid #ffffff; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    
    /* Sayfa öğeleriyle arasına biraz nefes aldıralım */
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #hero .portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* =====================================================
   ABOUT (Eksiksiz & Buton Revizeli & Kaydırma Fix)
===================================================== */

.about {
  background-color: #0b0d10;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* --- SENİN O MEŞHUR ÖZEL KODLARIN (Highlight & Description) --- */
.about .description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  text-transform: none; /* Büyük harf engelleyici */
}

.about .section-title .description {
  color: rgba(255, 255, 255, 0.7) !important;
}

.about .description .highlight, 
.about .sub-lead .highlight, 
.about .personal-quote .highlight {
  color: #ffffff !important;
  font-weight: 700;
}

.about .headline .highlight {
  color: #ffb400; /* Başlıktaki sarı vurgu */
}

/* 1. Üst Başlık & Tag Cloud */
.about .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 850;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
}

.about .title-line {
  width: 50px;
  height: 3px;
  background: #ffb400;
  margin: 15px auto;
}

.about .tag-cloud { text-align: center; margin-top: 25px; }

.about .tag {
  display: inline-block;
  color: #ffb400;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 5px;
  background: rgba(255, 180, 0, 0.05);
  padding: 5px 15px;
  border-radius: 4px;
  border: 1px solid rgba(255, 180, 0, 0.1);
}

/* 2. Intro Alanı */
.about .eyebrow-about {
  position: relative;
  padding-left: 14px;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  color: #ffb400;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about .eyebrow-about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background: #ffb400;
  border-radius: 2px;
}

.about .headline {
  font-family: var(--heading-font);
  font-weight: 850;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.about .sub-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 35px;
}

/* 3. BUTONLAR (İstediğin Gibi: Normalde Beyaz -> Hoverda Sarı) */
.btn.hakan-btn {
  padding: 14px 35px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  
  /* Arka planın bir tık üstü: Ultra Dark */
  background-color: #121418; 
  color: rgba(255, 255, 255, 0.7); /* Yazı da biraz sönük başlasın */
  border: 1px solid rgba(255, 255, 255, 0.03); /* Çok ince, belli belirsiz bir hat */
}

.btn.hakan-btn:hover {
  transform: translateY(-5px);
  background-color: #ffb400; /* Ve sahne sarının! */
  color: #0b0d10;
  border-color: #ffb400;
  box-shadow: 0 15px 35px rgba(255, 180, 0, 0.1); 
}
.about .cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* 4. Video & Profile */
.about .profile-video {
  width: 100%;
  display: block;
  border-radius: 20px;
  filter: grayscale(0.2);
  transition: filter 0.35s ease;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about .profile-video:hover { filter: grayscale(0); }

/* 5. Kartlar (Timeline Box) */
.timeline-box {
  background: rgba(255, 255, 255, 0.02);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.timeline-box time {
  display: block;
  color: #ffb400;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-box h4 {
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.timeline-box p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.timeline-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 180, 0, 0.05);
  border-color: rgba(255, 180, 0, 0.2);
}

/* 6. Alıntı (512 MB RAM Bölümü) */
.personal-quote {
  position: relative;
  width: 100%;
  margin: 100px 0 0 0;
  padding: 40px 0;
  text-align: center;
}

.personal-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60px;
  background-color: #ffb400;
  border-radius: 10px;
}

.personal-quote p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.personal-quote p strong {
  color: #ffffff;
  font-weight: 700;
}

/* 7. Responsive & Scrollbar Killer */
@media (max-width: 991px) {
  .about { text-align: center; padding: 60px 0; }
  .about .eyebrow-about { justify-content: center; }

  .journey-grid .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 40px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .journey-grid .row::-webkit-scrollbar {
    display: none !important;
  }

  .journey-grid [class*="col-"] {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }

  .personal-quote::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 768px) {
  .about .cta-group {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .btn.hakan-btn { width: 240px !important; }
}
/*--------------------------------------------------------------
# Portfolio Section - Exact Header Match & Sharp Cards
--------------------------------------------------------------*/

.portfolio {
  /* Arka plan About ile uyumlu derin siyah */
  background-color: #0b0d10 !important;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

/* --- BAŞLIK ALANI (SENİN KODUN - DEĞİŞTİRİLMEDİ) --- */
.portfolio-main-title {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
  z-index: 10;
}

.title-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02) !important;
  z-index: -1;
  letter-spacing: 20px;
  pointer-events: none;
}

.portfolio-main-title h2 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
}

.portfolio-main-title p {
  color: #ffb400 !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* --- KAYDIRMA ALANI --- */
.depth-wrapper {
  display: flex;
  gap: 30px;
  padding: 40px 8% 100px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}
.depth-wrapper::-webkit-scrollbar { display: none; }

/* --- KART YAPISI (Dış Işıksız, Maskülen ve İri Duruş) --- */
.depth-card {
  flex: 0 0 520px; /* Daha da iri, masif bir duruş */
  position: relative;
  background: #121418; /* Tam siyah değil, çok koyu bir antrasit */
  border-radius: 24px;
  /* Dış ışık yerine, kartı zeminden ayıran net bir keskinlik */
  border: 1px solid rgba(255, 255, 255, 0.08); 
  overflow: hidden;
  
  /* Sadece zemine oturan ağır, doğal bir gölge (ışık yayılımı yok) */
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
  
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* Görsel Alan - Bir 'Pencere' Hissi */
.image-wrap {
  position: relative;
  height: 380px; /* Devasa odak alanı */
  overflow: hidden;
  margin: 12px; /* Kartın içine gömülü durması için çerçeve payı */
  border-radius: 16px; /* İçerideki resim de yuvarlak hatlı */
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8); /* Daha dramatik, az doygun renkler */
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

/* Kart İçerik Alanı - Daha Boşluklu ve Net */
.card-info-box {
  padding: 40px 45px 50px;
  background: transparent;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.p-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03); /* Numara arkada bir doku gibi kalsın */
  letter-spacing: -2px;
}

.p-tag {
  color: #ffb400;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  /* Işık efekti kaldırıldı, yerine net kalın font geldi */
}

.card-info-box h3 {
  font-weight: 850;
  font-size: 2rem; 
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.card-info-box p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 90%;
}

/* Keşfet Butonu - Daha Endüstriyel */
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.btn-detail::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ffb400;
  transition: width 0.3s ease;
}

/* --- HOVER DURUMLARI (Fiziksel Derinlik Focus) --- */
.depth-card:hover {
  transform: translateY(-20px); /* Daha ağır, kütlesel bir yükseliş */
  background: #16191d;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 60px 100px -30px rgba(0, 0, 0, 0.9);
}

.depth-card:hover .image-wrap img {
  transform: scale(1.05);
  filter: saturate(1.1); /* Sadece hoverda renk canlanır */
}

.depth-card:hover .btn-detail::after {
  width: 100%; /* Alt çizgi uzar */
}

/* Mobil */
@media (max-width: 768px) {
  .depth-card { flex: 0 0 85vw; }
  .image-wrap { height: 260px; }
  .card-info-box h3 { font-size: 1.6rem; }
	
}


/* Butonları yan yana getiren konteyner */
.info-footer {
  display: flex;
  align-items: center;
  gap: 30px; /* Aradaki boşluk */
  margin-top: 35px; /* Butonun içindeki margin-top'ı sıfırlayıp buraya aldık */
}

/* Mevcut btn-detail içindeki margin-top'ı footer yönettiği için sıfırlıyoruz */
.btn-detail {
  margin-top: 0 !important;
  text-decoration: none;
}

/* YENİ: İncele Butonu (Mevcut stilinle uyumlu, minimalist) */
.btn-review {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4); /* Keşfet'ten daha sönük, ikincil duruş */
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-review:hover {
  color: #ffffff; /* Hoverda parlar */
  transform: translateX(3px); /* Çok hafif sağa kayma */
}


/*--------------------------------------------------------------
# Premium Pricing Section - Industrial & Mobile Scroll Fix
--------------------------------------------------------------*/
.premium-pricing-section {
    padding: 100px 0;
    background-color: #0b0d10 !important;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Kategori Seçici */
.pricing-switcher-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-switcher {
    position: relative;
    display: flex;
    background: #121418;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.switcher-btn {
    position: relative;
    z-index: 5;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.4s ease;
}

.switcher-btn.active {
    color: #0b0d10 !important;
}

.pricing-switcher .switcher-bg {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #ffb400;
    border-radius: 8px;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

/* Kategori İçerik Yönetimi */
.pricing-category { 
    display: none; 
    opacity: 0; 
}
.pricing-category.active { 
    display: block; 
    opacity: 1; 
    animation: aboutAppear 0.8s ease forwards; 
}

@keyframes aboutAppear {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- GRID AYARI (Mobil Kaydırma Desteği eklendi) --- */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    /* Mobilde yan yana taşma kontrolü */
    flex-wrap: nowrap; 
}

/* --- KART TASARIMI --- */
.p-card {
    position: relative;
    flex: 0 0 calc(33.333% - 20px); /* Masaüstünde 3 tane */
    min-width: 320px;
    background: #121418 !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-card-inner {
    position: relative;
    z-index: 10;
    padding: 45px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.p-card-glow { display: none !important; }

.p-card:hover {
    transform: translateY(-15px);
    background: #16191d !important;
    border-color: rgba(255, 180, 0, 0.3);
    box-shadow: 0 60px 100px -30px rgba(0, 0, 0, 1);
    z-index: 20;
}

/* Tipografi */
.p-level {
    color: #ffb400;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    display: block;
}

.p-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.p-price {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 35px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.p-price small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-transform: uppercase;
}

.p-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.p-features li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-features li i {
    color: #ffb400;
    font-size: 18px;
    flex-shrink: 0;
}

.p-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-btn.primary {
    background-color: #ffb400;
    color: #0b0d10;
    border: none;
}

.p-btn:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    color: #0b0d10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Genel Buton Ayarları */
.pricing-switcher .switcher-btn {
  background: transparent !important; /* Arka plan her zaman şeffaf */
  border: none;
  transition: color 0.3s ease; /* Renk geçişini yumuşatır */
  color: #fff; /* Varsayılan yazı rengi (temanıza göre ayarlayın) */
}

/* Bionluk - Sadece Yazı Hover */
.pricing-switcher .switcher-btn.bionluk-btn:hover {
  color: #ff4b2b !important; /* Sadece yazı ve ikon kırmızı olur */
  background: transparent !important; /* Arka planın değişmediğinden emin oluyoruz */
}

/* Fiverr - Sadece Yazı Hover */
.pricing-switcher .switcher-btn.fiverr-btn:hover {
  color: #1dbf73 !important; /* Sadece yazı ve ikon yeşil olur */
  background: transparent !important;
}

/* İkonlar için ufak boşluk */
.pricing-switcher .switcher-btn i {
  margin-right: 5px;
}

/* 5'li Izgara Yapısı */
.pricing-switcher {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 5px;
  position: relative;
}


/* --- PRICING SWITCHER MOBİL UYUMLULUK --- */

@media (max-width: 991px) {
  /* Ana konteynerin taşmasını engelle ve iç boşluğu ayarla */
  .pricing-switcher-wrapper {
    padding: 0 15px;
    width: 100%;
  }

  .pricing-switcher {
    display: flex;
    flex-wrap: nowrap; /* Butonların alt alta geçmesini engelle, tek satırda tut */
    overflow-x: auto;  /* Mobilde sağa kaydırılabilir yap */
    -webkit-overflow-scrolling: touch; /* iOS'ta akıcı kaydırma */
    scrollbar-width: none; /* Firefox için scroll barı gizle */
    padding: 5px;
    gap: 5px; /* Butonlar arası mesafeyi mobilde daralt */
    justify-content: flex-start; /* Mobilde soldan başla */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03); /* Hafif belirgin zemin */
  }

  /* Chrome, Safari ve Opera için scroll barı gizle */
  .pricing-switcher::-webkit-scrollbar {
    display: none;
  }

  .switcher-btn {
    flex: 0 0 auto; /* Butonların sıkışmasını engelle, kendi genişliğini korusun */
    white-space: nowrap; /* Yazıların alt satıra geçmesini engelle */
    padding: 10px 18px; /* Mobilde daha dokunmatik dostu ama dar padding */
    font-size: 0.75rem; /* Fontu biraz küçült */
    letter-spacing: 1px;
  }

  /* Bionluk ve Fiverr butonlarını mobilde biraz daha kompakt yap */
  .bionluk-btn, .fiverr-btn {
    font-weight: 600;
  }

  /* Arka plandaki hareketli sürgünün mobildeki yüksekliğini ayarla */
  .switcher-bg {
    height: calc(100% - 10px);
    top: 5px;
  }
}

/* Küçük telefonlar için ekstra dokunuş (örn: iPhone SE) */
@media (max-width: 380px) {
  .switcher-btn {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
}


/* --------------------------------------------------------------
# MOBILE & TABLET ÇÖZÜMÜ (YAN YANA KAYDIRMA)
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .pricing-grid {
        justify-content: flex-start; /* Sola yasla ki kaydırılabilsin */
        overflow-x: auto; /* Yatay kaydırma açıldı */
        padding: 40px 20px 80px; /* Alttan gölge payı bırakıldı */
        scroll-snap-type: x mandatory; /* Kartlara 'mıknatıs' etkisi */
        scrollbar-width: none; /* Firefox scroll gizleme */
    }
    .pricing-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari scroll gizleme */
    }
    .p-card {
        flex: 0 0 85%; /* Mobilde ekranın %85'ini kaplar (Yandaki kart görünür) */
        min-width: 300px;
        scroll-snap-align: center; /* Kaydırınca ortada durur */
    }
}

@media (max-width: 768px) {
    .p-card {
        flex: 0 0 90%; /* Çok küçük ekranlarda biraz daha geniş */
    }
    .p-title { font-size: 24px; }
    .p-price { font-size: 38px; }
}



/* Pricing note (under section intro) */
.pricing-note{
  max-width: 820px;
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: 14px;
  background:#121418;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.pricing-note__text{
  margin: 0 0 10px 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-note__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.pricing-note__list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-note__list i{
  margin-top: 3px;
  color: #ffb400;
  font-size: 1.05rem;
}

@media (max-width: 576px){
  .pricing-note{
    margin-top: 14px;
    padding: 12px 12px;
    border-radius: 12px;
  }
  .pricing-note__text{
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# FAQ Section - Balanced & Minimalist
--------------------------------------------------------------*/
.faq {
  background-color: #0b0d10 !important;
  padding: 80px 0; /* Boşluklar biraz daraltıldı */
}

/* Başlık Alanı - Kararında ve Şık */
.faq .section-title h2 {
  font-size: 2.5rem !important; /* Dev başlıktan daha oturaklı bir boyuta çekildi */
  font-weight: 850 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.faq .section-title h2 span {
  color: #ffb400;
}

.faq .title-line {
  display: block;
  width: 50px;
  height: 3px;
  background-color: #ffb400;
  margin: 20px auto 50px auto;
}

/* FAQ Item Temeli */
.faq .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-color: transparent;
}

/* Header (Soru Kısmı) */
.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 30px 0; /* Daha sıkı ve modern bir görünüm */
  cursor: pointer;
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 60px; /* Alan daraltıldı */
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.25;
  transition: 0.3s;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.25rem; /* 1.4rem'den 1.25'e düşürüldü */
  font-weight: 400;
  color: #ffffff !important;
  transition: 0.3s;
}

/* İçerik (Cevap Kısmı) */
.faq .faq-item .faq-content .content-inner {
  padding: 0 0 30px 60px; /* Numarayla hizalı */
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.7;
  font-size: 0.95rem; /* Metin fontu standartlaştırıldı */
  font-weight: 300;
  max-width: 850px;
}

/* Hover Efekti (Zarif Hareket) */
.faq .faq-item .faq-header:hover h4 {
  transform: translateX(5px); /* Kayma mesafesi azaltıldı */
  color: #ffb400 !important;
}

/* Aktif Durum */
.faq .faq-item.faq-active .faq-header .faq-number,
.faq .faq-item.faq-active .faq-header h4 {
  color: #ffb400 !important;
  opacity: 1;
}

/* Mobil */
@media (max-width: 768px) {
  .faq .section-title h2 { font-size: 1.8rem !important; }
  .faq .faq-item .faq-header h4 { font-size: 1.05rem; }
  .faq .faq-item .faq-header { padding: 14px 0; }
  .faq .faq-item .faq-content .content-inner { padding-left: 0; padding-top: 8px; padding-bottom: 12px; }
  .faq .faq-item .faq-header .faq-number { display: none; } /* Mobilde numarayı gizleyerek alan açar */
  .faq .faq-item .faq-header { gap: 12px; }
  .faq .faq-item { padding: 0 8px; }
  .faq .faq-item .faq-header h4 { line-height: 1.25; }
  .faq .faq-item .faq-content .content-inner p { font-size: 0.94rem; line-height: 1.6; }
  /* Make the toggle bigger/tappable */
  .faq .faq-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
  }
}

/* --- FAQ Dinamik Hareket Ayarları --- */

/* İçerik başlangıçta kapalı olmalı */
.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr; /* Modern ve yumuşak açılış için */
  transition: grid-template-rows 0.35s ease-in-out, opacity 0.25s;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

/* Aktif olduğunda içeriği göster (daha kompakt padding) */
.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-bottom: 12px;
}

/* Artı/Eksi Simgesi Yönetimi */
.faq .faq-toggle i {
  font-size: 1.2rem;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

.faq .faq-toggle .bi-dash { display: none; } /* Başlangıçta eksi gizli */

.faq .faq-item.faq-active .faq-toggle .bi-plus { display: none; }
.faq .faq-item.faq-active .faq-toggle .bi-dash { 
  display: block; 
  color: #ffb400; 
} 


/*--------------------------------------------------------------
# Contact Section - Premium Re-Style
--------------------------------------------------------------*/
/* --- CONTACT FORM PREMIER STYLE --- */
.minimal-form { padding: 30px 0; }
.form-group { margin-bottom: 45px; position: relative; }
.input-wrapper { position: relative; width: 100%; }

.input-wrapper input, .input-wrapper textarea {
  width: 100%; padding: 12px 0; background: transparent !important;
  border: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important; font-size: 1.05rem; outline: none !important;
  transition: all 0.3s ease; border-radius: 0 !important;
}

.input-wrapper label {
  position: absolute; left: 0; top: 12px; color: rgba(255, 255, 255, 0.4);
  pointer-events: none; transition: 0.4s; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 2px; font-weight: 600;
}

/* Floating Label Aktif Durum */
.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper textarea:not(:placeholder-shown) ~ label {
  top: -22px; font-size: 0.7rem; color: #ffb400;
}

/* Alt Çizgi Efekti */
.underline {
  position: absolute; bottom: 0; left: 50%; height: 2px; width: 0;
  background-color: #ffb400; transition: 0.5s; transform: translateX(-50%);
}
.input-wrapper input:focus ~ .underline, .input-wrapper textarea:focus ~ .underline { width: 100%; }

/* --- HATA DURUMLARI (Validation) --- */
.error-msg {
  color: #ff4d4d; font-size: 0.65rem; text-transform: uppercase;
  position: absolute; bottom: -22px; left: 0; opacity: 0; visibility: hidden; transition: 0.3s;
}
.has-error .error-msg { opacity: 1; visibility: visible; }
.has-error .underline { width: 100% !important; background-color: #ff4d4d !important; }
.has-error label { color: #ff4d4d !important; }
.kvkk-wrapper.has-error .checkmark { border-color: #ff4d4d !important; }

/* --- KVKK & İKON DÜZELTME --- */
.fa-language{
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* =========================
   KVKK MODAL (SCOPED)
   Vurgu: #ffb400
========================= */
#kvkkOverlay.kvkk-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: auto;
}

#kvkkOverlay.kvkk-overlay.active{ display:flex; }

#kvkkOverlay .kvkk-modal{
  background: #15191d;
  padding: 30px;
  color: rgba(255,255,255,0.88);

  width: min(900px, 92vw);
  max-width: 900px;

  max-height: 90vh;
  overflow: hidden;

  border-radius: 14px;

  border: 1px solid rgba(255,180,0,0.18);
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
}

#kvkkOverlay .kvkk-header{
  position: sticky;
  top: 0;
  z-index: 2;
  background: inherit;

  display:flex;
  align-items:center;
  justify-content: space-between;

  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,180,0,0.18);
}

#kvkkOverlay .kvkk-header h3{
  margin: 0;
  font-weight: 850;
  letter-spacing: 1px;
  color: #ffb400;
}

#kvkkOverlay .close-kvkk{
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: .2s ease;
}

#kvkkOverlay .close-kvkk:hover{
  color: #ffb400;
  transform: scale(1.08);
}

/* scroll modal body'de */
#kvkkOverlay .kvkk-body{
  max-height: calc(90vh - 90px);
  overflow-y: auto;
  padding-right: 10px;
  line-height: 1.85;
}

#kvkkOverlay .kvkk-body p{
  margin: 0 0 12px;
  font-size: 0.98rem;
}

/* Section başlıkları: 1. Veri Sorumlusu gibi */
#kvkkOverlay .kvkk-body p > strong:first-child{
  color: #ffb400;
  font-weight: 850;
}

/* içerikteki diğer strong’lar beyaz kalsın */
#kvkkOverlay .kvkk-body strong{
  color: #ffffff;
}

/* KVKK link button - Siyah ve Beyazın Tam Arası */
.kvkk-link-btn {
  background: none;
  border: 0;
  padding: 0;
  /* Ne beyaz ne siyah; tok ve asil bir gri-gümüş tonu */
  color: #a0a0a0; 
  font-weight: 800; /* İstediğin gibi Bold */
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.kvkk-link-btn:hover {
  /* Üstüne gelince senin imza sarına yumuşak bir geçiş */
  color: #ffb400; 
  /* Hafif bir belirginleşme */
  filter: brightness(1.2);
}

/* =========================
   KVKK LIST ITEM (*)
   (HTML'de o satırlara class eklemen gerekir: class="kvkk-item")
========================= */
#kvkkOverlay .kvkk-body .kvkk-item{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
  transition: .2s ease;
}

#kvkkOverlay .kvkk-body .kvkk-item::before{
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffb400;
  font-weight: 900;
}

#kvkkOverlay .kvkk-body .kvkk-item:hover{
  color: #ffffff;
  transform: translateX(4px);
}

/* Scrollbar */
#kvkkOverlay .kvkk-body::-webkit-scrollbar{ width: 6px; }
#kvkkOverlay .kvkk-body::-webkit-scrollbar-thumb{
  background: rgba(255,180,0,0.4);
  border-radius: 10px;
}
#kvkkOverlay .kvkk-body::-webkit-scrollbar-track{ background: transparent; }

/* =========================
   CUSTOM CHECKBOX (YUVARLAK)
   Dış: beyaz outline
   İç: beyaz dolgu
========================= */
.custom-checkbox{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.custom-checkbox input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.custom-checkbox .checkmark{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #1e2227 !important;
  background: transparent !important;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.custom-checkbox input:checked + .checkmark::after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffb400 !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Mobilde de taşmasın */
@media (max-width: 768px){
  #kvkkOverlay .kvkk-modal{
    width: 94vw;
    max-height: 92vh;
  }
  #kvkkOverlay .kvkk-body{
    max-height: calc(92vh - 90px);
  }
}

/*--------------------------------------------------------------
# Footer - Deep Black & Gold Edition
--------------------------------------------------------------*/
.footer {
  background-color: #0b0d10 !important; /* Diğer sectionlarla aynı derin siyah */
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Çok hafif üst çizgi */
}

.footer-content {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  line-height: 2;
}

/* Genel Yazı Renkleri */
.footer .copyright { color: #ffffff; }
.footer .rights { color: rgba(255, 255, 255, 0.5); font-size: 10px; }
.footer .dash { color: rgba(255, 255, 255, 0.2); }

/* Altın Sarısı Vurgular */
.footer .separator {
  color: #ffb400;
  font-weight: 900;
}

.footer .brand-name {
  color: #ffb400;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Builder (Link) Stili */
.footer .builder { color: rgba(255, 255, 255, 0.6); }

.footer .builder a {
  color: #ffb400;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 180, 0, 0.2);
  transition: all 0.3s ease;
}

.footer .builder a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Powered By Kısmı */
.footer .powered {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.footer .gemini-text {
  color: #4a90e2; /* Gemini'nin imza mavisi asalet katar, sarıyla uyumludur */
  font-weight: 800;
  font-style: normal;
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
  .footer-content {
    gap: 8px;
    font-size: 10px;
  }
  .footer .separator {
    display: none; /* Mobilde çok kalabalık olmaması için dikey çizgileri gizle */
  }
}

/*--------------------------------------------------------------
# Preloader - Minimal Gold Edition (GPU Smooth)
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    background: #0b0d10;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity .45s ease, visibility .45s ease;
    will-change: opacity, transform;
    transform: translateZ(0);

}

/* MOBİLDE PRELOADER KAPAT */
@media (max-width: 991px) {
  #preloader,
  .preloader,
  .page-loader,
  .loader-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* preloader body'yi kilitliyorsa diye */
  body {
    overflow: auto !important;
  }
}

#preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Wrapper */
.loader-wrapper {
    text-align: center;
    width: 100%;
    max-width: 300px;
}

/* Brand */
.loader-brand {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.loader-brand span {
    color: #ffb400;
    font-weight: 300;
    opacity: 0.8;
}

/* Progress */
.progress-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: #ffb400;
    box-shadow: 0 0 8px #ffb400;
    transform: scaleX(0);
    transform-origin: left;
    animation: progressFill 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    will-change: transform;
}

/* Status */
.loader-status {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: blinkText 1.5s infinite;
}

/* Animations */

@keyframes progressFill {
    0%   { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes blinkText {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}

/* Accessibility */
:focus {
    outline: 3px solid rgba(255,180,0,0.95);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Hero Fix */
.hero { min-height: auto !important; }

@media (min-width: 1200px) {
    .hero { min-height: 100vh !important; }
}


/*--------------------------------------------------------------
# Journey Grid - Mobile Horizontal Scroll
# Small screens: make the journey cards swipeable horizontally
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .journey-grid .row {
    display: flex;
    flex-wrap: nowrap; /* keep items in a single horizontal line */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 28px; /* give more space so scrollbar sits away from cards */
    scroll-snap-type: x mandatory; /* enable snap per card */
  }

  /* Show a single card per viewport on small devices (reduced by 40%) */
  .journey-grid .col-6 {
    /* adjusted: now 70% width (≈%30 reduction) so cards are slightly larger */
    flex: 0 0 calc(70% - 1rem);
    max-width: calc(70% - 1rem);
    scroll-snap-align: start;
  }

  /* Touch-friendly visual scrollbar (wider and softer) */
  .journey-grid .row::-webkit-scrollbar {
    height: 10px;
  }
  .journey-grid .row::-webkit-scrollbar-thumb {
    background: rgba(255, 180, 0, 0.45);
    border-radius: 6px;
    margin-top: 6px; /* visually offset the thumb away from card area (not supported in all browsers) */
  }

  /* Ensure timeline-box keeps full height inside the horizontal flow and becomes square */
  .journey-grid .timeline-box {
    box-sizing: border-box;
    aspect-ratio: 1 / 1; /* make the card square */
    padding: 18px !important; /* reduce padding so content fits */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Slight padding on the container so snappable items have breathing room */
  .journey-grid {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  /* Make sure headings and paragraphs wrap nicely inside the square */
  .journey-grid .timeline-box h4 { margin-bottom: 8px; }
  .journey-grid .timeline-box p { font-size: 0.88rem; }
}

/* Responsive tweak moved from index.html: make hero portrait video smaller on mobile */
@media (max-width: 767.98px) {
  .portrait-wrap .portrait-img {
    max-width: 260px;
    width: 85% !important;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
  }
}

/*--------------------------------------------------------------
Çerez Kutusu
--------------------------------------------------------------*/

/* ================================================================
   HKNBLM PREMIUM COOKIE BAR - GÜNCEL & EN BEĞENİLEN VERSİYON
   ================================================================ */

.cookie-bar {
    position: fixed;
    bottom: 30px; 
    left: 50%;
    transform: translate(-50%, 150%); /* tamamen aşağıda */
    width: 90%;
    max-width: 800px;
    z-index: 1000000;

    background: rgba(18, 20, 24, 0.88) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 180, 0, 0.25); 
    border-radius: 20px; 
    padding: 20px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-bar.show {
    bottom: 30px;
	transform: translate(-50%, 0);
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    gap: 25px;
}

.cookie-text-side {
    display: flex;
    align-items: center; 
    gap: 20px;
}

/* İKON: 36PX HEYBETLİ DURUŞ */
.cookie-icon i {
    font-size: 36px !important; 
    color: #ffb400;
    line-height: 1; 
    display: block;
}

/* METİNLER: OKUNAKLI VE DOLGUN */
.cookie-info strong {
    display: block;
    color: #ffb400;
    font-size: 17px; 
    font-weight: 800;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px; 
    margin: 0;
    line-height: 1.4;
}

.cookie-button-side {
    display: flex;
    gap: 12px;
}

/* --- İŞTE O BEĞENDİĞİMİZ BUTONLAR --- */
.btn-c {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
}

/* KABUL ET: SARI -> BEYAZA ZIPLAYAN HOVER */
.btn-c-accept {
    background-color: #ffb400;
    color: #121418;
}

.btn-c-accept:hover {
    background-color: #ffffff;
    color: #121418;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.4);
}

/* REDDET: KİBAR KIRMIZI TRANSPARAN -> SERT KIRMIZI HOVER */
.btn-c-reject {
    background-color: rgba(255, 68, 68, 0.12); 
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
}

.btn-c-reject:hover {
    background-color: #ff4444;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.3);
}

/* --- MOBİL ZEKA --- */
@media (max-width: 768px) {
    .cookie-bar {
        width: 88%;
        padding: 25px 20px;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-text-side {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-button-side {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .btn-c {
        width: 100%;
        padding: 14px;
    }
}
/*--------------------------------------------------------------
Yapım Aşaması Kutusu
--------------------------------------------------------------*/


/* YAPIM AŞAMASI - AÇIK TON BUZLU CAM */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none; /* JS'de flex olarak tetikleniyor */
    align-items: center;
    justify-content: center;
    z-index: 9999999;
}

.cookie-card-centered {
    max-width: 420px;
    width: 90%;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-icon i {
    font-size: 45px;
    color: #ffb400;
    display: block;
    margin-bottom: 15px;
}

.cookie-text h5 {
    color: #ffb400;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cookie-text p {
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* BUTONLAR */
.btn-login {
    background-color: #25d366; /* WhatsApp Yeşili */
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-accept {
    background-color: #ffb400;
    color: #121418;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.btn-accept:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 180, 0, 0.3);
}

.btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 5px;
}

.btn-reject:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}