/* YLS Events & Productions - Global Styles */
/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #0b0b0c; /* near-black */
  --color-text: #f5f5f5; /* off-white */
  --color-muted: #bdbdbd;
  --color-brand-1: #7310ff; /* purple */
  --color-brand-2: #ff3ea5; /* pink */
  --color-border: #1f1f22;
  --max-w: 1200px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  height: 100%;
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Poppins', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  padding-top: 80px; /* Header yüksekliği için boşluk */
}

/* Animated brand gradient background */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20% -20% -20% -20%;
  z-index: -2;
  filter: blur(40px) saturate(120%);
  opacity: .45;
  pointer-events: none;
}
body::before {
  background: conic-gradient(from 0deg at 50% 50%, #0a0014, #2a0044, #ff3ea5, #120012, #0a0014);
  animation: spin 28s linear infinite;
}
body::after {
  background: radial-gradient(60% 60% at 20% 20%, rgba(255, 62, 165, .25), transparent 60%),
              radial-gradient(50% 50% at 80% 70%, rgba(115, 0, 255, .22), transparent 60%),
              radial-gradient(40% 40% at 50% 30%, rgba(255, 0, 153, .18), transparent 60%);
  mix-blend-mode: screen;
  z-index: -3;
  animation: float 18s ease-in-out infinite alternate;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0% { transform: translateY(-2%) translateX(-1%);} 100% { transform: translateY(2%) translateX(1%);} }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Header / Nav - Fixed Position for Guaranteed Sticky Behavior */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999998 !important;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(12,12,12,.95) !important;
  border-bottom: 1px solid rgba(255,62,165,.2);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  width: 100% !important;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
  position: relative;
}
.brand {
  display: inline-flex; 
  align-items: center; 
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 22px;
  text-transform: uppercase;
  transition: transform .3s ease;
  white-space: nowrap;
  font-stretch: condensed;
  flex-shrink: 0;
  order: 1;
  line-height: 1.1;
}

.brand span {
  display: none;
}
.brand:hover { transform: translateY(-2px); }
.brand img { height: 56px; width: auto; display: block; transition: transform .3s ease; }
.brand:hover img { transform: scale(1.05); }
.brand span { 
  background: linear-gradient(45deg, var(--color-brand-1), var(--color-brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Desktop Menu */
.desktop-menu { 
  display: flex; 
  position: static;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  flex-direction: row;
  gap: 12px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  border-radius: 0;
  min-width: auto;
  transition: none;
  transform: none;
  justify-content: center;
  align-items: center;
  flex: 1;
  order: 2;
}

.desktop-menu a {
  color: var(--color-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 20px;
  position: relative;
  transition: all .3s ease;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}
.desktop-menu a:hover {
  background: rgba(255, 62, 165, 0.1);
  border-color: rgba(255, 62, 165, 0.3);
  color: var(--color-text);
  transform: translateY(-1px);
}

/* Header Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  order: 3;
  flex-shrink: 0;
  z-index: 10000000;
  position: relative;
  justify-content: flex-end;
}

/* Mobile Language Dropdown - Sadece mobilde görünür */
.mobile-language-dropdown {
  display: none;
  position: relative;
  margin-right: 10px;
}

/* Desktop'te tamamen gizle */
@media (min-width: 861px) {
  .mobile-language-dropdown {
    display: none !important;
  }
}

.mobile-lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 62, 165, 0.1);
  border: 1px solid rgba(255, 62, 165, 0.3);
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 50px;
  height: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  justify-content: space-between;
}

.mobile-lang-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.mobile-lang-toggle:hover::before {
  left: 100%;
}

.mobile-lang-toggle:hover {
  background: rgba(255, 62, 165, 0.2);
  border-color: rgba(255, 62, 165, 0.5);
  transform: scale(1.05);
}

.mobile-lang-toggle.active {
  background: linear-gradient(135deg, var(--color-brand-1), var(--color-brand-2));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 25px rgba(115, 16, 255, 0.4);
  transform: translateY(-2px);
}

.mobile-lang-toggle .mobile-lang-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mobile-dropdown-arrow {
  font-size: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-lang-toggle.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

/* Mobile Language Menu - Ana menü stiline benzer - Sadece mobilde */
.mobile-lang-menu {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(135deg, 
    rgba(11, 11, 12, 0.98) 0%, 
    rgba(18, 18, 20, 0.95) 50%, 
    rgba(11, 11, 12, 0.98) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-image: linear-gradient(135deg, rgba(255,62,165,0.3), rgba(115,16,255,0.3)) 1;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.4),
    0 8px 25px rgba(115,16,255,0.1);
  z-index: 99999999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
  padding: 20px 0;
  margin: 0;
  display: none;
  pointer-events: none;
}

/* Desktop'te mobile language menu'yu tamamen gizle */
@media (min-width: 861px) {
  .mobile-lang-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

.mobile-lang-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,62,165,0.5), transparent);
}

.mobile-lang-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  z-index: 99999999 !important;
  pointer-events: auto !important;
  display: block !important;
}

