/* ═══════════════════════════════════════════════════════════════════════════
   Core Mimari — Stil Dosyası
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Değişkenleri ─────────────────────────────────────────────────────── */
:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #0D0D0D;
  --gold: #C9A84C;
  --gold-light: #D4B870;
  --gold-dark: #A8833A;
  --text: #F0EDE8;
  --muted: #888880;
  --border: #1E1E1E;
  --green: #25D366;
}

/* ─── Sıfırlama & Temel ────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

/* ─── Özel Scrollbar ───────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ─── Metin Seçimi ─────────────────────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ─── Tipografi ────────────────────────────────────────────────────────────── */
.font-heading {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-mono {
  font-family: 'Space Mono', 'Courier New', monospace;
}

.display-xl {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
}

.display-lg {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.display-md {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

/* ─── Renk Yardımcıları ────────────────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

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

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

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ───────────────────────────────────────────────────────────────── */
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

.section-padding {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

/* ─── Yardımcı Sınıflar ────────────────────────────────────────────────────── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.5rem;
}

.h-px-gold {
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

/* ─── Butonlar ─────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-gold:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 6px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* ─── Kart ─────────────────────────────────────────────────────────────────── */
.card-dark {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card-dark:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

/* ─── Input ────────────────────────────────────────────────────────────────── */
.input-dark {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.875rem 1.25rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.input-dark::placeholder {
  color: #555550;
}

.input-dark:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.input-dark option {
  background: var(--surface);
  color: var(--text);
}

/* ─── Özel İmleç (Custom Cursor) ──────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

body.cursor-hover .cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--gold-light);
}

body.cursor-hover .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(201, 168, 76, 0.8);
}

/* ─── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-color: rgba(201, 168, 76, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-mark {
  position: relative;
  width: 32px;
  height: 32px;
  margin-right: 4px;
  flex-shrink: 0;
}

.nav-logo-mark .box-outer {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.5s;
}

.nav-logo-mark .box-inner {
  position: absolute;
  inset: 4px;
  background: var(--gold);
  opacity: 0.2;
  transform: rotate(45deg);
  transition: transform 0.5s;
}

.nav-logo:hover .box-outer,
.nav-logo:hover .box-inner {
  transform: rotate(135deg);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

.nav-logo-text .white {
  color: var(--text);
  margin-left: 4px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  position: relative;
  z-index: 60;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.2s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobil Menü Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  padding: 12px;
  transition: color 0.2s;
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s, color 0.2s;
}

.mobile-menu.open .mobile-nav-link:nth-child(1) {
  transition-delay: 0.15s;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.open .mobile-nav-link:nth-child(2) {
  transition-delay: 0.23s;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.open .mobile-nav-link:nth-child(3) {
  transition-delay: 0.31s;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.open .mobile-nav-link:nth-child(4) {
  transition-delay: 0.39s;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu-cta {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-contact {
  transition-delay: 0.65s;
  opacity: 1;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-menu-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-menu-contact {
  margin-top: 3rem;
  opacity: 0;
  transition: opacity 0.4s;
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

/* ─── Scroll Animasyonları ─────────────────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim.from-left {
  transform: translateX(-40px);
}

.anim.from-right {
  transform: translateX(40px);
}

.anim.scale-in {
  transform: scale(0.88);
  opacity: 0;
}

/* Sadece bu class kullanıldığında clip-path devreye girer */
.anim.clip-in {
  clip-path: inset(0 0 100% 0);
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* clip-in için ayrı visible state */
.anim.clip-in.visible {
  clip-path: inset(0 0 0% 0);
}

.anim-delay-1 {
  transition-delay: 0.08s;
}

.anim-delay-2 {
  transition-delay: 0.18s;
}

.anim-delay-3 {
  transition-delay: 0.28s;
}

.anim-delay-4 {
  transition-delay: 0.38s;
}

.anim-delay-5 {
  transition-delay: 0.48s;
}

.anim-delay-6 {
  transition-delay: 0.58s;
}

.anim-delay-7 {
  transition-delay: 0.68s;
}

/* ─── CSS Animasyon Keyframe'leri ──────────────────────────────────────────── */
@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes float-strong {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-16px) scale(1.02);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
  }
}

@keyframes blink-corner {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.4)
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-rev {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes scroll-pulse {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0
  }

  50% {
    transform: scaleY(1);
    opacity: 1
  }
}

@keyframes spin-btn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0)
  }
}

@keyframes shimmer-line {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(200%)
  }
}

@keyframes geo-glow-pulse {

  0%,
  100% {
    opacity: 0.08;
    transform: scale(1)
  }

  50% {
    opacity: 0.18;
    transform: scale(1.08)
  }
}

@keyframes orbit-particle {
  from {
    transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg);
  }
}

