/* ============================================================
   İLKE MİMARLIK — Modern CSS
   Renk Paleti: Koyu Arkaplan + Altın Sarısı Aksan
   ============================================================ */

/* ---- CSS Değişkenleri ---- */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --gold-dark:   #a8893a;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark2:       #1a1a1a;
  --dark3:       #222222;
  --dark4:       #2d2d2d;
  --gray:        #888888;
  --gray-light:  #bbbbbb;
  --white:       #ffffff;
  --white-soft:  #f5f5f0;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
  --header-h:    80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--gray-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ---- Tipografi ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- Butonlar ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-dark);
  transition: var(--transition);
}
.btn-ghost:hover { gap: 14px; border-color: var(--gold); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
  width: min(92vw, 920px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 20px;
}
.preloader-visual {
  width: min(92vw, 720px);
  height: clamp(220px, 34vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(108, 77, 18, 0.22), transparent 42%),
    radial-gradient(circle at top right, rgba(201,168,76,0.14), transparent 34%),
    linear-gradient(180deg, #121212, #080808 74%);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.preloader-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preloader-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
}
.preloader-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.preloader-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.03em;
}
.preloader-caption {
  margin: 0;
  max-width: 620px;
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}
.preloader-bar {
  width: min(220px, 42vw);
  height: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  border-radius: 999px;
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: preloaderAnim 2.2s ease forwards;
}
@keyframes preloaderAnim { to { width: 100%; } }
.construction-scene {
  width: min(92%, 620px);
  height: min(86%, 280px);
  position: relative;
}
.construction-ambient {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 72%;
  height: 64px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(180,130,40,0.18), transparent 72%);
  animation: ambientPulse 3.5s ease-in-out infinite;
}
.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.22;
}
.scene-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scene-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(220,180,80,0.7);
  box-shadow: 0 0 8px rgba(220,180,80,0.35);
  animation: floatParticle linear infinite;
}
.particle-1 { left: 18%; bottom: 44px; --drift: 18px; animation-duration: 4.2s; }
.particle-2 { left: 31%; bottom: 60px; --drift: -12px; animation-duration: 5s; animation-delay: .8s; }
.particle-3 { left: 47%; bottom: 34px; --drift: 14px; animation-duration: 4.6s; animation-delay: .3s; }
.particle-4 { left: 64%; bottom: 56px; --drift: -16px; animation-duration: 5.2s; animation-delay: 1.1s; }
.particle-5 { left: 76%; bottom: 40px; --drift: 10px; animation-duration: 4.4s; animation-delay: .6s; }
.particle-6 { left: 58%; bottom: 28px; --drift: -8px; animation-duration: 4.8s; animation-delay: 1.4s; }
.background-building {
  position: absolute;
  bottom: 26px;
  background: linear-gradient(180deg, rgba(20,20,20,0.86), rgba(8,8,8,0.96));
  border: 1px solid rgba(255,255,255,0.05);
}
.background-building::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(255,255,255,0.04) 17px 18px),
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(255,255,255,0.04) 18px 19px);
  opacity: .55;
}
.background-building::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(212,168,50,0.42);
}
.bg-left-far {
  left: 4%;
  width: 58px;
  height: 172px;
  opacity: .28;
}
.bg-left-far::after {
  left: 0;
}
.bg-right-far {
  right: 5%;
  width: 56px;
  height: 148px;
  opacity: .26;
}
.bg-right-far::after {
  right: 0;
}
.bg-left-mid {
  left: 16%;
  width: 82px;
  height: 208px;
  opacity: .54;
  clip-path: polygon(14% 5%, 100% 0, 100% 100%, 0 100%, 0 10%);
}
.bg-left-mid::after {
  right: 0;
}
.bg-right-mid {
  right: 14%;
  width: 76px;
  height: 184px;
  opacity: .48;
  clip-path: polygon(0 0, 84% 6%, 100% 12%, 100% 100%, 0 100%);
}
.bg-right-mid::after {
  left: 0;
}
.ground-line {
  position: absolute;
  left: 6%;
  right: 4%;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,140,50,0.4) 20%, rgba(200,160,60,0.7) 50%, rgba(180,140,50,0.4) 80%, transparent);
}
.crane {
  position: absolute;
  inset: 10px auto 22px 9%;
  width: 196px;
}
.crane-tower {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12px;
  height: 212px;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.15) 0 8px, rgba(201,168,76,0.5) 8px 16px);
  box-shadow: 28px 0 0 rgba(255,255,255,0.03);
}
.crane-arm {
  position: absolute;
  left: 6px;
  top: 18px;
  width: 182px;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,0.75));
  transform-origin: left center;
  animation: craneSwing 3.8s ease-in-out infinite;
}
.crane-hook {
  position: absolute;
  left: 126px;
  top: 26px;
  width: 2px;
  height: 118px;
  background: rgba(255,255,255,0.55);
  animation: hookLift 2.6s ease-in-out infinite;
}
.crane-hook::after {
  content: "";
  position: absolute;
  left: -9px;
  bottom: -10px;
  width: 20px;
  height: 14px;
  border: 2px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.building {
  position: absolute;
  bottom: 26px;
  width: 118px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.building-one { left: 36%; height: 148px; }
.building-two { left: 57%; height: 188px; width: 104px; }
.building-core {
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(90deg, rgba(10,10,10,0.96), rgba(26,26,26,0.92) 48%, rgba(10,10,10,0.96)),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.building-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(255,255,255,0.05) 23px 24px),
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(255,255,255,0.05) 26px 27px);
  opacity: .62;
}
.building-core::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  right: 0;
  background: rgba(212,168,50,0.66);
  box-shadow: 0 0 8px rgba(212,168,50,0.25);
}
.building-floor {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 24px;
  background: linear-gradient(90deg, rgba(201,168,76,0.15), rgba(201,168,76,0.72), rgba(201,168,76,0.15));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset;
  transform-origin: center bottom;
  transform: scaleY(0.15);
  opacity: 0.15;
  animation: floorBuild 2.4s ease-out infinite;
}
.building-one .floor-1 { bottom: 16px; animation-delay: 0.15s; }
.building-one .floor-2 { bottom: 46px; animation-delay: 0.45s; }
.building-one .floor-3 { bottom: 76px; animation-delay: 0.75s; }
.building-two .floor-1 { bottom: 16px; animation-delay: 0.3s; }
.building-two .floor-2 { bottom: 46px; animation-delay: 0.6s; }
.building-two .floor-3 { bottom: 76px; animation-delay: 0.9s; }
.building-two .floor-4 { bottom: 106px; animation-delay: 1.2s; }
@keyframes ambientPulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.3; }
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  12% { opacity: .82; }
  90% { opacity: .3; }
  100% {
    transform: translateY(-118px) translateX(var(--drift));
    opacity: 0;
  }
}
@keyframes craneSwing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-4deg); }
}
@keyframes hookLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}
@keyframes floorBuild {
  0%, 18% {
    transform: scaleY(0.15);
    opacity: 0.12;
  }
  30%, 72% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

@media (max-width: 768px) {
  .lang-switch {
    display: none;
  }
  .preloader-inner {
    width: min(94vw, 520px);
    gap: 16px;
  }
  .preloader-visual {
    height: 240px;
    border-radius: 22px;
  }
  .construction-scene {
    width: 95%;
    height: 210px;
  }
  .crane {
    transform: scale(.82);
    transform-origin: left bottom;
  }
  .bg-left-mid,
  .bg-right-mid {
    opacity: .38;
  }
  .preloader-kicker {
    letter-spacing: .24em;
  }
  .preloader-caption {
    font-size: .9rem;
    line-height: 1.6;
  }
}

body.dir-rtl {
  direction: rtl;
}
body.dir-rtl .header-inner,
body.dir-rtl .header-right,
body.dir-rtl .nav-list,
body.dir-rtl .footer-grid,
body.dir-rtl .footer-bottom-inner {
  direction: rtl;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  height: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  gap: clamp(12px, 1.6vw, 24px);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--white);
}
.site-logo-media {
  width: clamp(148px, 15vw, 210px);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.logo-mask {
  width: 100%;
  height: 100%;
  display: block;
  background-color: currentColor;
  -webkit-mask-image: var(--logo-mask);
  mask-image: var(--logo-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
}
.logo-sub {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

@media (min-width: 769px) {
  .logo-text-wrap {
    position: relative;
    left: clamp(-28px, -3vw, -44px);
  }
}
.site-header.scrolled .site-logo {
  color: var(--gold);
}

/* Nav */
.main-nav {
  flex: 1;
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 0.35vw, 4px);
  flex-wrap: nowrap;
}
.nav-item {
  position: relative;
  flex: 0 0 auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px clamp(10px, 0.95vw, 16px);
  font-size: clamp(0.68rem, 0.6rem + 0.18vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-link span {
  display: block;
  white-space: nowrap;
  line-height: 1;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--white);
}
.nav-item.active .nav-link::after,
.nav-link:hover::after { width: 24px; }

.nav-caret {
  font-size: 0.58rem;
  margin-left: 0;
  flex: 0 0 auto;
  color: var(--gray);
  transition: transform var(--transition), color var(--transition);
}
.nav-item.has-children:hover .nav-caret,
.nav-item.has-children.open .nav-caret {
  transform: rotate(180deg);
  color: var(--gold);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  background: rgba(15, 15, 18, 0.98);
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1200;
}
.nav-item.has-children:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-sub-link {
  display: block;
  padding: 9px 10px;
  color: var(--gray-light);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-sub-link:hover {
  color: var(--white);
  background: rgba(201,168,76,0.1);
}

/* Header Sağ */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.lang-switch {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: auto;
  max-width: none;
  overflow: visible;
}
details.lang-switch {
  vertical-align: middle;
}
details.lang-switch > summary {
  list-style: none;
}
details.lang-switch > summary::-webkit-details-marker {
  display: none;
}
details.lang-switch > :not(summary) {
  position: absolute;
}
.lang-switch-trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  min-height: 42px;
  padding: 10px 24px;
  border-radius: var(--radius);
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  gap: 7px;
  transition: var(--transition);
}
.lang-switch-trigger::-webkit-details-marker {
  display: none;
}
.lang-switch-trigger::marker {
  content: "";
}
.lang-switch-trigger:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.lang-switch[open] .lang-switch-trigger {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.lang-switch-trigger > .lang-flag {
  display: none;
}
.lang-switch-label {
  display: inline-block;
  flex: 0 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-switch-trigger i {
  font-size: 0.65rem;
  color: var(--black);
  transition: transform var(--transition);
}
.lang-switch[open] .lang-switch-trigger i {
  transform: rotate(180deg);
}
.lang-switch-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  min-width: 240px;
  max-width: 240px;
  padding: 12px 0;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #e8e8e8;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  display: none;
  flex-direction: column;
  align-items: stretch;
  z-index: 1200;
}
details.lang-switch:not([open]) > .lang-switch-menu {
  display: none;
}
.lang-switch[open] .lang-switch-menu,
.lang-switch:focus-within .lang-switch-menu {
  display: flex;
  flex-direction: column;
}
.lang-switch-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 10px 20px;
  color: #2f2f2f;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.lang-switch-link.active,
.lang-switch-link:hover {
  background: rgba(242,178,31,0.22);
  color: #121212;
}
.lang-flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  flex: 0 0 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.lang-flag-ru {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23d52b1e'/%3E%3Crect width='24' height='10.66' y='0' fill='%230039a6'/%3E%3Crect width='24' height='5.33' y='0' fill='%23ffffff'/%3E%3C/svg%3E");
}
.lang-flag-tr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23e30a17'/%3E%3Ccircle cx='9' cy='8' r='4' fill='%23fff'/%3E%3Ccircle cx='10' cy='8' r='3.2' fill='%23e30a17'/%3E%3Cpolygon points='13.8,8 15.2,8.5 14.3,7.2 15.7,6.8 14.2,6.8 13.8,5.4 13.3,6.8 11.9,6.8 13.1,7.6 12.6,9 13.8,8.2' fill='%23fff'/%3E%3C/svg%3E");
}
.lang-flag-us {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23fff'/%3E%3Cg fill='%23b22234'%3E%3Crect width='24' height='1.23' y='0'/%3E%3Crect width='24' height='1.23' y='2.46'/%3E%3Crect width='24' height='1.23' y='4.92'/%3E%3Crect width='24' height='1.23' y='7.38'/%3E%3Crect width='24' height='1.23' y='9.84'/%3E%3Crect width='24' height='1.23' y='12.3'/%3E%3Crect width='24' height='1.23' y='14.76'/%3E%3C/g%3E%3Crect width='10.4' height='8.6' fill='%233c3b6e'/%3E%3C/svg%3E");
}
.lang-flag-de {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23ffce00'/%3E%3Crect width='24' height='10.66' fill='%23dd0000'/%3E%3Crect width='24' height='5.33' fill='%23000'/%3E%3C/svg%3E");
}
.lang-flag-sa {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Crect width='24' height='16' fill='%23006c35'/%3E%3Crect x='5' y='11.3' width='14' height='1' rx='0.5' fill='%23fff'/%3E%3Ccircle cx='17.8' cy='11.8' r='0.8' fill='%23fff'/%3E%3C/svg%3E");
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray);
  transition: color var(--transition);
}
.header-phone i { color: var(--gold); font-size: 0.75rem; }
.header-phone:hover { color: var(--white); }
.header-phone span { display: none; }
@media (min-width: 1100px) { .header-phone span { display: inline; } }

.btn-contact {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-contact:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-shell,
.mobile-nav-meta {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  padding-top: var(--header-h);
  width: 100%;
}
.hero-inner { max-width: 680px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollAnim 2s 1.4s infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}
.hero-stat {
  padding: 28px 32px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--dark4);
  border-left: 1px solid var(--dark4);
  text-align: center;
  transition: background var(--transition);
}
.hero-stat:hover { background: rgba(201,168,76,0.1); }
.hero-stat:first-child { border-top-color: var(--gold); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   BÖLÜM GENEL STILLER
   ============================================================ */
section { position: relative; }

.section-pad    { padding: clamp(80px, 10vw, 140px) 0; }
.section-pad-sm { padding: clamp(60px, 8vw, 100px) 0; }

/* Animasyonlar */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Delay sınıfları */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   HAKKIMIZDA ÖZET (Ana Sayfa)
   ============================================================ */
.about-section { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-media {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--dark);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  text-align: center;
  border-radius: var(--radius);
}
.about-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content { padding: 20px 0; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  padding: 20px;
  background: var(--dark2);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
  transition: background var(--transition);
}
.about-feature:hover { background: var(--dark3); }
.about-feature i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.about-feature h5 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.about-feature p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services-section { background: var(--dark2); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 70px);
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--dark4);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--dark2);
  padding: clamp(28px, 3vw, 44px);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  background: var(--dark3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  color: var(--gold);
  gap: 10px;
}

/* ============================================================
   PROJELERr (Ana Sayfa)
   ============================================================ */
.projects-section { background: var(--dark); }
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 70px);
  gap: 24px;
  flex-wrap: wrap;
}