/* Debug: Force show menu for testing */
.mobile-lang-menu.debug {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  z-index: 99999999 !important;
  pointer-events: auto !important;
  display: block !important;
}

/* Mobile Language Options - Ana menü link stiline benzer - Sadece mobilde */
.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  margin: 4px 16px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 99999999;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 62, 165, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  justify-content: center;
  min-height: 48px;
  box-sizing: border-box;
  pointer-events: auto;
}

/* Desktop'te mobile language options'ı gizle */
@media (min-width: 861px) {
  .mobile-lang-option {
    display: none !important;
    pointer-events: none !important;
  }
}

.mobile-lang-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 62, 165, 0.1) 50%, 
    rgba(115, 16, 255, 0.1) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.mobile-lang-option:hover::before {
  left: 100%;
}

.mobile-lang-option:hover {
  color: var(--color-brand-2);
  transform: translateX(8px);
  background: rgba(255, 62, 165, 0.08);
  border-color: rgba(255, 62, 165, 0.3);
  box-shadow: 
    0 6px 20px rgba(255, 62, 165, 0.15),
    0 3px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: relative;
}

.mobile-lang-option.active {
  background: linear-gradient(90deg, 
    rgba(255,62,165,0.15) 0%, 
    rgba(115,16,255,0.15) 100%);
  color: var(--color-brand-2);
  border-color: rgba(255, 62, 165, 0.4);
  font-weight: 700;
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

.mobile-lang-option .mobile-lang-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1000;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-lang-option:hover .mobile-lang-text {
  color: var(--color-brand-2);
  text-shadow: 0 2px 6px rgba(255, 62, 165, 0.3);
}

/* Simple Menu Toggle */
.menu-toggle { 
  display: none; 
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 62, 165, 0.1);
  border: 1px solid rgba(255, 62, 165, 0.3);
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 10000001;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  order: 2;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(255, 62, 165, 0.2);
  border-color: rgba(255, 62, 165, 0.5);
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
  background: rgba(255, 62, 165, 0.3);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.line {
  width: 18px;
  height: 2px;
  background: linear-gradient(45deg, var(--color-brand-1), var(--color-brand-2));
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

/* Menu Toggle Animation - Open State */
.menu-toggle.active .line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: linear-gradient(45deg, var(--color-brand-2), var(--color-brand-1));
  box-shadow: 0 2px 8px rgba(255, 62, 165, 0.4);
}

.menu-toggle.active .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0) translateX(20px);
}

.menu-toggle.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -7px);
  background: linear-gradient(45deg, var(--color-brand-2), var(--color-brand-1));
  box-shadow: 0 2px 8px rgba(115, 16, 255, 0.4);
}

/* Hover Effects */
.menu-toggle:hover .line {
  background: linear-gradient(45deg, var(--color-brand-2), var(--color-brand-1));
}

/* ===========================================
   MOBILE DROPDOWN MENU STYLES
   =========================================== */


/* Mobile Dropdown Menu */
.mobile-menu {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(135deg, 
    rgba(11, 11, 12, 0.98) 0%, 
    rgba(18, 18, 20, 0.95) 50%, 
    rgba(11, 11, 12, 0.98) 100%);
  backdrop-filter: blur(25px) saturate(180%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-image: linear-gradient(135deg, rgba(255,62,165,0.3), rgba(115,16,255,0.3)) 1;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.4),
    0 8px 25px rgba(115,16,255,0.1);
  z-index: 9999999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}



.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 9999999;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  box-shadow: none;
  outline: none;
  padding: 8px 16px;
  border-radius: 12px;
  background: transparent;
  border: none;
}

.mobile-menu-logo:hover {
  background: transparent;
  border: none;
  transform: translateY(-1px);
}

.mobile-menu-logo img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  box-shadow: 
    0 4px 15px rgba(115, 16, 255, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 62, 165, 0.2);
}

.mobile-menu-logo:hover img {
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(115, 16, 255, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 62, 165, 0.4);
}

