/* ============================================================
   denizulusoy.com — Design System v2
   Cinematic Hero | Dark/Light Rhythm | Editorial Typography
   Inspired by the live site's powerful design language
   ============================================================ */

/* --- Google Fonts (Moved to HTML head for performance optimization) --- */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors — Dark/Light Rhythm */
  --bg-light: #f5f5f5;
  --bg-dark: #2c3e50;
  --bg-darker: #1a252f;
  --surface: #ffffff;

  /* Gold Palette */
  --gold: #c9a84c;
  --gold-light: #e0c96e;
  --gold-dark: #a88b35;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e0c96e 50%, #c9a84c 100%);

  /* Text */
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5e;
  --text-light: #7a7a8e;
  --text-white: #ffffff;
  --text-white-muted: rgba(255, 255, 255, 0.7);

  /* Borders & Shadows */
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(201, 168, 76, 0.3);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 4.5rem;
  --fs-hero: 5.5rem;
  --lh-tight: 1.1;
  --lh-base: 1.6;
  --lh-relaxed: 1.85;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --nav-height: 120px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tüm kaydırma çubuklarını gizle */
::-webkit-scrollbar {
  display: none;
}
* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}


body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text-dark);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--gold);
  color: var(--text-white);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

/* --- scroll-margin-top: Sticky nav altında kaybolmamak için
   Tüm nav hedge'leri bu değeri kullanır — scroll-padding-top yerine
   scroll-margin-top doğru CSS özelliğidir (scrollIntoView + anchor nav ile çalışır) */
section[id],
[id].banner,
[id].workspace {
  scroll-margin-top: var(--nav-height);
}