/* Filtre */
.projects-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--dark4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Proje Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--dark3);
}
.project-card:nth-child(1),
.project-card:nth-child(4) { grid-column: span 7; }
.project-card:nth-child(2),
.project-card:nth-child(3) { grid-column: span 5; }
.project-card:nth-child(5),
.project-card:nth-child(6) { grid-column: span 6; }

.project-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.project-card:nth-child(1) .project-card-img,
.project-card:nth-child(4) .project-card-img {
  aspect-ratio: 16/10;
}
.project-card:hover .project-card-img { transform: scale(1.05); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}

.project-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.project-card:hover .project-cat { opacity: 1; transform: translateY(0); }

.project-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.project-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition) 0.05s, transform var(--transition) 0.05s;
}
.project-card:hover .project-card-meta { opacity: 1; transform: translateY(0); }
.project-card-meta span { display: flex; align-items: center; gap: 5px; }
.project-card-meta i { color: var(--gold); font-size: 0.65rem; }

.project-view-btn {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  transition: opacity var(--transition), transform var(--transition);
  font-size: 0.85rem;
}
.project-card:hover .project-view-btn {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* ============================================================
   SAYAÇLAR
   ============================================================ */
.counters-section {
  background: var(--gold);
  padding: clamp(50px, 7vw, 90px) 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.15);
}
.counter-item {
  background: transparent;
  padding: 32px 20px;
  text-align: center;
  position: relative;
}
.counter-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--black);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