.mobile-menu-logo span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(135deg, var(--color-brand-1), var(--color-brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(115, 16, 255, 0.3);
}

.mobile-menu-logo:hover span {
  transform: scale(1.02);
  text-shadow: 0 4px 15px rgba(115, 16, 255, 0.4);
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  background: linear-gradient(135deg, 
    rgba(255, 62, 165, 0.9) 0%, 
    rgba(115, 16, 255, 0.9) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-image: linear-gradient(135deg, rgba(255,62,165,0.6), rgba(115,16,255,0.6)) 1;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  z-index: 10000002;
  position: relative;
  flex-shrink: 0;
  pointer-events: auto;
  box-shadow: 
    0 4px 15px rgba(255, 62, 165, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
  outline: none;
}

.mobile-menu-close:hover {
  background: linear-gradient(135deg, 
    rgba(255, 62, 165, 1) 0%, 
    rgba(115, 16, 255, 1) 100%);
  border-image: linear-gradient(135deg, rgba(255,62,165,0.8), rgba(115,16,255,0.8)) 1;
  transform: scale(1.08) translateY(-2px);
  z-index: 10000003;
  box-shadow: 
    0 6px 20px rgba(255, 62, 165, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close:active {
  transform: scale(0.95) translateY(0px);
  background: linear-gradient(135deg, 
    rgba(255, 62, 165, 0.8) 0%, 
    rgba(115, 16, 255, 0.8) 100%);
  box-shadow: 
    0 2px 8px rgba(255, 62, 165, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.2);
}

.close-icon {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 10000004;
  box-shadow: none;
  outline: none;
}

.close-line {
  width: 18px;
  height: 2px;
  background: linear-gradient(45deg, var(--color-brand-1), var(--color-brand-2));
  border-radius: 1px;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: none;
  outline: none;
}

.close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Mobile Menu Content */
.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 9999999;
  position: relative;
}

/* Mobile Menu Navigation - Dropdown Style */
.mobile-menu-nav {
  padding: 20px 0;
  z-index: 9999999;
  position: relative;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  margin: 4px 16px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 9999999;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 62, 165, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 62, 165, 0.1) 50%, 
    rgba(115, 16, 255, 0.1) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.mobile-menu-link:hover::before {
  left: 100%;
}

.mobile-menu-link:hover {
  color: var(--color-brand-2);
  transform: translateX(8px);
  background: rgba(255, 62, 165, 0.08);
  border-color: rgba(255, 62, 165, 0.3);
  box-shadow: 
    0 6px 20px rgba(255, 62, 165, 0.15),
    0 3px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999999;
  position: relative;
}

.mobile-menu-link .menu-icon {
  font-size: 20px;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999999;
  position: relative;
  background: rgba(255, 62, 165, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 62, 165, 0.2);
}

.mobile-menu-link:hover .menu-icon {
  transform: scale(1.1) rotate(3deg);
  background: rgba(255, 62, 165, 0.2);
  border-color: rgba(255, 62, 165, 0.4);
  box-shadow: 0 3px 8px rgba(255, 62, 165, 0.3);
  z-index: 9999999;
  position: relative;
}

.mobile-menu-link .menu-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 9999999;
  position: relative;
  transition: all 0.3s ease;
}

  .mobile-menu-link:hover .menu-text {
    color: var(--color-brand-2);
    text-shadow: 0 2px 6px rgba(255, 62, 165, 0.3);
  }

  /* Mobile Language Section */
  .mobile-language-section {
    margin-top: 20px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 62, 165, 0.2);
    background: rgba(255, 255, 255, 0.02);
  }

  .mobile-language-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .mobile-lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mobile-lang-btn:hover {
    background: rgba(255, 62, 165, 0.1);
    transform: translateY(-1px);
  }

  .mobile-lang-btn.active {
    background: linear-gradient(135deg, var(--color-brand-1), var(--color-brand-2));
    color: white;
    box-shadow: 0 4px 15px rgba(115, 16, 255, 0.3);
  }

  .language-separator {
    color: rgba(255, 62, 165, 0.5);
    font-weight: 700;
    font-size: 16px;
  }



.mobile-language-dropdown {
  position: relative;
  width: 100%;
}

.mobile-lang-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(135deg, 
    rgba(18,18,20,0.9), 
    rgba(11,11,12,0.9));
  border: 2px solid rgba(255,62,165,0.3);
  color: var(--color-text);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-lang-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.mobile-lang-toggle:hover::before {
  left: 100%;
}

.mobile-lang-toggle:hover {
  background: linear-gradient(135deg, 
    rgba(255,62,165,0.1), 
    rgba(115,16,255,0.1));
  border-color: rgba(255,62,165,0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(115,16,255,0.3);
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-lang-toggle.active {
  background: linear-gradient(135deg, var(--color-brand-1), var(--color-brand-2));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 25px rgba(115,16,255,0.4);
  transform: translateY(-2px);
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-current-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-flag-icon {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  vertical-align: middle;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

.mobile-lang-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

.mobile-dropdown-arrow {
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-lang-toggle.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
  color: white;
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

/* Mobile Language Menu */
.mobile-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: linear-gradient(135deg, 
    rgba(11,11,12,0.98) 0%, 
    rgba(18,18,20,0.95) 50%, 
    rgba(11,11,12,0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,62,165,0.3);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 
              0 0 0 1px rgba(255,62,165,0.1);
  z-index: 999999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  display: block;
  overflow: hidden;
  padding: 8px 0;
  pointer-events: none;
}

.mobile-lang-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,62,165,0.5), transparent);
}

.mobile-lang-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  z-index: 999999999 !important;
  pointer-events: auto !important;
}

/* Mobile Language Options */
.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  min-height: 48px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-lang-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,62,165,0.1), 
    transparent);
  transition: left 0.4s ease;
}

