/* ============================================
   BELLA ORGANİZASYON — style.css
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #FDFAF5;
  --bg-secondary: #F5EFE4;
  --text-primary: #1A1208;
  --text-secondary: #6B5E4A;
  --accent-gold: #C4A35A;
  --accent-light: #E8D9B5;
  --white: #FFFFFF;
  --border: #E0D5C0;
  --gold-divider: rgba(196, 163, 90, 0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --container-max: 1280px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

/* ---------- Page Loader ---------- */
#page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 9999;
  background: var(--accent-light);
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-gold);
  animation: loaderProgress 1.2s ease-out forwards;
}
@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; opacity: 0; }
}

/* ---------- KVKK Bar ---------- */
.kvkk-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 8000;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.kvkk-bar.hidden { transform: translateY(100%); }
.kvkk-link { color: var(--accent-gold); text-decoration: underline; }
.kvkk-close {
  background: var(--accent-gold);
  color: var(--white);
  padding: 0.35rem 1.1rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.kvkk-close:hover { opacity: 0.85; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(253, 250, 245, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}
.logo-bella {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.logo-dot {
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

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

/* Mobile overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--accent-gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--white);
}
.btn-solid {
  background: var(--accent-gold);
  color: var(--white);
  border: 1px solid var(--accent-gold);
}
.btn-solid:hover {
  background: transparent;
  color: var(--accent-gold);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal, .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SECTION COMMON ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 3rem;
}

/* ---------- SECTION 1: HERO ---------- */
.hero-section {
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.18'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 6rem;
}
.hero-content { z-index: 1; }
.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: block;
  transition-delay: 0.1s;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.06;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}
.hero-heading em {
  font-style: italic;
  color: var(--accent-gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  transition-delay: 0.3s;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  transition-delay: 0.4s;
}
.hero-image {
  position: relative;
  height: clamp(420px, 65vh, 680px);
  transition-delay: 0.3s;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}
/* Hero Badge */
.hero-image { position: relative; }
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(26, 18, 8, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #E50914;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 8px rgba(229, 9, 20, 0.7); }
  50% { box-shadow: 0 0 16px rgba(229, 9, 20, 1); }
}
.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.4;
}
.hero-badge-text em {
  font-style: normal;
  color: var(--accent-gold);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Netflix Feature Card */
.netflix-feature {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4rem;
  background: var(--bg-secondary);
}
.netflix-feature-left {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.netflix-feature-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}
.netflix-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1em;
  color: #E50914;
  letter-spacing: -0.02em;
}
.netflix-feature-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
}
.netflix-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
}

@media (max-width: 768px) {
  .netflix-feature { grid-template-columns: 1fr; }
  .netflix-feature-img { min-height: 200px; max-height: 200px; }
  .netflix-feature-left { padding: 1.8rem 2rem; }
  .hero-badge { bottom: 1rem; right: 1rem; max-width: 180px; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--accent-gold);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.3; }
}

/* ---------- SECTION 2: STATS ---------- */
.stats-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; padding: 1.5rem 1rem; }
.stat-gold-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--accent-gold);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--accent-gold);
  vertical-align: super;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ---------- SECTION 3: SERVICES ---------- */
.services-section {
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.services-section > .section-label {
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Ticker */
.ticker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2.5rem 0 4rem;
  overflow: hidden;
}
.ticker-row { overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  will-change: transform;
}
.ticker-right .ticker-inner {
  animation: tickerRight 30s linear infinite;
}
.ticker-left .ticker-inner {
  animation: tickerLeft 30s linear infinite;
}
.ticker-wrapper:hover .ticker-inner { animation-play-state: paused; }

@keyframes tickerRight {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerLeft {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  background: var(--bg-primary);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.pill:hover {
  background: var(--accent-light);
  color: var(--text-primary);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: transform var(--transition), border-color var(--transition);
  border-top: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent-gold);
}
.service-icon {
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}
.service-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- SECTION 4: ABOUT ---------- */
.about-section {
  background: var(--bg-secondary);
  padding: 7rem 0;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  height: 86vh;
  min-height: 760px;
}
.about-img-top,
.about-img-bottom {
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}
.about-img-top img,
.about-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-top:hover img,
.about-img-bottom:hover img { transform: scale(1.03); }
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.about-heading em { font-style: italic; color: var(--accent-gold); }
.about-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gold);
  margin: 2rem 0;
}
.about-differentiators { margin-bottom: 2.5rem; }
.about-differentiators li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.gold-check { color: var(--accent-gold); flex-shrink: 0; font-weight: 600; }