/* ============================================================
   EKİP
   ============================================================ */
.team-section { background: var(--dark2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: clamp(40px, 5vw, 70px);
}
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: default;
}
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(30%);
}
.team-card:hover .team-card-img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform var(--transition);
}
.team-card:hover .team-card-info { transform: translateY(0); }
.team-card-info h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card-info span {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-card-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition) 0.1s;
}
.team-card:hover .team-card-social { opacity: 1; transform: translateY(0); }
.team-card-social a {
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  transition: var(--transition);
}
.team-card-social a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================================
   CTA BÖLÜMÜ
   ============================================================ */
.cta-section {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.cta-content .section-label { justify-content: center; }
.cta-content .section-label::before { display: none; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  font-size: 1rem;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SAYFA BANNER
   ============================================================ */
.page-banner {
  position: relative;
  height: clamp(280px, 35vw, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-h);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
}
.page-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.page-banner-content .section-label { margin-bottom: 12px; }
.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* ============================================================
   PROJELERr SAYFASI
   ============================================================ */
.projects-page-section { background: var(--dark); }

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.project-card-page {
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card-page:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.project-card-page-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card-page:hover .project-card-page-img { transform: scale(1.04); }
.project-card-page-body {
  padding: 24px;
}
.project-card-page-body .project-cat { opacity: 1; transform: none; margin-bottom: 8px; }
.project-card-page-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.project-card-page-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--dark4);
}
.project-card-page-meta {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  color: var(--gray);
}
.project-card-page-meta span { display: flex; align-items: center; gap: 5px; }
.project-card-page-meta i { color: var(--gold); }

/* Proje Detay */
.project-detail-section { background: var(--dark); }
.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.project-gallery { position: relative; }
.project-main-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.project-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.project-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.project-thumb:hover,
.project-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(0.97);
}
.project-info-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.project-info-header {
  background: var(--gold);
  padding: 20px 28px;
}
.project-info-header h3 {
  color: var(--black);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.project-info-list { padding: 12px 0; }
.project-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--dark4);
  font-size: 0.85rem;
}
.project-info-item:last-child { border: none; }
.project-info-label { color: var(--gray); font-weight: 500; }
.project-info-value { color: var(--white); text-align: right; }
.project-description { margin-top: 32px; }
.project-description h2 { font-size: 1.8rem; margin-bottom: 16px; }
.project-description p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ============================================================
   HİZMETLER SAYFASI
   ============================================================ */
.services-page-section { background: var(--dark); }
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.service-page-card {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-page-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.1);
}
.service-page-card:hover::after { transform: scaleX(1); }
.service-page-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-page-card:hover .service-page-icon {
  background: var(--gold);
  color: var(--black);
}
.service-page-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.service-page-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   HAKKIMIZDA SAYFASI
   ============================================================ */
.about-page-section { background: var(--dark); }
.about-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.about-page-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.about-page-text p { color: var(--gray); line-height: 1.9; margin-bottom: 16px; }
.about-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}
.vision-card {
  background: var(--dark2);
  padding: 36px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}
.vision-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.vision-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.vision-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text p {
  font-size: 0.9rem;
  color: var(--white);
  transition: color var(--transition);
  margin: 0;
}
.contact-item-text a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* İletişim Formu */
.contact-form-wrap {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--dark4);
}
.form-title {
  font-size: 1.4rem;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dark4);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-control {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--gray); opacity: 0.5; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Mesaj kutuları */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* Harita */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark4);
  margin-top: 60px;
}
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); }
.footer-top { padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
}
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.footer-since { font-size: 0.72rem; color: var(--dark4); letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark4);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a i { font-size: 0.6rem; color: var(--gold-dark); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); gap: 12px; }
.footer-links a:hover i { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-contact-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a { color: var(--gray); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }
.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 22px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-footer:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--dark2);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy, .footer-credit {
  font-size: 0.78rem;
  color: var(--dark4);
}
.footer-credit { color: rgba(201,168,76,0.3); }

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: var(--gold-light); }

/* ============================================================
   ADMİN PANELİ
   ============================================================ */