.section {
  padding: var(--space-5xl) 0;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--darker {
  background-color: var(--bg-darker);
  color: var(--text-white);
}

.section--light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section--white {
  background-color: var(--surface);
  color: var(--text-dark);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section--dark .section__title::after,
.section--darker .section__title::after {
  background: var(--gold);
}

.section__subtitle {
  font-size: var(--fs-md);
  max-width: 600px;
  margin: var(--space-xl) auto 0;
  line-height: var(--lh-relaxed);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.section--dark .section__subtitle {
  color: var(--text-white-muted);
}

.section--light .section__subtitle,
.section--white .section__subtitle {
  color: var(--text-medium);
}

.gold-text {
  color: var(--gold);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION — Transparent overlay style
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.nav.scrolled {
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  height: 70px;
  transition: transform var(--transition-base);
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__logo img {
  height: 100%;
  width: auto;
  filter: brightness(1.2);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Language Switcher */
.nav__lang {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 3px;
  margin-left: var(--space-lg);
  backdrop-filter: blur(10px);
}

.nav__lang-btn {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text-white-muted);
  transition: all var(--transition-fast);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav__lang-btn.active {
  background: var(--gold);
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.nav__lang-btn:hover:not(.active) {
  color: var(--text-white);
}

/* Hamburger Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-darker);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}

.nav__mobile.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.nav__mobile .nav__link {
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
}

.nav__mobile .nav__link:hover,
.nav__mobile .nav__link:focus {
  color: var(--gold-light);
}

.nav__mobile .nav__lang {
  margin-left: 0;
  margin-top: var(--space-lg);
}

/* ============================================================
   HERO — Full-screen cinematic photo
   ============================================================ */
.hero {
  min-height: 84svh; /* Fotoğraf daha fazla görünmesi için oran artırıldı */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* overflow: hidden; kaldırıldı ki scroll-indicator aşağı(beyaz alana) sarksın */
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/images/personal/hero_bg_full.jpg');
  background-position: center top;
  background-size: cover;
  background-attachment: fixed; /* Parallax / Canlı Sitedeki Kayma Efekti */
}

/* Canlı Sitedeki Parlak ve Sıcak Ton (Sepia + Overlay) */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 109, 63, 0.25);
  mix-blend-mode: color;
  z-index: 1;
}

/* Ayrıca hafif siyah bir gradient, okunaklılık için */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero__content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 400;
  margin: 0;
}

.hero__logo {
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: -25px; /* Beyaz şeridin tam üstüne gelip yarı yarıya taşması için */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--bg-light); /* Beyaz arkaplan için */
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: var(--text-dark);
  animation: chevronBounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

.hero__scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
}

/* ============================================================
   "NELER YAPIYORUM?" — Services with real logos
   ============================================================ */
.services {
  padding-top: var(--space-2xl);
  padding-bottom: 0; /* Banner section içinde olduğu için alt boşluğu sıfırla */
}


.services-slider-container {
  position: relative;
  width: 100%;
  padding: 0 var(--space-4xl);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  color: var(--text-dark);
}

.slider-btn:hover {
  background: var(--bg-dark);
  color: var(--gold);
  border-color: var(--gold);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-btn--prev {
  left: 0;
}

.slider-btn--next {
  right: 0;
}

.services-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.services__grid {
  display: flex;
  gap: var(--space-2xl);
  transition: transform 0.5s ease-in-out;
}

.service-card {
  flex: 0 0 calc((100% - (2 * var(--space-2xl))) / 3);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--border-radius-md);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-gold);
}

.service-card__logo {
  height: 60px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__logo img {
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
}

.service-card__logo-icon {
  font-size: 3rem;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-medium);
  line-height: var(--lh-relaxed);
  text-align: center;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: auto;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card__link:hover {
  color: var(--gold);
}

/* ============================================================
   BANNER — Zarif alıntı şeridi (services section içinde)
   ============================================================ */
.banner {
  border-top: 2px solid var(--gold);
  padding: var(--space-2xl) var(--space-xl);
  margin-top: var(--space-3xl);
  text-align: center;
  position: relative;
}

.banner__text {
  font-family: var(--font-accent);
  font-size: var(--fs-md);
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
  letter-spacing: 0.3px;
}

/* ============================================================
   "SÖZ UÇAR YAZI KALIR" — Story section
   ============================================================ */
.story {
  background-color: var(--surface);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 1.3fr yerine 1fr 1fr yaparak resmi daha da büyütüyoruz */
  gap: var(--space-xl); /* 4xl çok genişti, xl'e çektik */
  align-items: center;
}

.story__image {
  text-align: center;
}

.story__image img {
  width: 100%;
  max-width: 550px; /* Eski 400px limiti resmi küçücük bırakıp yandaki metnin yüksekliğiyle alakasız kılıyordu */
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.story__content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  text-transform: capitalize; /* Orijinal sitedeki gibi İlk Harfler Büyük */
  letter-spacing: 1px;
  margin-bottom: var(--space-xl);
}

.story__content p {
  color: var(--text-medium);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  text-align: justify;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid;
}

.btn--primary {
  background: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

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

.btn--gold {
  background: var(--gold-gradient);
  border-color: var(--gold);
  color: var(--text-white);
}

.btn--gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn--outline-white {
  border-color: var(--text-white);
  color: var(--text-white);
  background: transparent;
}

.btn--outline-white:hover {
  background: var(--text-white);
  color: var(--text-dark);
}

/* ============================================================
   FLAT-LAY WORKSPACE — Full-width image + CTA
   ============================================================ */
.workspace {
  position: relative;
  min-height: 70vh; /* Ekranda yeterince alan kaplayıp alt kısma yazıyı oturtmak için */
  display: flex;
  align-items: flex-end; /* İçeriği dibe yaslar */
  overflow: hidden;
}

.workspace__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom; /* Süper geniş ekranlarda beyaz zeminin asla kesilmemesini (alttan hizalanmasını) garantiler */
  z-index: 0;
}

.workspace__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent; /* Gece mavisi maske kaldırıldı! Resmin kendi beyazı görünecek */
  padding: var(--space-xl) 0 var(--space-md) 0; /* Alt boşluk iyice kısılarak yazı resmin en dibine çekildi */
  text-align: center;
}

.workspace__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--text-dark); /* Metin tekrar siyah oldu */
  text-transform: capitalize; /* Tamamı büyük değil, orijinaldeki gibi İlk Harfi Büyük oldu */
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.workspace__text {
  font-size: var(--fs-md);
  color: var(--text-medium); /* Metin tekrar koyu gri oldu (eski tasarımdaki gibi) */
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
  text-align: center; /* Ortaya hizalandı (orijinal html'e sadık kalarak) */
  padding: 0 var(--space-xl);
}

/* ============================================================
   TESTIMONIALS — "Dostlardan Yorumlar"
   ============================================================ */
.testimonials {
  background: var(--bg-dark);
  color: var(--text-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

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

.testimonial-card__photo {
  width: 180px;
  height: 180px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-xl);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  filter: grayscale(20%);
}

.testimonial-card:hover .testimonial-card__photo {
  border-color: var(--gold);
  filter: grayscale(0);
  transform: scale(1.05);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: var(--space-xl);
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--text-white-muted);
  line-height: var(--lh-relaxed);
  text-align: justify;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  background-color: var(--bg-light);
}

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.portfolio__filter-btn {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-medium);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.portfolio__filter-btn.active,
.portfolio__filter-btn:hover {
  background: var(--bg-dark);
  color: var(--text-white);
  border-color: var(--bg-dark);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.portfolio__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  aspect-ratio: 3/2;
}

.portfolio__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio__item:hover .portfolio__item-img {
  transform: scale(1.05);
}

.portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-xl);
}

.portfolio__item:hover .portfolio__item-overlay {
  opacity: 1;
}