@keyframes count-up-flash {
  0% {
    color: var(--gold)
  }

  100% {
    color: inherit
  }
}

@keyframes line-grow {
  from {
    width: 0;
    opacity: 0
  }

  to {
    width: var(--target-w, 100%);
    opacity: 1
  }
}

@keyframes card-shimmer-move {
  0% {
    transform: translateX(-100%) rotate(30deg)
  }

  100% {
    transform: translateX(300%) rotate(30deg)
  }
}

@keyframes border-run {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  opacity: 0.05;
  background: radial-gradient(circle at top right, var(--gold), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  animation: fade-in 0.7s ease 0.2s both;
}

.hero-label-line {
  height: 1px;
  width: 48px;
  background: rgba(201, 168, 76, 0.4);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fade-in 0.7s ease 0.34s both;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fade-in 0.7s ease 0.46s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fade-in 0.7s ease 0.58s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fade-in 0.7s ease 0.7s both;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Geometrik Şekil */
.geo-shape-wrap {
  display: none;
}

@media (min-width: 768px) {
  .geo-shape-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fade-in 1s ease 0.5s both;
  }
}

.geo-shape {
  position: relative;
  width: 320px;
  height: 320px;
}

@media (min-width: 1024px) {
  .geo-shape {
    width: 420px;
    height: 420px;
  }
}

.geo-outer {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  animation: spin-slow 20s linear infinite;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.04) inset;
}

.geo-mid {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 4px;
  animation: spin-reverse 12s linear infinite;
}

.geo-inner {
  position: absolute;
  inset: 64px;
  border: 1.5px solid rgba(201, 168, 76, 0.7);
  border-radius: 4px;
  animation: spin-slow 7s linear infinite;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.06) inset;
}

.geo-dot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-dot 3s ease-in-out infinite;
}

.geo-dot-inner {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

.geo-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.8);
}

.geo-corner.tl {
  top: 30px;
  left: 30px;
  animation: blink-corner 3s infinite 0s;
}

.geo-corner.tr {
  top: 30px;
  right: 30px;
  animation: blink-corner 3s infinite 0.75s;
}

.geo-corner.bl {
  bottom: 30px;
  left: 30px;
  animation: blink-corner 3s infinite 1.5s;
}

.geo-corner.br {
  bottom: 30px;
  right: 30px;
  animation: blink-corner 3s infinite 2.25s;
}

.geo-label {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  animation: float 5s ease-in-out infinite 1s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

/* Orbit particles (JS ile oluşturulur) */
.geo-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin: -2.5px 0 0 -2.5px;
  animation: orbit-particle var(--orbit-duration, 8s) linear infinite;
  opacity: 0.7;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.8);
}

.geo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.12;
  background: radial-gradient(circle at center, var(--gold) 0%, transparent 70%);
  filter: blur(50px);
  animation: geo-glow-pulse 4s ease-in-out infinite;
}

/* Scroll göstergesi */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), transparent);
  animation: scroll-pulse 1.5s ease infinite;
}