.admin-body {
  background: #0d0d0d;
  font-family: var(--font-sans);
  color: var(--gray-light);
  min-height: 100vh;
}
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 20px;
}
.admin-login-box {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.admin-login-box .logo-main { font-size: 1.8rem; }
.admin-login-box .logo-sub { font-size: 0.6rem; margin-bottom: 32px; display: block; }
.admin-login-box h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.admin-login-box p { color: var(--gray); font-size: 0.85rem; margin-bottom: 28px; }
.admin-login-box .form-group { text-align: left; margin-bottom: 16px; }
.admin-login-box .form-label { color: var(--gray); }
.admin-login-box .form-submit { margin-top: 8px; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px;
  background: var(--black);
  border-right: 1px solid var(--dark3);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}
.admin-sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid var(--dark3);
  margin-bottom: 8px;
}
.admin-nav { flex: 1; padding: 8px; }
.admin-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition);
}
.admin-nav-item a i {
  width: 18px;
  text-align: center;
  color: var(--dark4);
  transition: color var(--transition);
}
.admin-nav-item a:hover,
.admin-nav-item.active a {
  background: var(--dark3);
  color: var(--white);
}
.admin-nav-item.active a i,
.admin-nav-item a:hover i { color: var(--gold); }
.admin-nav-separator {
  padding: 16px 16px 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark4);
}
.admin-sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--dark3);
}
.admin-sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--gray);
  font-size: 0.82rem;
  transition: var(--transition);
}
.admin-sidebar-footer a:hover { background: rgba(239,68,68,0.1); color: #f87171; }
.admin-sidebar-footer a i { color: inherit; }

.admin-main {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--black);
  border-bottom: 1px solid var(--dark3);
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-page-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray);
}
.admin-user-avatar {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
}
.admin-content { padding: 28px; flex: 1; }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.admin-stat-icon.gold { background: rgba(201,168,76,0.1); color: var(--gold); }
.admin-stat-icon.blue { background: rgba(59,130,246,0.1); color: #60a5fa; }
.admin-stat-icon.green { background: rgba(34,197,94,0.1); color: #4ade80; }
.admin-stat-icon.red { background: rgba(239,68,68,0.1); color: #f87171; }
.admin-stat-info h4 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.admin-stat-info p { font-size: 0.75rem; color: var(--gray); }

.admin-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.admin-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--dark3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-card-header h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.admin-card-body { padding: 20px; }

/* Admin Tablo */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--dark3);
  border-bottom: 1px solid var(--dark4);
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--dark3);
  color: var(--gray-light);
  vertical-align: middle;
}
.admin-table tr:last-child td { border: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-table img {
  width: 48px; height: 36px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Admin Badge */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-success { background: rgba(34,197,94,0.1); color: #4ade80; }
.badge-warning { background: rgba(251,191,36,0.1); color: #fbbf24; }
.badge-danger  { background: rgba(239,68,68,0.1);  color: #f87171; }
.badge-info    { background: rgba(59,130,246,0.1);  color: #60a5fa; }
.badge-gold    { background: rgba(201,168,76,0.1);  color: var(--gold); }

/* Admin Butonlar */
.btn-sm {
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-sm.btn-gold { background: var(--gold); color: var(--black); }
.btn-sm.btn-gold:hover { background: var(--gold-light); }
.btn-sm.btn-danger { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.btn-sm.btn-danger:hover { background: rgba(239,68,68,0.2); }
.btn-sm.btn-secondary { background: var(--dark4); color: var(--gray-light); }
.btn-sm.btn-secondary:hover { background: var(--dark3); color: var(--white); }

/* Admin Form */
.admin-form .form-group { margin-bottom: 20px; }
.admin-form .form-label { font-size: 0.78rem; color: var(--gray); margin-bottom: 8px; display: block; }
.admin-form .form-control { background: var(--dark3); border-color: var(--dark4); }

/* Boş Durum */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.empty-state i { font-size: 3rem; color: var(--dark4); margin-bottom: 16px; }
.empty-state h3 { font-size: 1rem; color: var(--gray-light); margin-bottom: 8px; }
.empty-state p { font-size: 0.85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-stats { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page-intro { grid-template-columns: 1fr; gap: 40px; }
  .project-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(3),
  .project-card:nth-child(4),
  .project-card:nth-child(5),
  .project-card:nth-child(6) { grid-column: span 6; }
  .about-vision-mission { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Mobil Nav */
  .mobile-nav-shell,
  .mobile-nav-meta {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 100vw);
    height: 100vh;
    background: #f8f8f6;
    border-left: 1px solid rgba(18, 24, 34, 0.08);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px 24px 28px;
    overflow-y: auto;
    transition: right var(--transition), box-shadow var(--transition);
    box-shadow: -24px 0 60px rgba(16, 20, 28, 0.22);
  }
  .main-nav.open { right: 0; }
  .mobile-nav-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
  }
  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }
  .mobile-nav-logo-frame {
    width: 88px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
  }
  .mobile-nav-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
  }
  .mobile-nav-logo-mask {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--text);
    -webkit-mask-image: var(--logo-mask);
    mask-image: var(--logo-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left center;
    mask-position: left center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
  .mobile-nav-brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #314878;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(49, 72, 120, 0.16);
  }
  .mobile-nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .mobile-nav-brand-text strong {
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: #141922;
    text-transform: uppercase;
  }
  .mobile-nav-brand-text span {
    font-size: 0.9rem;
    color: #353d49;
  }
  .mobile-nav-close {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #314878;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex: 0 0 auto;
  }
  .mobile-nav-search {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dde3ea;
    border-radius: 18px;
    background: #fff;
    padding: 0 16px;
    min-height: 58px;
    margin-bottom: 26px;
  }
  .mobile-nav-search i {
    color: #697386;
    font-size: 1.05rem;
  }
  .mobile-nav-search input {
    border: 0;
    background: transparent;
    width: 100%;
    color: #18202b;
    font-size: 1rem;
    outline: none;
  }
  .mobile-nav-search input::placeholder {
    color: #8a94a6;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .nav-link {
    font-size: 1.15rem;
    padding: 14px 0;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    color: #141922;
    font-weight: 700;
  }
  .nav-link::after { display: none; }
  .nav-item { width: 100%; }
  .nav-item.hidden-by-search { display: none; }
  .nav-caret {
    color: #202733;
    font-size: 0.95rem;
  }
  .nav-item.has-children .nav-submenu {
    position: static;
    min-width: 100%;
    margin-top: 2px;
    padding: 6px 0 0 18px;
    border: 0;
    border-left: 1px solid #dce3ea;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-item.has-children.open .nav-submenu { display: block; }
  .nav-sub-link {
    padding: 10px 0;
    font-size: 0.98rem;
    text-transform: none;
    letter-spacing: 0.01em;
    color: #5a6475;
  }
  .mobile-nav-meta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #dce2e9;
  }
  .mobile-nav-meta-block + .mobile-nav-meta-block {
    margin-top: 18px;
  }
  .mobile-nav-meta-block p {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #131a24;
  }
  .mobile-nav-meta-block a,
  .mobile-nav-meta-block span {
    display: block;
    color: #6b7382;
    font-size: 1rem;
    line-height: 1.7;
  }
  .mobile-nav-social {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 22px;
  }
  .mobile-nav-social a {
    color: #314878;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hamburger { display: flex; }
  .btn-contact { display: none; }
  .header-phone i { display: none; }

  /* Projeler grid mobil */
  .projects-grid { display: flex; flex-direction: column; }
  .project-card,
  .project-card:nth-child(n) { grid-column: auto; }
  .project-card-img,
  .project-card:nth-child(1) .project-card-img,
  .project-card:nth-child(4) .project-card-img { aspect-ratio: 16/10; }

  .counters-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-secondary, .about-badge { display: none; }
  .about-img-main { aspect-ratio: 16/9; }

  /* Admin mobil */
  .admin-layout { flex-direction: column; }
  .admin-sidebar { position: relative; width: 100%; height: auto; flex-direction: row; border-right: none; border-bottom: 1px solid var(--dark3); }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 16px; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 240px; justify-content: center; }
  .projects-page-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TEMA SISTEMI
   ============================================================ */
body.ux-sticky-off .site-header {
  position: relative;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.ux-sticky-off .hero-content {
  padding-top: 24px;
}
body.ux-parallax-off .hero-bg img {
  transform: none !important;
  animation: none !important;
}
body.ux-hover-preview-on .project-card-img {
  transition: transform 0.5s ease;
}
body.ux-hover-preview-on .project-card:hover .project-card-img {
  transform: scale(1.06);
}

body.theme-minimal {
  --gold: #151515;
  --gold-light: #303030;
  --gold-dark: #111111;
  --black: #fdfdfd;
  --dark: #ffffff;
  --dark2: #f6f7f9;
  --dark3: #eef1f4;
  --dark4: #d9dee5;
  --gray: #5b6470;
  --gray-light: #1f2731;
  --white: #111111;
  --white-soft: #0f1722;
}
body.theme-minimal .hero-overlay {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55));
}
body.theme-minimal .site-header.scrolled {
  border-bottom-color: rgba(0,0,0,0.08);
}
body.theme-minimal .btn-gold {
  color: #fff;
}

body.theme-showcase .hero {
  min-height: 92svh;
}
body.theme-showcase .hero-title {
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  letter-spacing: 0.02em;
}
body.theme-showcase .projects-grid .project-card:nth-child(1) .project-card-img {
  aspect-ratio: 21 / 9;
}
body.theme-showcase .project-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

body.theme-grid .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
body.theme-grid .projects-grid .project-card {
  grid-column: auto !important;
}
body.theme-grid .projects-grid .project-card:nth-child(3n) .project-card-img {
  aspect-ratio: 3/4;
}
body.theme-grid .projects-grid .project-card:nth-child(2n) .project-card-img {
  aspect-ratio: 4/3;
}
body.theme-grid .projects-grid .project-card:nth-child(5n) .project-card-img {
  aspect-ratio: 16/9;
}

body.theme-dark {
  --gold: #00d4ff;
  --gold-light: #7de9ff;
  --gold-dark: #0a93af;
}
body.theme-dark .section-title span,
body.theme-dark .section-label,
body.theme-dark .logo-sub {
  color: var(--gold);
}

body.theme-brutalist {
  --radius: 0;
  --radius-lg: 0;
  --gold: #ff6b00;
  --gold-light: #ff8a34;
  --gold-dark: #d95900;
}
body.theme-brutalist .section-title,
body.theme-brutalist .hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
body.theme-brutalist .project-card,
body.theme-brutalist .service-card,
body.theme-brutalist .admin-card {
  border-width: 2px;
}
body.theme-brutalist .nav-link {
  letter-spacing: 0.16em;
}

body.theme-nature {
  --gold: #5ca36d;
  --gold-light: #8fc99d;
  --gold-dark: #42764f;
  --dark: #0f1b15;
  --dark2: #16251d;
  --dark3: #203327;
  --dark4: #2b4736;
  --gray: #97b2a2;
}
body.theme-nature .hero-overlay {
  background: linear-gradient(135deg, rgba(15,27,21,0.86), rgba(19,44,30,0.45));
}
body.theme-nature .section-title span,
body.theme-nature .section-label {
  color: #9ad5ab;
}

body.theme-editorial {
  --gold: #9b6cff;
  --gold-light: #b89dff;
  --gold-dark: #6d46c8;
}
body.theme-editorial .hero-title,
body.theme-editorial .section-title {
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 1;
}
body.theme-editorial .hero-desc,
body.theme-editorial .section-desc {
  max-width: 700px;
  font-size: 1.08rem;
}
body.theme-editorial .project-overlay-content h3 {
  font-size: 1.4rem;
}

/* ============================================================
   ALIYO PREMIUM REDESIGN (HEADER/MENU LOCKED)
   ============================================================ */
:root {
  --studio-bg: #f4f4f1;
  --studio-surface: #ffffff;
  --studio-surface-soft: #ecece7;
  --studio-text: #151619;
  --studio-text-muted: #585b60;
  --studio-line: #d9dad6;
  --studio-ink: #111216;
  --studio-accent: #2f4858;
}

.studio-anchor {
  position: relative;
  top: -110px;
  height: 0;
}

.studio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--studio-accent);
}
.studio-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.studio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 12px 22px;
}
.studio-btn-solid {
  background: var(--studio-ink);
  color: #fff;
  border: 1px solid var(--studio-ink);
}
.studio-btn-solid:hover {
  transform: translateY(-2px);
  background: #252833;
  border-color: #252833;
}
.studio-btn-ghost {
  background: transparent;
  color: var(--studio-ink);
  border: 1px solid rgba(17, 18, 22, 0.25);
}
.studio-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 18, 22, 0.65);
}
.studio-btn-block {
  width: 100%;
}

.studio-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--studio-accent);
  font-weight: 600;
  transition: gap var(--transition), color var(--transition);
}
.studio-inline-link:hover {
  gap: 13px;
  color: var(--studio-ink);
}