.portfolio__item-title {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio__item-category {
  color: var(--gold-light);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-xs);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.3s ease;
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--fs-xl);
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox__caption {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  max-width: 600px;
}

/* ============================================================
   VENTURES SECTION
   ============================================================ */
.ventures {
  background-color: var(--surface);
}

.ventures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.venture-card {
  background: var(--bg-light);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.venture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.venture-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.venture-card__logo {
  max-height: 48px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  margin-right: var(--space-sm);
}

.venture-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.venture-card__badge {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.venture-card__badge--active {
  background: #e8f5e9;
  color: #2e7d32;
}

.venture-card__badge--soon {
  background: #fff3e0;
  color: #ef6c00;
}

.venture-card__badge--reference {
  background: #e3f2fd;
  color: #1565c0;
}

.venture-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-medium);
  line-height: var(--lh-relaxed);
  flex: 1;
  text-align: justify;
}

.venture-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.venture-card__link:hover {
  color: var(--gold);
  gap: var(--space-sm);
}

.venture-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.venture-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background-color: var(--bg-light);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact__info h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.contact__info p {
  color: var(--text-medium);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-relaxed);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: var(--fs-lg);
}

.contact__detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact__detail-text span,
.contact__detail-text a {
  font-size: var(--fs-sm);
  color: var(--text-medium);
}

.contact__socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

/* Bottom aligned image under social networks on horizontal screens */
.contact__footer-image {
  margin-top: auto;
  padding-top: var(--space-2xl);
  display: none; /* Hidden on mobile to prevent excessive scrolling */
}

@media (min-width: 768px) {
  .contact__footer-image {
    display: block;
    width: 100%;
  }
}

.contact__footer-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

.contact__social {
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: all var(--transition-base);
}