/* ─── Marquee ──────────────────────────────────────────────────────────────── */
.marquee-section {
  position: relative;
  padding: 3rem 0;
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-fade-l {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 96px;
  background: linear-gradient(to right, #0A0A0A, transparent);
  z-index: 10;
}

.marquee-fade-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 96px;
  background: linear-gradient(to left, #0A0A0A, transparent);
  z-index: 10;
}

.marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.marquee-row {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track.forward {
  animation: marquee 35s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-rev 45s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
}

.marquee-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(136, 136, 128, 0.7);
  transition: color 0.3s;
}

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

.marquee-sep {
  margin: 0 24px;
  color: rgba(201, 168, 76, 0.4);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
}

/* ─── Hizmetler Grid ───────────────────────────────────────────────────────── */
.services-section {
  background: var(--bg);
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.section-label-line {
  height: 1px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.08s ease, border-color 0.3s, box-shadow 0.3s;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(201, 168, 76, 0.06), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::after {
  opacity: 1;
  animation: card-shimmer-move 0.7s ease forwards;
}

.service-card-shimmer {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.5s;
}

.service-card:hover .service-card-shimmer {
  opacity: 1;
}

/* Magnetic glow track */
.service-card-magnetic-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.service-card:hover .service-card-magnetic-glow {
  opacity: 1;
}

.service-card-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.5s;
}

.service-card:hover .service-card-bottom-line {
  width: 100%;
}

.service-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(201, 168, 76, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  transition: border-color 0.3s;
}

.service-card:hover .service-icon-wrap {
  border-color: rgba(201, 168, 76, 0.2);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

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

.service-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 12px;
}

/* ─── Stats ────────────────────────────────────────────────────────────────── */
.stats-section {
  position: relative;
  background: #0A0A0A;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle at 50% 50%, var(--gold) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  position: relative;
  text-align: center;
}

.stat-divider {
  display: none;
}

@media (min-width: 1024px) {
  .stat-item:not(:first-child) .stat-divider {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.2), transparent);
  }
}

.stat-mono {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.stat-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

.stat-accent {
  margin: 24px auto 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s;
}

.stat-item:hover .stat-accent {
  width: 48px;
}

/* ─── Süreç ────────────────────────────────────────────────────────────────── */
.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.process-sticky {
  position: relative;
}

@media (min-width: 1024px) {
  .process-sticky {
    position: sticky;
    top: 8rem;
  }
}

.process-deco {
  display: none;
  margin-top: 2rem;
  width: 192px;
  height: 192px;
  position: relative;
}

@media (min-width: 1024px) {
  .process-deco {
    display: block;
  }
}

.process-deco-outer {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transform: rotate(45deg);
  border-radius: 4px;
}

.process-deco-mid {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transform: rotate(45deg);
  border-radius: 4px;
}

.process-deco-inner {
  position: absolute;
  inset: 48px;
  background: rgba(201, 168, 76, 0.05);
  transform: rotate(45deg);
  border-radius: 4px;
}

.process-timeline {
  position: relative;
}

.process-line {
  position: absolute;
  left: 22px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-circle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}

.step-body {
  flex: 1;
  padding-top: 8px;
}

.step-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: rgba(136, 136, 128, 0.6);
  transition: border-color 0.2s, color 0.2s;
}

.step-tag:hover {
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

/* ─── Portfolio ────────────────────────────────────────────────────────────── */
.portfolio-section {
  background: #0A0A0A;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .portfolio-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--text);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 4/3;
  transition: all 0.4s;
}

.project-card.hidden {
  display: none;
}

.project-bg-deco {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.project-circle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid currentColor;
}

.project-diamond {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 64px;
  height: 64px;
  transform: rotate(45deg);
  border: 1px solid currentColor;
}

.project-result-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}

.project-category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.project-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.project-card:hover .project-title {
  color: #fff;
}

.project-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(136, 136, 128, 0.5);
}

.project-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-hover-overlay {
  opacity: 1;
}