.studio-section {
  position: relative;
  padding: clamp(74px, 8vw, 128px) 0;
}
.studio-section-light {
  background: var(--studio-bg);
  color: var(--studio-text);
}
.studio-section-charcoal {
  background: #1b1e24;
  color: #d7d9df;
}
.studio-section-charcoal .studio-kicker,
.studio-section-charcoal .studio-inline-link {
  color: #9cb1c1;
}
.studio-section-charcoal h2,
.studio-section-charcoal h3 {
  color: #fff;
}

.studio-section-head {
  margin-bottom: clamp(28px, 4vw, 54px);
}
.studio-section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.05rem);
  line-height: 1.15;
  color: var(--studio-ink);
}
.studio-section-light p,
.studio-section-light li,
.studio-section-light span {
  color: var(--studio-text-muted);
}

/* Hero */
.studio-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
}
.studio-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.studio-hero-video,
.studio-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-hero-video { z-index: 0; }
.studio-hero-image { z-index: -1; }
.studio-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9,10,14,0.86), rgba(9,10,14,0.42) 48%, rgba(9,10,14,0.8));
  z-index: 1;
}
.studio-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 18px);
  padding-bottom: clamp(30px, 8vw, 80px);
}
.studio-hero-title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: #fff;
}
.studio-hero-lead {
  margin-top: 22px;
  max-width: 760px;
  font-size: clamp(0.96rem, 1.55vw, 1.14rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
}
.studio-hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.studio-hero .studio-btn-solid {
  background: #fff;
  border-color: #fff;
  color: #101216;
}
.studio-hero .studio-btn-solid:hover {
  background: #eceef2;
  border-color: #eceef2;
}
.studio-hero .studio-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.studio-hero .studio-btn-ghost:hover {
  border-color: #fff;
}

.studio-hero-stats {
  margin-top: clamp(30px, 5vw, 55px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.18);
  max-width: 920px;
}
.studio-hero-stats article {
  background: rgba(14, 17, 24, 0.8);
  backdrop-filter: blur(7px);
  padding: 20px 18px;
}
.studio-hero-stats span {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1;
}
.studio-hero-stats p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Page Hero */
.studio-page-hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 70px;
  background: linear-gradient(145deg, #14171d 0%, #1f2430 50%, #111418 100%);
  color: #fff;
  overflow: hidden;
}
.studio-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.2;
  pointer-events: none;
}
.studio-page-hero > .container {
  position: relative;
  z-index: 2;
}
.studio-page-hero h1 {
  margin: 0;
  max-width: 900px;
  color: #fff;
  line-height: 1.08;
  font-size: clamp(2rem, 4.5vw, 4rem);
}
.studio-page-hero-lead {
  margin-top: 16px;
  max-width: 760px;
  color: rgba(238,241,247,0.8);
  line-height: 1.8;
}
.studio-page-hero-detail {
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(45px, 8vw, 95px);
}
.studio-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.studio-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(9,10,14,0.88), rgba(9,10,14,0.55) 45%, rgba(9,10,14,0.85));
}
.studio-page-hero-content {
  position: relative;
  z-index: 2;
}
.studio-chip-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.studio-chip-list span {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* Grids */
.studio-case-grid,
.studio-project-grid,
.studio-service-grid,
.studio-team-grid,
.studio-doc-grid,
.studio-metrics-grid,
.studio-trust-grid,
.studio-reference-grid,
.studio-media-grid,
.studio-image-grid,
.studio-news-grid,
.studio-info-grid {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}
.studio-case-grid,
.studio-project-grid,
.studio-service-grid,
.studio-team-grid,
.studio-doc-grid,
.studio-metrics-grid,
.studio-trust-grid,
.studio-reference-grid,
.studio-media-grid,
.studio-image-grid,
.studio-news-grid,
.studio-info-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.studio-case-card,
.studio-project-card,
.studio-service-card,
.studio-team-card,
.studio-doc-card,
.studio-metric-card,
.studio-trust-card,
.studio-reference-card,
.studio-media-card,
.studio-image-card,
.studio-news-card,
.studio-info-card,
.studio-editorial-block,
.studio-video-shell,
.studio-process-wrap,
.studio-contact-info,
.studio-contact-form {
  background: var(--studio-surface);
  border: 1px solid var(--studio-line);
  border-radius: 18px;
}

.studio-case-card,
.studio-project-card,
.studio-service-card,
.studio-metric-card,
.studio-trust-card,
.studio-reference-card,
.studio-media-card,
.studio-image-card,
.studio-news-card,
.studio-info-card,
.studio-doc-card {
  grid-column: span 4;
}

.studio-case-card,
.studio-project-card,
.studio-reference-card,
.studio-media-card,
.studio-image-card,
.studio-news-card,
.studio-doc-card,
.studio-service-card {
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.studio-case-card:hover,
.studio-project-card:hover,
.studio-reference-card:hover,
.studio-media-card:hover,
.studio-image-card:hover,
.studio-news-card:hover,
.studio-doc-card:hover,
.studio-service-card:hover {
  transform: translateY(-4px);
  border-color: #b8bdc9;
  box-shadow: 0 18px 44px rgba(12, 17, 28, 0.1);
}

.studio-case-image-wrap,
.studio-project-image-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.studio-case-image,
.studio-project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.studio-case-card:hover .studio-case-image,
.studio-project-card:hover .studio-project-image {
  transform: scale(1.06);
}

.studio-case-body,
.studio-project-body,
.studio-service-card,
.studio-reference-body,
.studio-media-card,
.studio-image-body,
.studio-news-body,
.studio-doc-card,
.studio-info-card,
.studio-editorial-block,
.studio-process-wrap,
.studio-video-shell,
.studio-contact-info,
.studio-contact-form,
.studio-metric-card,
.studio-trust-card {
  padding: clamp(18px, 2.2vw, 28px);
}

.studio-case-meta,
.studio-project-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7e848d;
}
.studio-case-body h3,
.studio-project-body h2,
.studio-service-card h3,
.studio-reference-body h3,
.studio-news-body h3,
.studio-doc-card h3,
.studio-about-body h2,
.studio-editorial-block h2,
.studio-contact-info h2,
.studio-contact-form h3,
.studio-vision-card h3 {
  margin: 10px 0;
  color: var(--studio-ink);
  line-height: 1.2;
}
.studio-case-body h3 a,
.studio-project-body h2 a {
  color: inherit;
}
.studio-case-body p,
.studio-project-body p,
.studio-service-card p,
.studio-reference-body p,
.studio-news-body p,
.studio-doc-card p,
.studio-contact-text,
.studio-about-body p,
.studio-editorial-block p,
.studio-rich-text,
.studio-trust-card p,
.studio-info-card p,
.studio-faq-item p,
.studio-media-card p {
  margin: 0;
  color: var(--studio-text-muted);
  line-height: 1.82;
  font-size: 0.93rem;
}

.studio-case-flow {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.studio-case-flow li {
  border: 1px solid var(--studio-line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f7580;
}
.studio-project-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.studio-project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #5f6570;
}
.studio-project-meta i {
  color: #3f4e63;
}

/* Process and metrics */
.studio-process-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 3vw, 38px);
  background: #242a36;
  border-color: rgba(255,255,255,0.08);
}
.studio-process-wrap h2,
.studio-process-wrap p,
.studio-process-wrap .studio-kicker {
  color: #fff;
}
.studio-process-wrap p { color: rgba(240,243,248,0.78); }
.studio-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.studio-process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 9px 12px;
}
.studio-process-list strong {
  color: #c4d8eb;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}
.studio-process-list span {
  color: rgba(243,245,251,0.8);
  font-size: 0.87rem;
}

.studio-metric-card h3 {
  margin: 0 0 14px;
  color: var(--studio-ink);
}
.studio-meter {
  height: 7px;
  border-radius: 999px;
  background: #d9dce2;
  overflow: hidden;
}
.studio-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #445871, #1e2a3c);
  transition: width 1.2s ease;
}
.studio-metric-card p {
  margin-top: 10px;
  font-size: 0.82rem;
}