.contact__social:hover {
  background: var(--gold);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact__form {
  background: var(--surface);
  padding: var(--space-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form__submit {
  width: 100%;
  padding: 14px;
  background: var(--bg-dark);
  color: var(--text-white);
  border: 2px solid var(--bg-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.form__submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form__message {
  margin-top: var(--space-md);
  padding: var(--space-md);
  font-size: var(--fs-sm);
  display: none;
}

.form__message--success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form__message--error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darker);
  color: var(--text-white-muted);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__logo {
  height: 32px;
  opacity: 0.7;
  filter: brightness(10);
  transition: opacity var(--transition-fast);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__copy {
  font-size: var(--fs-sm);
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
}

.footer__link {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  color: var(--text-white-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gold-light);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1120px) {
  :root {
    --fs-hero: 4rem;
    --fs-5xl: 3.5rem;
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .service-card {
    flex: 0 0 calc((100% - var(--space-2xl)) / 2);
  }

  .ventures__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .testimonials__grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .story__content p {
    text-align: center;
  }

  .story__image img {
    max-width: 300px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --fs-hero: 3rem;
    --fs-5xl: 2.5rem;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --space-5xl: 5rem;
    --space-4xl: 3.5rem;
    --nav-height: 100px;
  }

  /* Nav ve hamburger medya kuralları 1120px içine taşındı */

  .hero__logo {
    max-width: 300px;
  }

  .services-slider-container {
    padding: 0 var(--space-xl);
  }
  .slider-btn--prev { left: -10px; }
  .slider-btn--next { right: -10px; }
  .service-card {
    flex: 0 0 100%;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .testimonials__grid .testimonial-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .hero__bg {
    background-attachment: scroll;
  }

  /* Mobil ekranlarda eski aspect-ratio kısıtları silindi */
}


/* Hasbihâl Section */
.hasbihal {
  padding: var(--space-4xl) 0;
}

.hasbihal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "title  image"
    "text   image"
    "action image";
  gap: 0 var(--space-3xl);
  align-items: start;
  margin-bottom: var(--space-5xl);
}

.hasbihal__title {
  grid-area: title;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
  margin-bottom: var(--space-2xl);
  letter-spacing: -1px;
}

.hasbihal__image {
  grid-area: image;
  height: 100%;
}

.hasbihal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hasbihal__text {
  grid-area: text;
}

.hasbihal__text p {
  text-align: right;
  font-size: 1.05rem;
  line-height: var(--lh-relaxed);
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.hasbihal__action {
  grid-area: action;
  text-align: right;
  margin-top: var(--space-lg);
  align-self: end;
}

.hasbihal__btn {
  font-weight: 600;
  border-width: 2px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* Skills Box */
.skills {
  margin-top: var(--space-3xl);
}

.skills__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: var(--space-3xl);
  letter-spacing: -1px;
}

.skills__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3xl);
}

.skills__grid img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .hasbihal__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "title"
      "image"
      "text"
      "action";
    gap: 0;
  }
  .hasbihal__title {
    text-align: center;
  }
  .hasbihal__text p {
    text-align: justify;
  }
  .hasbihal__action {
    text-align: center;
  }
  .hasbihal__image {
    margin-bottom: var(--space-2xl);
  }
  .hasbihal__image img {
    max-height: 500px;
    border-radius: var(--border-radius-md);
  }
  .skills__grid img {
    max-height: 60px;
    gap: var(--space-lg);
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --fs-hero: 2.2rem;
    --fs-5xl: 2rem;
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --space-5xl: 4rem;
    --space-4xl: 3rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .ventures__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .hero__logo {
    max-width: 220px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .workspace__overlay {
    background: linear-gradient(to top, rgba(246, 246, 246, 1) 15%, rgba(246, 246, 246, 0.7) 60%, transparent 100%);
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-xs); /* Mobilde yazıyı dibe iyice yapıştır */
  }
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.partners__card {
  text-align: center;
}

.partners__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border-color);
  filter: grayscale(100%);
  transition: all 0.4s ease;
  margin-bottom: 1.5rem;
}

.partners__card:hover img {
  filter: grayscale(0%);
  border-color: var(--gold);
}

.partners__info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.partners__info p {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.partners__info a {
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.partners__info a:hover {
  opacity: 0.7;
}

/* Responsive Partners */
@media (max-width: 991px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partners__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Lightbox Navigation Buttons */
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  z-index: 1010;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.lightbox__btn--prev {
  left: 2rem;
}

.lightbox__btn--next {
  right: 2rem;
}

@media (max-width: 768px) {
  .lightbox__btn {
    padding: 0.8rem 1rem;
    font-size: 1.5rem;
  }
  .lightbox__btn--prev { left: 0.5rem; }
  .lightbox__btn--next { right: 0.5rem; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   Glassmorphism — Site tasarım diliyle uyumlu
   ============================================================ */
@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cookieSlideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
}

.cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent__inner {
  background: rgba(26, 37, 47, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  max-width: 100%;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.3);
}

.cookie-consent__content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
  min-width: 0;
}

.cookie-consent__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cookie-consent__text {
  flex: 1;
  min-width: 0;
}

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cookie-consent__desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* Butonlar */
.cookie-consent__btn {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background: var(--gold);
  color: var(--text-white);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.35);
}

.cookie-consent__btn--accept:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  transform: translateY(-1px);
}

.cookie-consent__btn--prefs {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-consent__btn--prefs:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-consent__btn--save {
  background: var(--gold);
  color: var(--text-white);
  width: 100%;
  margin-top: var(--space-md);
  padding: 12px 24px;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.35);
}

.cookie-consent__btn--save:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  transform: translateY(-1px);
}

/* Tercihler Paneli */
.cookie-consent__panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(26, 37, 47, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent__panel.open {
  max-height: 400px;
}

.cookie-consent__panel-inner {
  padding: var(--space-lg) var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}

/* Kategori */
.cookie-consent__category {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-consent__category:last-of-type {
  border-bottom: none;
}

.cookie-consent__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-consent__category-info {
  flex: 1;
}

.cookie-consent__category-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.cookie-consent__category-desc {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Toggle Switch */
.cookie-consent__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.cookie-consent__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-consent__toggle-slider {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-consent__toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: all var(--transition-base);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.cookie-consent__toggle input:checked + .cookie-consent__toggle-slider {
  background: var(--gold);
}

.cookie-consent__toggle input:checked + .cookie-consent__toggle-slider::after {
  left: 23px;
  background: var(--text-white);
}

/* Kilitli toggle (zorunlu çerezler) */
.cookie-consent__toggle--locked {
  position: relative;
}

.cookie-consent__toggle--locked .cookie-consent__toggle-slider {
  cursor: not-allowed;
  opacity: 0.7;
  background: var(--gold-dark);
}

.cookie-consent__toggle--locked .cookie-consent__toggle-slider::after {
  left: 23px;
  background: var(--text-white);
}

.cookie-consent__lock-icon {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
}

/* Footer divider */
.footer__divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 var(--space-sm);
  user-select: none;
}

/* ── Responsive Cookie Banner ─────────────────────────────── */
@media (max-width: 768px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-md);
  }

  .cookie-consent__content {
    gap: var(--space-md);
  }

  .cookie-consent__icon {
    font-size: 1.5rem;
  }

  .cookie-consent__title {
    font-size: var(--fs-sm);
  }

  .cookie-consent__desc {
    font-size: var(--fs-xs);
  }

  .cookie-consent__actions {
    flex-direction: row;
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
  }

  .cookie-consent__panel-inner {
    padding: var(--space-md) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .cookie-consent__inner {
    padding: var(--space-md);
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__btn {
    width: 100%;
  }
}