.project-hover-overlay .btn-gold {
  transform: scale(0.95);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.project-card:hover .project-hover-overlay .btn-gold {
  transform: scale(1);
  opacity: 1;
}

/* ─── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg);
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  padding: 3rem;
  overflow: hidden;
  min-height: 280px;
}

.quote-mark {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.05);
  user-select: none;
  pointer-events: none;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.testimonial-result {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240, 237, 232, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.6);
  margin-top: 2px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  transition: all 0.3s;
  width: 8px;
}

.t-dot.active {
  width: 32px;
  background: var(--gold);
}

.testimonial-arrows {
  display: flex;
  gap: 12px;
}

.t-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.t-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Testimonial Slide animasyonu */
.testimonial-slide {
  display: none;
  opacity: 0;
  transform: translateX(0);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

/* ─── İletişim Bölümü ──────────────────────────────────────────────────────── */
.contact-section {
  background: #0A0A0A;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(201, 168, 76, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  flex-shrink: 0;
  width: 128px;
  margin-top: 2px;
}

.contact-info-val {
  color: var(--muted);
  font-size: 0.875rem;
}

.contact-info-val a {
  transition: color 0.2s;
}

.contact-info-val a:hover {
  color: var(--gold);
}

.form-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  margin-bottom: 1rem;
}

.field-error {
  color: #f87171;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}

.form-general-error {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.success-state {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-hint {
  font-size: 0.75rem;
  color: rgba(136, 136, 128, 0.5);
  text-align: center;
  margin-top: 8px;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(8, 8, 8, 0.4);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin-btn 0.8s linear infinite;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 1.5rem 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--muted);
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.footer-col h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-link-arrow {
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
  flex-shrink: 0;
}

.footer-link:hover {
  color: var(--text);
}

.footer-link:hover .footer-link-arrow {
  width: 16px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1rem;
}

.footer-contact-item a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-contact-item address {
  color: var(--muted);
  font-size: 0.875rem;
  font-style: normal;
}

.footer-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.75rem;
  transition: color 0.2s;
}

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

.footer-legal span {
  color: var(--border);
}

/* ─── Sayfa Başlık (İç sayfalar) ───────────────────────────────────────────── */
.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
}

.page-header-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ─── Hizmetler Sayfası ────────────────────────────────────────────────────── */
.service-item {
  padding: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .service-item {
    padding: 3rem 4rem;
  }
}

.service-item-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-item-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.service-item-num {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.4;
}

.service-item-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(136, 136, 128, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.service-item-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

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

.service-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 12px;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}

/* ─── Hakkımızda Sayfası ────────────────────────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-stat-card {
  padding: 2rem;
  text-align: center;
}

.about-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-stat-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: rgba(136, 136, 128, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.value-card {
  padding: 2rem;
}

.value-num {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
  transition: color 0.3s;
}

.value-card:hover .value-num {
  color: rgba(201, 168, 76, 0.4);
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.value-card:hover .value-title {
  color: var(--gold);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  padding: 1.5rem;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg);
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
}

.team-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(201, 168, 76, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-specialty {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ─── İletişim Sayfası ─────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}

details.faq-item[open] {
  border-color: rgba(201, 168, 76, 0.3);
}

details.faq-item summary {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  transition: color 0.2s;
}

details.faq-item summary:hover {
  color: var(--gold);
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  color: rgba(201, 168, 76, 0.6);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

details.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  padding-top: 1rem;
}

/* ─── CTA Section ──────────────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── Ortak Section Başlık ─────────────────────────────────────────────────── */
.section-center-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-center-header .section-label-row {
  justify-content: center;
}

/* ─── Açılış Duyurusu (Opening Alert) ───────────────────────────────────────── */
.opening-alert {
  position: fixed;
  top: 0; /* Move to top to be more prominent and avoid conflict with bottom elements */
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  display: none; /* Hidden by default, shown by JS */
  animation: slideDown 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Adjust navbar when alert is active */
body.alert-active .navbar {
  top: 60px; 
}
@media (max-width: 768px) {
  body.alert-active .navbar {
    top: 54px; /* Slimmer banner offset */
  }
  body.alert-active .mobile-menu {
    padding-top: 54px;
  }
}

.opening-alert-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.opening-alert-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.opening-alert-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--gold);
  font-size: 1.75rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10001;
  transition: all 0.3s ease;
  line-height: 1;
}

.opening-alert-close:hover {
  color: #fff;
  transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 768px) {
  .opening-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 54px;
    background: rgba(8, 8, 8, 0.99);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0 35px 0 12px;
    z-index: 10002;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    animation: slideDownToast 0.4s ease-out;
  }

  @keyframes slideDownToast {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
  }

  .opening-alert-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0;
  }

  .opening-alert-content p {
    font-size: 0.625rem;
    line-height: 1.25;
    margin: 0;
    color: rgba(240, 237, 232, 0.9);
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .opening-alert-content strong {
    display: inline;
    font-size: 0.625rem;
    color: var(--gold);
    font-weight: 700;
  }

  .opening-alert-content .btn-outline {
    width: auto !important;
    margin: 0;
    padding: 4px 8px !important;
    font-size: 0.6rem !important;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
    height: 24px;
    display: flex;
    align-items: center;
  }

  .opening-alert-close {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
  }
}

/* ─── Reduced Motion ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}