.studio-trust-card {
  background: #242a36;
  border-color: rgba(255,255,255,0.11);
}
.studio-trust-card h3 {
  margin: 10px 0;
  color: #fff;
}
.studio-trust-card p {
  color: rgba(241,244,250,0.76);
}

/* About */
.studio-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.studio-about-media img {
  border-radius: 18px;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}
.studio-about-body h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
  color: var(--studio-ink);
}
.studio-inline-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.studio-inline-stats article {
  background: var(--studio-surface-soft);
  border-radius: 12px;
  border: 1px solid var(--studio-line);
  padding: 12px;
}
.studio-inline-stats span {
  display: block;
  font-size: 1.35rem;
  color: var(--studio-ink);
  font-family: var(--font-serif);
  line-height: 1;
}
.studio-inline-stats p {
  margin: 6px 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.studio-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.studio-vision-card {
  background: #242a36;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
}
.studio-vision-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  color: #b7cad9;
  margin-bottom: 10px;
}
.studio-vision-card h3 { color: #fff; }
.studio-vision-card p { color: rgba(239,242,248,0.76); }

/* Team */
.studio-team-card {
  grid-column: span 3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--studio-line);
  background: var(--studio-surface);
}
.studio-team-card img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}
.studio-team-card div {
  padding: 14px 14px 18px;
}
.studio-team-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--studio-ink);
}
.studio-team-card p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--studio-text-muted);
}

