/* ═══════════════════════════════════════════════════════════
   PORTFOLIO.CSS — Dark Luxury Studio
   Renk: Siyah + Kırık Beyaz + Altın
   Font: Playfair Display + DM Sans
═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --black:       #050505;
  --black-soft:  #0e0e0e;
  --black-card:  #111111;
  --black-border:#1e1e1e;
  --white:       #f5f0e8;
  --white-dim:   rgba(245,240,232,0.55);
  --white-faint: rgba(245,240,232,0.08);
  --gold:        #c9a84c;
  --gold-light:  #e2c070;
  --gold-dark:   #9a7430;
  --gold-glow:   rgba(201,168,76,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --container: 1200px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-py: clamp(5rem, 10vw, 9rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration: 0.7s;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;          /* custom cursor aktif */
}

img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; }

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ─── SELECTION ──────────────────────────────────────── */
::selection { background: var(--gold); color: var(--black); }

/* ══════════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
  opacity: 0.6;
}
.cursor.hover  { width: 18px; height: 18px; }
.cursor-follower.hover { width: 60px; height: 60px; opacity: 0.25; }

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ══════════════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 9000;
  transition: opacity 0.6s var(--ease-in-out), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader__logo {
  display: flex;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--white);
}
.loader__letter {
  opacity: 0;
  transform: translateY(30px);
  display: inline-block;
  animation: letterIn 0.5s var(--ease-out) forwards;
}
.loader__letter:nth-child(1) { animation-delay: 0.05s; }
.loader__letter:nth-child(2) { animation-delay: 0.12s; }
.loader__letter:nth-child(3) { animation-delay: 0.19s; }
.loader__letter:nth-child(4) { animation-delay: 0.26s; }
.loader__letter:nth-child(5) { animation-delay: 0.33s; }
.loader__letter:nth-child(6) { animation-delay: 0.40s; }

@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}

.loader__bar {
  width: min(260px, 60vw);
  height: 1px;
  background: var(--black-border);
  overflow: hidden;
}
.loader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 1.2s var(--ease-out);
}

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  margin-top: 1.25rem;
  color: var(--white-dim);
  max-width: 52ch;
  font-size: 1.05rem;
}
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header--light .section-title,
.section-header--light .section-eyebrow { color: var(--white); }
.section-header--light .section-title em { color: var(--gold); }

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 2em;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 0.06; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  background-size: 200% 200%;
  animation: goldShimmer 4s ease infinite;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); }

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold-glow); }

.btn--ghost {
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--white); }

.btn--lg { padding: 1em 2.5em; font-size: 0.85rem; }

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── REVEAL ANIMATION ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.25rem, 5vw, 3rem);
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--black-border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  position: relative;
}
.nav__logo::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo:hover::after { transform: scaleX(1); }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.25s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { padding: 0.55em 1.4em; font-size: 0.72rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}
.nav__burger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 700;
  opacity: 0; visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.25s;
  position: relative;
}
.mobile-menu__link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu__link:hover::after { transform: scaleX(1); }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

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

.hero__bg {
  position: absolute; inset: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.25) 0%,
    rgba(5,5,5,0.55) 50%,
    rgba(5,5,5,0.90) 100%
  );
}

/* Fallback: video yüklenemezse güzel bir gradient göster */
.hero__bg:not(:has(video[src])) {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1209 50%, #0a0a0a 100%);
}

.hero__content {
  position: relative; z-index: 2;
  padding-top: 5rem;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: heroIn 0.8s 1.6s var(--ease-out) forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: heroIn 0.9s 1.8s var(--ease-out) forwards;
}
.hero__title em {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-dim);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: heroIn 0.8s 2.0s var(--ease-out) forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: heroIn 0.8s 2.2s var(--ease-out) forwards;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2.6s ease forwards;
}
.hero__scroll span {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white-dim);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.4); opacity: 1; }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
.stats {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  background: var(--black-soft);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
@media (max-width: 640px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

.stats__item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  border-right: 1px solid var(--black-border);
}
.stats__item:last-child { border-right: none; }
@media (max-width: 640px) {
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item:nth-child(3) { border-right: 1px solid var(--black-border); }
  .stats__item { border-bottom: 1px solid var(--black-border); }
}

.stats__number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stats__plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  vertical-align: super;
}
.stats__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services {
  padding: var(--section-py) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--black-border);
}
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }

.services__card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--black-card);
  border-right: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.services__card::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  transition: height 0.5s var(--ease-out);
}
.services__card:hover { background: #141414; }
.services__card:hover::before { height: 100%; }

.services__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.services__number {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white-faint);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.services__card:hover .services__number { color: rgba(201,168,76,0.08); }

.services__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.services__desc {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.services__tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.services__tags span {
  padding: 0.3em 0.8em;
  border: 1px solid var(--black-border);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: border-color 0.3s, color 0.3s;
}
.services__card:hover .services__tags span {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   DRONE
══════════════════════════════════════════════════════ */
.drone {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.drone__sticky-bg {
  position: absolute; inset: 0; z-index: 0;
}
.drone__bg-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.4);
}
.drone__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    var(--black) 0%,
    rgba(5,5,5,0.5) 40%,
    rgba(5,5,5,0.5) 60%,
    var(--black) 100%
  );
}
.drone .container { position: relative; z-index: 1; }

.drone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
@media (max-width: 640px) { .drone__grid { grid-template-columns: 1fr; } }

.drone__item--featured {
  grid-column: 1 / -1;
}

/* Video embed (thumbnail + play) */
.video-embed {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: none;
  background: var(--black-card);
  border: 1px solid var(--black-border);
}
.video-embed__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
  filter: brightness(0.65);
}
.video-embed:hover .video-embed__thumb {
  transform: scale(1.04);
  filter: brightness(0.45);
}
.video-embed__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.video-embed:hover .video-embed__play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
}
.video-embed__play svg { width: 24px; margin-left: 3px; }