/* Press feature: founder TV interview */
.press-feature {
  margin-bottom: 2.2rem;
  max-width: 460px;
}
.press-feature-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.press-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 32px rgba(26, 18, 8, 0.12);
}
.press-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter var(--transition);
  filter: brightness(0.78);
}
.press-video:hover .press-video-thumb {
  transform: scale(1.04);
  filter: brightness(0.65);
}
.press-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(253, 250, 245, 0.92);
  color: var(--accent-gold);
  font-size: 1.1rem;
  padding-left: 4px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: transform var(--transition), background var(--transition);
}
.press-video:hover .press-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-gold);
  color: var(--white);
}
.press-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.press-feature-caption {
  margin-top: 0.9rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.press-feature-caption strong { color: var(--text-primary); font-weight: 600; }

/* ---------- SPLIT SCREEN: HİZMETLER + GALERİ ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.split-left,
.split-right {
  padding: 5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
}
.split-left {
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  justify-content: center;
}
.split-right {
  background: var(--bg-primary);
}
.split-left .section-label,
.split-right .section-label {
  margin-bottom: 0.6rem;
}
.split-left .section-heading,
.split-right .section-heading {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin-bottom: 2rem;
}
.split-left .section-heading em,
.split-right .section-heading em {
  font-style: italic;
  color: var(--accent-gold);
}

/* Compact service cards */
.split-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.split-service-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.4rem 1.2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.split-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}
.split-service-card .service-icon {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.split-service-card .service-title {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.split-cta { align-self: flex-start; }

/* Gallery (right side) */
.split-right .gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.split-gallery-scroll {
  flex: 1;
  overflow-y: auto;
  max-height: 560px;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}
.split-gallery-scroll::-webkit-scrollbar { width: 5px; }
.split-gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
}
.split-gallery-scroll .gallery-masonry {
  column-count: 2;
  column-gap: 0.75rem;
}
.split-gallery-scroll .gallery-item {
  margin-bottom: 0.75rem;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; min-height: auto; }
  .split-left { border-right: none; border-bottom: 1px solid var(--border); }
  .split-gallery-scroll { max-height: 480px; }
}
@media (max-width: 600px) {
  .split-services-grid { grid-template-columns: 1fr 1fr; }
  .split-gallery-scroll .gallery-masonry { column-count: 1; }
}

/* ---------- SECTION 5: GALLERY (legacy / unused) ---------- */
.gallery-section {
  padding: 7rem 0;
  background: var(--bg-primary);
}
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  border-radius: 2px;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}
.gallery-masonry {
  column-count: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(253, 250, 245, 0.97);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.8rem;
  padding: 1rem;
  transition: color var(--transition);
  line-height: 1;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.2rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--accent-gold); }

/* ---------- SECTION 6: STAFF ---------- */
.staff-section {
  background: var(--bg-secondary);
  padding: 7rem 0;
}
.staff-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.staff-scroll-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 0;
  flex: 1;
}
.staff-scroll-track::-webkit-scrollbar { display: none; }
.staff-card {
  flex: 0 0 180px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  padding: 2rem 1.4rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  border-radius: 2px;
}
.staff-card:hover {
  border-bottom-color: var(--accent-gold);
  transform: translateY(-3px);
}
.staff-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.staff-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.staff-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.staff-scroll-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--bg-primary);
}
.staff-scroll-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

/* ---------- SECTION 7: BRAND WALL (REFERANSLAR) ---------- */
.brand-wall-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
  overflow: hidden;
}
.brand-wall-sub {
  max-width: 640px;
  margin: 0.8rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.brands-ticker-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 3rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-ticker-row { overflow: hidden; }
.brands-ticker-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.brands-ticker-row .brands-ticker-inner {
  animation: tickerRight 70s linear infinite;
}
.brands-ticker-reverse .brands-ticker-inner {
  animation: tickerLeft 70s linear infinite;
}
.brands-ticker-wrapper:hover .brands-ticker-inner {
  animation-play-state: paused;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 1.2rem;
}
.brand-logo-img {
  height: 42px;
  width: 110px;
  max-height: 42px;
  max-width: 130px;
  object-fit: contain;
  filter: opacity(0.6) saturate(0.65);
  transition: filter var(--transition), transform var(--transition);
}
.brand-logo-wrap:hover .brand-logo-img {
  filter: opacity(1) saturate(1);
  transform: scale(1.08);
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 1.3rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  background: var(--bg-primary);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.brand-logo-wrap:hover .brand-pill {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}
@media (max-width: 600px) {
  .brand-wall-section { padding: 4.5rem 0; }
  .brands-ticker-wrapper { gap: 1rem; margin-top: 2.2rem; }
  .brand-logo-wrap { height: 50px; padding: 0 0.9rem; }
  .brand-logo-img { height: 32px; width: 86px; max-height: 32px; max-width: 100px; }
  .brand-pill { height: 36px; padding: 0 1rem; font-size: 0.7rem; }
}

/* ---------- SECTION 8: CONTACT ---------- */
.contact-section {
  background: var(--bg-secondary);
  padding: 7rem 0;
  border-top: 1px solid var(--border);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
}
.contact-details { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: var(--text-secondary); transition: color var(--transition); }
.contact-item a:hover { color: var(--accent-gold); }
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-icon:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.map-embed { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { position: relative; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-primary);
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-secondary); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--accent-gold); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-error {
  display: block;
  font-size: 0.75rem;
  color: #b84040;
  margin-top: 0.3rem;
  min-height: 1rem;
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-secondary);
  padding: 4rem 0 0;
  border-top: 1px solid var(--border);
}
.footer-gold-line {
  height: 1px;
  background: var(--gold-divider);
  margin-bottom: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.83rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.kvkk-footer-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.kvkk-footer-link:hover { color: var(--accent-gold); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7000;
  box-shadow: 0 4px 20px rgba(196, 163, 90, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(196, 163, 90, 0.45);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-container { gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; }
  .about-images { height: 520px; min-height: 520px; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .about-img-top, .about-img-bottom { height: 100%; }
  .contact-container { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; padding-block: 4rem; gap: 3rem; }
  .hero-image { height: 320px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .about-images { height: 400px; min-height: 400px; }
  .gallery-masonry { column-count: 1; }
  .stats-container { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .footer-links { grid-template-columns: 1fr; }
  .staff-scroll-btn { display: none; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-item { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