/* Info / FAQ / Docs */
.studio-faq-wrap {
  max-width: 900px;
}
.studio-faq-list {
  display: grid;
  gap: 10px;
}
.studio-faq-item {
  background: var(--studio-surface);
  border: 1px solid var(--studio-line);
  border-radius: 14px;
  padding: 14px 16px;
}
.studio-faq-item summary {
  cursor: pointer;
  color: var(--studio-ink);
  font-weight: 600;
}
.studio-faq-item p {
  margin-top: 10px;
}

.studio-doc-type {
  display: inline-flex;
  border: 1px solid var(--studio-line);
  background: var(--studio-surface-soft);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.studio-doc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.studio-doc-card .studio-btn {
  padding: 10px 14px;
  font-size: 0.68rem;
}

.studio-info-card h3 {
  margin: 0 0 12px;
}
.studio-info-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.studio-info-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.studio-info-card li span {
  font-size: 0.8rem;
}
.studio-info-card li strong {
  font-size: 0.88rem;
  color: var(--studio-ink);
}
.studio-mini-metric {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.studio-mini-metric span {
  font-size: 0.8rem;
}
.studio-iban {
  font-size: 0.87rem;
  color: var(--studio-ink);
  word-break: break-word;
}
.studio-muted {
  color: var(--studio-text-muted);
}

/* Detail page */
.studio-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(16px, 2.8vw, 30px);
}
.studio-detail-main,
.studio-detail-aside {
  display: grid;
  gap: 16px;
}
.studio-gallery-main-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--studio-line);
}
.studio-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.studio-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.studio-thumb-btn {
  border: 1px solid var(--studio-line);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  transition: var(--transition);
  background: var(--studio-surface);
}
.studio-thumb-btn img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.studio-thumb-btn.active,
.studio-thumb-btn:hover {
  border-color: #8391a6;
}

.studio-editorial-block .studio-rich-text {
  color: var(--studio-text-muted);
  line-height: 1.88;
}
.studio-video-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.studio-video-placeholder {
  border: 1px dashed #8d94a4;
  border-radius: 14px;
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px;
  color: #4f5562;
  background: #f8f8fb;
}
.studio-video-placeholder i {
  font-size: 2rem;
}

.studio-process-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.studio-process-step {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  background: #242a36;
}
.studio-process-step span {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9cb1c1;
  margin-bottom: 8px;
}
.studio-process-step h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  color: #fff;
}
.studio-process-step p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(239,242,248,0.73);
  line-height: 1.7;
}

/* Filters */
.studio-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.studio-filter-pill {
  border: 1px solid var(--studio-line);
  border-radius: 999px;
  padding: 8px 14px;
  color: #4f5560;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--studio-surface);
  transition: var(--transition);
}
.studio-filter-pill:hover {
  border-color: #8f99a8;
  color: var(--studio-ink);
}
.studio-filter-pill.active {
  background: var(--studio-ink);
  border-color: var(--studio-ink);
  color: #fff;
}

/* Contact */
.studio-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.8vw, 30px);
}
.studio-contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.studio-contact-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
}
.studio-contact-list i {
  color: var(--studio-accent);
  font-size: 0.95rem;
  margin-top: 4px;
}
.studio-contact-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.studio-contact-list p,
.studio-contact-list a {
  margin: 4px 0 0;
  color: var(--studio-text);
}

.studio-contact-social {
  margin-top: 24px;
  display: flex;
  gap: 8px;
}
.studio-contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--studio-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4f5560;
  transition: var(--transition);
}
.studio-contact-social a:hover {
  border-color: #8b95a6;
  color: var(--studio-ink);
}

.studio-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.studio-form-grid .full {
  grid-column: 1 / -1;
}
.studio-contact-form .form-control {
  background: #fff;
  border: 1px solid var(--studio-line);
  color: var(--studio-text);
}
.studio-contact-form .form-control:focus {
  border-color: #8f99a8;
  box-shadow: none;
}
.studio-contact-form .form-submit {
  width: 100%;
  background: var(--studio-ink);
  border-color: var(--studio-ink);
}
.studio-contact-form-modern {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e7ebf1;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(17, 22, 29, 0.08);
}
.studio-contact-form-modern .studio-form-intro {
  margin-bottom: 20px;
}
.studio-contact-form-modern h3 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  color: #121722;
}
.studio-contact-form-modern .studio-contact-text {
  margin: 0;
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.7;
}
.studio-contact-form-modern .form-label {
  color: #334155;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.studio-contact-form-modern .studio-form-grid {
  gap: 16px 18px;
}
.studio-contact-form-modern .form-control {
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dbe2ea;
  background: #ffffff;
  color: #17202b;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.studio-contact-form-modern textarea.form-control {
  min-height: 150px;
}
.studio-contact-form-modern .form-control::placeholder {
  color: #98a2b3;
  opacity: 1;
}
.studio-contact-form-modern .form-control:focus {
  border-color: #7c96ca;
  box-shadow: 0 0 0 4px rgba(66, 94, 159, 0.12);
  background: #fff;
}
.studio-contact-form-modern select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364758b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 42px;
}
.studio-contact-form-modern .form-submit {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #29457a 0%, #425e9f 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(41, 69, 122, 0.22);
}
.studio-contact-form-modern .form-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #335492 0%, #5270b7 100%);
}
.studio-contact-form-modern .form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}
.studio-contact-form-modern #formMessage {
  margin-bottom: 16px;
}
.studio-form-note {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: #667085;
}
.career-application {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfa 100%);
  border: 1px solid #e6e8ee;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(17, 22, 29, 0.08);
}
.career-application-head {
  text-align: center;
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e9edf3;
}
.career-application-head h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #29457a;
}
.career-application-kicker {
  margin: 14px 0 0;
  font-size: 0.94rem;
  color: #6d7482;
}
.career-form-section {
  padding: 28px;
  border: 1px solid #eceff4;
  border-radius: 22px;
  background: #fbfcfe;
  margin-bottom: 18px;
}
.career-form-section:first-of-type { padding-top: 28px; }
.career-form-section-last {
  margin-bottom: 0;
}
.career-form-section h3 {
  margin: 0 0 24px;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #141922;
}
.career-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}
.career-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-field.full,
.career-consent.full,
.career-submit-row {
  grid-column: 1 / -1;
}
.career-field label,
.career-consent span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #313844;
}
.career-date-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.career-form .form-control {
  min-height: 52px;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  border: 1px solid #dbe1ea !important;
  background: #ffffff !important;
  color: #1d2430 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset !important;
  font-size: 0.95rem !important;
  line-height: 1.35;
}
.career-form textarea.form-control {
  min-height: 130px;
}
.career-form .form-control:focus {
  border-color: #7d94c6 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(66, 94, 159, 0.12) !important;
  outline: none;
}
.career-form .form-control::placeholder {
  color: #9aa3b2 !important;
  opacity: 1;
}
.career-form select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236f7b90' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px !important;
  padding-right: 42px !important;
}
.career-form input[type="file"].form-control {
  padding: 12px 14px !important;
  background: #f8fafc !important;
}
.career-form input[type="date"].form-control {
  color-scheme: light;
}
.career-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  margin-top: 6px;
}
.career-consent input {
  width: 16px;
  height: 16px;
  accent-color: #334c87;
  flex: 0 0 auto;
}
.career-submit-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.career-submit-btn {
  width: auto;
  min-width: 170px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #29457a 0%, #425e9f 100%);
  border-color: #29457a;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: #fff;
  box-shadow: 0 14px 30px rgba(41, 69, 122, 0.22);
}
.career-submit-btn:hover {
  background: linear-gradient(135deg, #365595 0%, #5270b7 100%);
  border-color: #365595;
  transform: translateY(-1px);
}
.studio-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--studio-line);
}
.studio-map-wrap iframe {
  border: 0;
  width: 100%;
  height: 430px;
  display: block;
}