.video-embed__label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: rgba(5,5,5,0.7);
  padding: 0.3em 0.7em;
  border-radius: 2px;
}

/* Video Modal */
.video-modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease-out);
}
.video-modal.open { opacity: 1; visibility: visible; }

.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}
.video-modal__content {
  position: relative; z-index: 1;
  width: min(900px, 95vw);
  aspect-ratio: 16/9;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.4s var(--ease-out);
}
.video-modal.open .video-modal__content { transform: scale(1); }

.video-modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(5,5,5,0.8);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.video-modal__close:hover { background: var(--gold); color: var(--black); }

.video-modal__frame { width: 100%; height: 100%; }
.video-modal__frame iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════════════
   SOCIAL MEDIA
══════════════════════════════════════════════════════ */
.social {
  padding: var(--section-py) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.social__accounts {
  display: flex; flex-direction: column; gap: 4rem;
}

.social__account {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  overflow: hidden;
}
.social__account-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
}
.social__account-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--black-border);
  flex-shrink: 0;
}
.social__account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.social__account-name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.social__account-niche {
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-top: 0.15rem;
}
.social__account-stats {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.social__feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 640px) { .social__feed { grid-template-columns: repeat(3, 1fr); } }

.social__post {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--black-border);
}
.social__post img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.social__post-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.65);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.social__post:hover img { transform: scale(1.08); }
.social__post:hover .social__post-overlay { opacity: 1; }

/* ══════════════════════════════════════════════════════
   WEBSITES
══════════════════════════════════════════════════════ */
.websites {
  padding: var(--section-py) 0;
}
.websites__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) { .websites__grid { grid-template-columns: 1fr; } }

.websites__card--wide { grid-column: 1 / -1; }

.websites__card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.websites__card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.websites__preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--black-border);
}
.websites__preview img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.websites__card:hover .websites__preview img { transform: scale(1.04); }

.websites__preview-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.websites__card:hover .websites__preview-overlay { opacity: 1; }
.websites__preview-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5em 1.2em;
  border-radius: 2px;
  text-transform: uppercase;
}

.websites__info { padding: 1.5rem; }
.websites__category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.websites__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.4rem 0 0.5rem;
}
.websites__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-bottom: 1rem;
}
.websites__stack {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.websites__stack span {
  padding: 0.25em 0.7em;
  background: var(--white-faint);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ══════════════════════════════════════════════════════
   GRAPHICS
══════════════════════════════════════════════════════ */
.graphics {
  padding: var(--section-py) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.graphics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .graphics__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 480px) {
  .graphics__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}

.graphics__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--black-border);
  cursor: none;
}
.graphics__item--tall { grid-row: span 2; }
.graphics__item--wide { grid-column: span 2; }

.graphics__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
  filter: brightness(0.85);
}
.graphics__item:hover img {
  transform: scale(1.07);
  filter: brightness(0.55);
}
.graphics__item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}
.graphics__item:hover .graphics__item-info { transform: translateY(0); }
.graphics__item-info span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════ */
.process {
  padding: var(--section-py) 0;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
@media (max-width: 768px) {
  .process__steps { flex-direction: column; }
}

.process__step {
  flex: 1;
  padding: 2rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 2px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.process__step:hover { border-color: var(--gold-dark); transform: translateY(-6px); }

.process__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
  transition: opacity 0.4s;
}
.process__step:hover .process__step-num { opacity: 0.9; }
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.process__step-content p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.75;
}

.process__connector {
  width: 2rem; height: 1px;
  background: var(--gold-dark);
  margin-top: 3.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .process__connector { width: 1px; height: 2rem; margin: 0 2rem; }
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonials__card {
  padding: 2rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.testimonials__card::before {
  content: '"';
  position: absolute; top: -0.5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: var(--white-faint);
  line-height: 1;
  pointer-events: none;
}
.testimonials__card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }

.testimonials__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonials__text {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonials__author {
  display: flex; align-items: center; gap: 0.75rem;
}
.testimonials__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-dark);
  background: var(--black-border);
  flex-shrink: 0;
}
.testimonials__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonials__name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonials__role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.contact__bg {
  position: absolute; inset: 0; z-index: 0;
}
.contact__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.3); }
.contact__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.96), rgba(5,5,5,0.82));
}
.contact .container { position: relative; z-index: 1; }

.contact__content { max-width: 640px; }
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin: 1rem 0 2.5rem;
}
.contact__title em {
  font-style: italic;
  color: var(--gold);
}

.contact__channels {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact__channel {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white-faint);
  border: 1px solid var(--black-border);
  border-radius: 3px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.contact__channel:hover {
  border-color: var(--gold-dark);
  background: var(--gold-glow);
  transform: translateX(6px);
}
.contact__channel-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  color: var(--gold);
}
.contact__channel-icon svg { width: 100%; height: 100%; }
.contact__channel-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.2rem;
}
.contact__channel-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--black-border);
  background: var(--black);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}
.footer__links a {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 700;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}

/* ══════════════════════════════════════════════════════
   GOLD LINE DECORATORS
══════════════════════════════════════════════════════ */
.section-header::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .process__steps { gap: 0; }
  .footer__inner { flex-direction: column; text-align: center; }
}

/* Görseller yüklenmeden önce iskelet */
img[loading="lazy"] {
  background: linear-gradient(90deg, var(--black-card) 25%, var(--black-border) 50%, var(--black-card) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s ease infinite;
}
img[loading="lazy"].loaded {
  background: none; animation: none;
}
@keyframes skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