.mobile-lang-option:hover::before {
  left: 100%;
}

.mobile-lang-option:hover {
  background: linear-gradient(90deg, 
    rgba(255,62,165,0.05) 0%, 
    rgba(115,16,255,0.05) 100%);
  color: var(--color-brand-2);
  transform: translateX(4px);
  padding-left: 20px;
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-lang-option.active {
  background: linear-gradient(90deg, 
    rgba(255,62,165,0.15) 0%, 
    rgba(115,16,255,0.15) 100%);
  color: var(--color-brand-2);
  border-left: 3px solid var(--color-brand-2);
  font-weight: 700;
  z-index: 999999999;
  pointer-events: auto;
}

.mobile-lang-option .mobile-flag-icon {
  font-size: 18px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

.mobile-lang-option:hover .mobile-flag-icon {
  transform: scale(1.1);
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

.mobile-lang-option .mobile-lang-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}

.mobile-lang-option:hover .mobile-lang-text {
  font-weight: 700;
  color: var(--color-brand-2);
  z-index: 1000;
  position: relative;
  pointer-events: auto;
}



/* Responsive Adjustments */
@media (max-width: 480px) {
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-logo {
    gap: 14px;
    padding: 6px 12px;
  }
  
  .mobile-menu-logo img {
    width: 53px;
    height: 53px;
  }
  
  .mobile-menu-logo span {
    font-size: 20px;
  }
  
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .mobile-menu-nav {
    padding: 24px 0;
  }
  
  .mobile-menu-link {
    padding: 16px 20px;
    margin: 6px 12px;
    gap: 16px;
  }
  
  .mobile-menu-link .menu-icon {
    font-size: 20px;
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
  
  .mobile-menu-link .menu-text {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .mobile-menu-logo {
    gap: 12px;
    padding: 4px 8px;
  }
  
  .mobile-menu-logo img {
    width: 48px;
    height: 48px;
  }
  
  .mobile-menu-logo span {
    font-size: 18px;
  }
  
  .mobile-menu-close {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  
  .mobile-menu-link {
    padding: 14px 16px;
    margin: 4px 8px;
    gap: 12px;
  }
  
  .mobile-menu-link .menu-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  
  .mobile-menu-link .menu-text {
    font-size: 15px;
  }
}

/* Hide mobile brand on desktop */
@media (min-width: 861px) {
  .mobile-menu-logo {
    display: none !important;
  }
}

@media (max-width: 860px) {
  body {
    padding-top: 70px; /* Mobilde daha küçük header için */
  }
  
  .mobile-menu {
    top: 70px !important; /* Mobilde header yüksekliğine göre ayarla */
  }
  
  .nav { 
    padding: 1rem 0; 
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .brand {
    display: none !important;
  }
  
  .mobile-menu-logo {
    display: flex !important;
    order: 1;
    margin-right: auto;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    max-width: calc(100% - 120px);
  }
  
  .mobile-menu-logo img {
    width: 60px;
    height: 60px;
    margin-right: 8px;
    flex-shrink: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .mobile-menu-logo span {
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .header-right {
    display: flex !important;
    order: 2;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .mobile-language-dropdown {
    display: none !important;
  }
  
  .menu-toggle { 
    display: flex !important;
    order: 2;
  }
  
  .language-dropdown {
    display: none !important; /* Hide desktop language dropdown on mobile */
  }
  
  .lang-menu {
    z-index: 10000001 !important;
  }
  
  /* Hide desktop menu on mobile */
  .desktop-menu { 
    display: none !important;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 8px;
  }
  
  .brand {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: -0.2px;
    max-width: calc(100% - 100px);
    line-height: 1.1;
  }
  
  .mobile-menu-logo {
    max-width: calc(100% - 100px);
  }
  
  .mobile-menu-logo img {
    width: 52px;
    height: 52px;
    margin-right: 6px;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .mobile-menu-logo span {
    font-size: 21px;
  }
  
  .header-right {
    gap: 6px;
    position: relative;
    z-index: 100000;
  }
  
  .mobile-language-dropdown {
    margin-right: 6px;
  }
  
  .mobile-lang-toggle {
    min-width: 45px;
    height: 36px;
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .mobile-lang-toggle .mobile-lang-text {
    font-size: 10px;
  }
  
  .mobile-dropdown-arrow {
    font-size: 9px;
  }
  
  .mobile-lang-menu {
    top: 70px !important;
  }
  
  .language-dropdown {
    display: none !important;
  }
  
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .menu-toggle .line {
    width: 18px;
    height: 2px;
  }
  
  .menu {
    min-width: 180px;
  }
  
  .menu a {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Ensure content doesn't hide behind sticky header */
main {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero-title-gradient {
    font-size: clamp(28px, 6vw, 48px);
    text-align: center;
    padding: 0 20px;
  }
  .hero-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    text-align: center;
    padding: 0 20px;
  }
}
.hero-media {
  position: absolute; inset: 0; z-index: -1; opacity: 1;
}
.hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.50)); z-index: -1; }
/* removed bottom fade from hero; will apply to slider instead when specified */
.hero-inner { text-align: left; padding: 80px 0; max-width: var(--max-w); width: 100%; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 6vw, 42px); margin: 0 0 10px; letter-spacing: .3px; color: #e7e3ff; text-shadow: 0 6px 30px rgba(115,0,255,.35); }
.gradient-text { 
  background: linear-gradient(90deg, #7310ff, #00d1d1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}
.hero-sub { color: #fff; }
-.hero-quote { margin: 0; color: #e7e3ff; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: .3px; font-size: clamp(20px, 4.2vw, 30px); text-shadow: 0 6px 30px rgba(115,0,255,.35); }
.hero-quote { margin: 0; color: #e7e3ff; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: .3px; font-size: clamp(20px, 4.2vw, 30px); text-shadow: 0 6px 30px rgba(115,0,255,.35); }
.hero.fade .hero-media { opacity: .2; transition: opacity .3s ease; }
.hero .hero-media { transition: opacity .3s ease; }
.btn {
  display: inline-block; padding: 12px 20px; border-radius: 999px; border: 1px solid rgba(255,62,165,.55);
  color: #0e0616; background: linear-gradient(135deg, var(--color-brand-2), var(--color-brand-1));
  font-weight: 700; letter-spacing: .3px; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,62,165,.28), 0 4px 14px rgba(115,16,255,.18); }

/* Sections */
section { padding: 80px 0; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 28px; margin: 0 0 16px; }
.section-sub { color: var(--color-muted); margin: 0 0 32px; }

/* Quotes carousel */
.quotes { max-width: 900px; margin: 0 auto; }
.quote-item { display: none; font-size: 20px; color: #ddd; text-align: center; }
.quote-item.active { display: block; animation: fade .6s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

/* Grids */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px){ .grid-4 { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 760px){ 
  .grid-3, .grid-4, .grid-2 { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  .section-title {
    font-size: 28px;
    text-align: center;
  }
  .section-sub {
    font-size: 16px;
    text-align: center;
  }
  
  /* Hizmetler bölümü için düzen düzeltmesi */
  .alt, .alt.reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }
  
  .alt img, .alt.reverse img {
    order: 1 !important;
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .alt > div, .alt.reverse > div {
    order: 2 !important;
    width: 100%;
  }
}

.card { background: #121214; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.card h3 { margin: 0 0 10px; font-family: 'Montserrat', sans-serif; }
.muted { color: var(--color-muted); }
.card .icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; color: var(--color-brand-2); margin-bottom: 8px; }

/* Image cards with caption (services) */
.image-card { position: relative; padding: 0; overflow: hidden; }
.image-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.image-card .cap { position: absolute; left: 12px; bottom: 12px; background: rgba(18,18,20,.8); color: #f0f0ff; padding: 8px 10px; border-radius: 8px; border: 1px solid var(--color-border); font-size: 12px; }

/* Alternating image/text blocks (studio) */
.alt { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 20px; align-items: center; }
.alt.reverse { grid-template-columns: 1.8fr 1.2fr; }
.alt img { border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: var(--shadow); }
/* Uniform landscape sizing for Services images */
#services .alt img { width: 100%; height: 320px; object-fit: cover; }
@media (max-width: 900px){ #services .alt img { height: 220px; } }
@media (max-width: 900px){ 
  .alt, .alt.reverse { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .alt img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .alt img {
    height: 200px;
  }
  .alt h3 {
    font-size: 20px;
  }
  .alt p {
    font-size: 14px;
  }
  
  /* Mobilde hizmetler düzeni - görsel üstte, yazı altta */
  .alt, .alt.reverse {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }
  
  .alt img, .alt.reverse img {
    order: 1 !important;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .alt > div, .alt.reverse > div {
    order: 2 !important;
    width: 100%;
  }
}

/* Counters */
.counters { display: flex; gap: 24px; flex-wrap: wrap; }
.counter { flex: 1 1 200px; background: #121214; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 20px; text-align: center; }
.counter .num { font-size: 34px; font-weight: 700; color: var(--color-brand-2); font-family: 'Montserrat', sans-serif; }
.counter .label { color: var(--color-muted); }

/* Forms */
form .field { display: grid; gap: 6px; margin-bottom: 16px; }
input, textarea {
  width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid var(--color-border);
  background: #0f0f11; color: var(--color-text);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--color-muted); font-size: 14px; }
.form-success { color: #28c76f; }
.form-error { color: #ff4d4f; }

/* Footer */
.footer { border-top: 1px solid var(--color-border); background: #0e0e10; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 22px; }
@media (max-width: 900px){ .footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .footer .cols { grid-template-columns: 1fr; } }
.footer h4 { margin: 0 0 10px; font-family: 'Montserrat', sans-serif; }
.footer a { color: var(--color-muted); }
.footer a:hover { color: var(--color-text); }
.social { display: flex; gap: 10px; }

/* Utility */
.spacer-s { height: 10px; }
.spacer-m { height: 20px; }
.spacer-l { height: 40px; }
.gold { color: var(--color-brand-2); }
.badge { display: inline-block; padding: 6px 10px; border: 1px solid var(--color-border); border-radius: 999px; color: var(--color-muted); font-size: 12px; }

/* Full-bleed dark map section */
.section-fullbleed { padding: 0; position: relative; }
.map-embed { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; height: 20vh; background: #0b0b0c; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(100%) brightness(70%) contrast(110%); }
.map-embed::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 100%, rgba(0,0,0,.6), rgba(0,0,0,.2) 40%, rgba(0,0,0,0) 70%); pointer-events: none; }

/* Contact 3-card grid */
.contact-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

.office-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-bottom: 16px;
  color: var(--color-text);
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-info a {
  color: var(--color-brand-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--color-brand-2);
}

/* Map card inside contact grid */
.map-card-embed { 
  position: relative; 
  height: 300px; 
  border-radius: 10px; 
  overflow: hidden; 
  flex: 1;
}
.map-card-embed iframe { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
  filter: grayscale(100%) brightness(70%) contrast(110%); 
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.map-card-embed:hover .map-overlay {
  opacity: 1;
}

.navigation-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #8B5CF6, #EC4899);
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  pointer-events: auto;
}

.navigation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  color: white;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .contact-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    min-height: auto;
  }
  
  .office-image {
    height: 250px;
  }
  
  .map-card-embed {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .contact-grid-3 {
    gap: 16px;
  }
  
  .office-image {
    height: 200px;
  }
  
  .map-card-embed {
    height: 200px;
  }
  
  .contact-info h3 {
    font-size: 18px;
  }
  
  .contact-info p {
    font-size: 14px;
  }
  
  .navigation-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Image borders - mor-pembe-siyah gradient çerçeve tüm fotoğraflara (ana slider ve ofis fotoğrafı hariç) */
#services .alt img,
.team-member img {
  border: 2px solid transparent;
  border-radius: 10px;
  position: relative;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #8B5CF6, #EC4899, #000000) border-box;
  margin: 5px;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.about-feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-text);
  font-weight: 600;
}

.about-feature p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .counters {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .counter {
    margin: 0;
  }
}

/* ===========================================
   NEW LANGUAGE SELECTOR DESIGN
   =========================================== */

.language-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  order: 1;
  flex-shrink: 0;
  z-index: 999999999;
}

/* Modern Language Toggle Button */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(18,18,20,0.9), rgba(11,11,12,0.9));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-image: linear-gradient(135deg, rgba(255,62,165,0.3), rgba(115,16,255,0.3)) 1;
  color: var(--color-text);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 90px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.lang-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.lang-toggle:hover::before {
  left: 100%;
}

.lang-toggle:hover {
  background: linear-gradient(135deg, rgba(255,62,165,0.1), rgba(115,16,255,0.1));
  border-image: linear-gradient(135deg, rgba(255,62,165,0.6), rgba(115,16,255,0.6)) 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(115,16,255,0.3);
}

.lang-toggle.active {
  background: linear-gradient(135deg, var(--color-brand-1), var(--color-brand-2));
  border-image: none;
  color: white;
  box-shadow: 0 8px 25px rgba(115,16,255,0.4);
  transform: translateY(-2px);
}

/* Language Content */
.current-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 50px;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

.flag-icon {
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lang-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dropdown-arrow {
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.lang-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
  color: white;
}

/* Modern Language Menu */
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: linear-gradient(135deg, 
    rgba(11,11,12,0.98) 0%, 
    rgba(18,18,20,0.95) 50%, 
    rgba(11,11,12,0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,62,165,0.3);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 
              0 0 0 1px rgba(255,62,165,0.1);
  min-width: 160px;
  z-index: 999999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  display: block;
  overflow: hidden;
  padding: 8px 0;
}

.lang-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,62,165,0.5), transparent);
}

.lang-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  z-index: 999999999 !important;
}

/* Mobilde dil menüsünü aşağı doğru aç */
@media (max-width: 860px) {
  /* Hide desktop language dropdown on mobile */
  .language-dropdown {
    display: none !important;
  }
}

.lang-menu.open {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
  display: block !important;
  z-index: 999999999 !important;
}

/* Modern Language Options */
.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  min-height: 48px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.lang-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,62,165,0.1), 
    transparent);
  transition: left 0.4s ease;
}

.lang-option:hover::before {
  left: 100%;
}

.lang-option:hover {
  background: linear-gradient(90deg, 
    rgba(255,62,165,0.05) 0%, 
    rgba(115,16,255,0.05) 100%);
  color: var(--color-brand-2);
  transform: translateX(4px);
  padding-left: 20px;
}

.lang-option.active {
  background: linear-gradient(90deg, 
    rgba(255,62,165,0.15) 0%, 
    rgba(115,16,255,0.15) 100%);
  color: var(--color-brand-2);
  border-left: 3px solid var(--color-brand-2);
  font-weight: 700;
}

.lang-option .flag-icon {
  font-size: 18px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.lang-option:hover .flag-icon {
  transform: scale(1.1);
}

.lang-option .lang-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.lang-option:hover .lang-text {
  font-weight: 700;
  color: var(--color-brand-2);
}

@media (max-width: 1600px) {
  .nav {
    gap: 15px;
  }
  
  .language-switcher {
    margin-left: 15px;
    gap: 5px;
  }
  
  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    min-width: 36px;
  }
  
  .flag-icon {
    font-size: 12px;
  }
  
  .lang-text {
    font-size: 9px;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 12px;
  }
  
  .language-switcher {
    margin-left: 10px;
    gap: 4px;
  }
  
  .lang-btn {
    padding: 5px 8px;
    font-size: 10px;
    min-width: 32px;
  }
  
  .flag-icon {
    font-size: 11px;
  }
  
  .lang-text {
    font-size: 8px;
  }
}

@media (max-width: 860px) {
  .nav {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }
  
  .brand {
    font-size: 11px;
    max-width: calc(100% - 70px);
    order: 1;
  }
  
  .language-switcher {
    margin-left: 0;
    margin-top: 0;
    justify-content: center;
    order: 2;
    width: 100%;
    margin-bottom: 8px;
    gap: 6px;
  }
  
  .lang-btn {
    padding: 6px 10px;
    font-size: 11px;
    min-width: 32px;
    flex: 0 0 auto;
  }
  
  .flag-icon {
    font-size: 12px;
  }
  
  .lang-text {
    font-size: 9px;
  }
  
  .nav-toggle {
    min-width: 40px;
    height: 32px;
    padding: 6px 8px;
    font-size: 14px;
    order: 3;
  }
  
  .menu {
    display: none;
  }
  
  .menu.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    z-index: 9999999 !important;
    padding: 20px !important;
  }
  
  .menu a {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 62, 165, 0.3);
    text-align: center;
    min-width: 200px;
  }
  
  .menu a:hover {
    background: rgba(255, 62, 165, 0.2);
    border-color: rgba(255, 62, 165, 0.6);
    color: var(--color-brand-2);
    transform: translateY(-2px);
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 10px 0;
    gap: 6px;
  }
  
  .brand {
    font-size: 10px;
    letter-spacing: 0.2px;
    max-width: calc(100% - 55px);
  }
  
  .language-switcher {
    gap: 4px;
    margin-bottom: 6px;
  }
  
  .lang-btn {
    padding: 5px 7px;
    font-size: 10px;
    min-width: 28px;
  }
  
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    min-width: 40px;
  }
  
  .menu-toggle .line {
    width: 18px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px; /* Çok küçük ekranlarda daha da küçük header */
  }
  
  .nav {
    padding: 8px 0;
    gap: 4px;
  }
  
  .brand {
    font-size: 9px;
    letter-spacing: 0.1px;
    max-width: calc(100% - 50px);
  }
  
  .language-switcher {
    gap: 3px;
    margin-bottom: 6px;
  }
  
  .lang-btn {
    padding: 4px 6px;
    font-size: 9px;
    min-width: 26px;
  }
  
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    min-width: 40px;
  }
  
  .menu-toggle .line {
    width: 18px;
    height: 2px;
  }
}

@media (max-width: 360px) {
  .nav {
    padding: 6px 0;
    gap: 3px;
  }
  
  .brand {
    font-size: 8px;
    letter-spacing: 0.1px;
    max-width: calc(100% - 45px);
  }
  
  .mobile-menu-logo {
    max-width: calc(100% - 90px);
  }
  
  .mobile-menu-logo img {
    width: 45px;
    height: 45px;
    margin-right: 4px;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .mobile-menu-logo span {
    font-size: 18px;
  }
  
  .header-right {
    gap: 4px;
  }
  
  .mobile-language-dropdown {
    margin-right: 4px;
  }
  
  .mobile-lang-toggle {
    min-width: 40px;
    height: 32px;
    padding: 4px 8px;
    font-size: 10px;
  }
  
  .mobile-lang-toggle .mobile-lang-text {
    font-size: 9px;
  }
  
  .mobile-dropdown-arrow {
    font-size: 8px;
  }
  
  .mobile-lang-menu {
    top: 60px !important;
  }
  
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    min-width: 40px;
  }
  
  .menu-toggle .line {
    width: 18px;
    height: 2px;
  }
}

/* Footer */
footer {
  background: rgba(18,18,20,.8);
  border-top: 1px solid rgba(255,62,165,.2);
  padding: 20px 0;
  margin-top: 60px;
}

.copyright {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Team */
.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.team-row:last-child {
  margin-bottom: 0;
}

.team-row-4 {
  /* 4 kişi için özel ayar */
}

.team-row-3 {
  /* 3 kişi için özel ayar */
}

@media (max-width: 768px) {
  .team-row {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  
  .team-row-4 {
    justify-content: center;
  }
  
  .team-row-3 {
    justify-content: center;
  }
  
  .team-member {
    width: 100%;
    max-width: 280px;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
}
.team-member { 
  text-align: center; 
  background: rgba(18,18,20,.6);
  border: 1px solid rgba(255,62,165,.2);
  border-radius: 20px;
  padding: 32px 24px;
  width: 100%;
  max-width: 280px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.team-member::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,62,165,.05), rgba(115,16,255,.05));
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.team-member:hover::before {
  opacity: 1;
}
.team-member:hover {
  transform: translateY(-8px);
  border-color: rgba(255,62,165,.4);
  box-shadow: 0 20px 40px rgba(255,62,165,.15);
}
.team-member img { 
  width: 180px; 
  height: 180px; 
  object-fit: cover; 
  border-radius: 50%; 
  margin: 0 auto 20px; 
  border: 3px solid rgba(255,62,165,.3);
  transition: all .4s ease;
  position: relative;
  z-index: 1;
}
.team-member:hover img {
  border-color: rgba(255,62,165,.6);
  transform: scale(1.05);
}
.team-member h4 { 
  margin: 0 0 8px; 
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}
.team-member p { 
  margin: 0; 
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}