/* Media pages */
.studio-media-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--studio-line);
  background: #0d1016;
}
.studio-media-player video,
.studio-media-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.studio-media-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #a0a7b5;
  padding: 18px;
  text-align: center;
}

.studio-image-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.studio-news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.studio-news-date {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #758196;
}
.studio-news-text {
  margin-top: 10px;
  color: var(--studio-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.studio-reference-logo {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  border: 1px solid var(--studio-line);
  background: #f1f3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 22px 22px 0;
}
.studio-reference-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.studio-reference-logo span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #3f5064;
}
.studio-reference-body {
  padding-top: 14px;
}
.studio-reference-tag {
  margin: 0 0 8px;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--studio-line);
  background: #f1f3f8;
  font-size: 0.68rem;
  padding: 4px 10px;
}

/* CTA */
.studio-cta {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0;
  background: linear-gradient(145deg, #151922, #252c3b);
  overflow: hidden;
}
.studio-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(130,150,180,0.23), transparent 45%), radial-gradient(circle at 10% 100%, rgba(120,136,168,0.15), transparent 45%);
  pointer-events: none;
}
.studio-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.studio-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}
.studio-cta .studio-kicker {
  color: #9cb1c1;
  justify-content: center;
}
.studio-cta .studio-kicker::before {
  background: currentColor;
}
.studio-cta .studio-hero-actions {
  justify-content: center;
}
.studio-cta .studio-btn-solid {
  background: #fff;
  border-color: #fff;
  color: #11131a;
}
.studio-cta .studio-btn-solid:hover {
  background: #e9edf4;
  border-color: #e9edf4;
}
.studio-cta .studio-btn-ghost {
  border-color: rgba(255,255,255,0.38);
  color: #fff;
}

/* Footer tune */
.site-footer {
  background: #0f1319;
}
.footer-heading {
  color: #e9edf5;
}
.footer-copy,
.footer-credit {
  color: rgba(220,227,239,0.52);
}

/* Theme adaptations */
body.theme-minimal .studio-section-light {
  background: #fff;
}
body.theme-minimal .studio-case-card,
body.theme-minimal .studio-project-card,
body.theme-minimal .studio-service-card,
body.theme-minimal .studio-doc-card,
body.theme-minimal .studio-team-card,
body.theme-minimal .studio-info-card,
body.theme-minimal .studio-contact-info,
body.theme-minimal .studio-contact-form,
body.theme-minimal .studio-reference-card,
body.theme-minimal .studio-media-card,
body.theme-minimal .studio-image-card,
body.theme-minimal .studio-news-card {
  border-color: #dde1e8;
}
body.theme-dark .studio-btn-solid,
body.theme-dark .studio-filter-pill.active {
  background: #0b1725;
  border-color: #0b1725;
}
body.theme-nature .studio-meter span,
body.theme-nature .studio-btn-solid,
body.theme-nature .studio-filter-pill.active {
  background: #36583f;
  border-color: #36583f;
}
body.theme-brutalist .studio-case-card,
body.theme-brutalist .studio-project-card,
body.theme-brutalist .studio-service-card,
body.theme-brutalist .studio-doc-card,
body.theme-brutalist .studio-reference-card,
body.theme-brutalist .studio-info-card {
  border-width: 2px;
  border-radius: 0;
}
body.theme-editorial .studio-page-hero h1,
body.theme-editorial .studio-hero-title,
body.theme-editorial .studio-section-head h2 {
  letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1200px) {
  .studio-case-card,
  .studio-project-card,
  .studio-service-card,
  .studio-metric-card,
  .studio-trust-card,
  .studio-reference-card,
  .studio-media-card,
  .studio-image-card,
  .studio-news-card,
  .studio-doc-card {
    grid-column: span 6;
  }

  .studio-team-card {
    grid-column: span 4;
  }

  .studio-process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .studio-about-intro,
  .studio-contact-grid,
  .studio-video-shell,
  .studio-detail-grid,
  .studio-process-wrap {
    grid-template-columns: 1fr;
  }

  .studio-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-inline-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .studio-page-hero {
    padding: calc(var(--header-h) + 50px) 0 56px;
  }

  .studio-case-card,
  .studio-project-card,
  .studio-service-card,
  .studio-team-card,
  .studio-doc-card,
  .studio-metric-card,
  .studio-trust-card,
  .studio-reference-card,
  .studio-media-card,
  .studio-image-card,
  .studio-news-card,
  .studio-info-card {
    grid-column: span 12;
  }

  .studio-hero-actions {
    width: 100%;
  }
  .studio-btn {
    width: 100%;
  }

  .studio-form-grid {
    grid-template-columns: 1fr;
  }
  .career-application {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .career-form-grid,
  .career-date-grid {
    grid-template-columns: 1fr;
  }
  .career-form-section h3 {
    font-size: 1.9rem;
  }

  .studio-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .studio-process-track {
    grid-template-columns: 1fr;
  }

  .studio-about-media img {
    min-height: 300px;
  }
}
