/* ===== KAN TUNING — Ana Stil Dosyası ===== */

:root {
  --navy-950: #060a14;
  --navy-900: #0b1220;
  --navy-800: #121c30;
  --navy-700: #1a2740;
  --navy-600: #223252;
  --gold-500: #c9a227;
  --gold-400: #e8c65c;
  --gold-300: #f6e3a1;
  --gold-glow: rgba(201, 162, 39, 0.4);
  --white: #f7f4ec;
  --gray-300: #c2c6d1;
  --gray-500: #8890a0;
  --red-600: #c0392b;
  --radius: 14px;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-950);
  color: var(--white);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 15% -5%, rgba(201,162,39,0.12), transparent 60%),
    radial-gradient(ellipse 900px 600px at 100% 20%, rgba(30,40,55,0.6), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 90%, rgba(201,162,39,0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* İnce altın çizgili "blueprint" dokusu — kraliyet + ileri teknoloji hissi */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

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

.font-display {
  font-family: 'Cinzel', 'Playfair Display', serif;
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Playfair Display', serif;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500) 45%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold-500), transparent); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand .crown { color: var(--gold-500); font-size: 1.1rem; }
.brand span { color: var(--white); }
.brand .accent { color: var(--gold-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gray-300);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 45%, var(--gold-400) 70%, var(--gold-500) 100%);
  color: var(--navy-950);
  box-shadow: 0 8px 24px -6px var(--gold-glow);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-gold:hover::before { left: 130%; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px var(--gold-glow);
}
.btn-outline {
  border-color: rgba(201,162,39,0.4);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold-500);
  background: rgba(201,162,39,0.08);
}
.btn-lg { padding: 15px 34px; font-size: 0.92rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--gold-500);
  transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,12,0.55) 0%, rgba(5,7,12,0.55) 30%, var(--navy-950) 95%),
              linear-gradient(90deg, var(--navy-950) 0%, rgba(5,7,12,0.35) 45%, rgba(5,7,12,0.55) 100%);
}
.hero-content {
  max-width: 700px;
  animation: fadeUp 1s var(--ease) both;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
  margin: 22px 0 22px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.08rem;
  color: var(--gray-300);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: var(--gold-400);
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3;} 50%{opacity:1;} }
@keyframes fadeUp { from { opacity:0; transform: translateY(28px);} to {opacity:1; transform:none;} }

/* ===== Marquee ===== */
.marquee-wrap {
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  background: var(--navy-900);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.marquee-track span::after { content: '◆'; color: var(--gold-500); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
section { position: relative; padding: 110px 0; z-index: 1; }
.section-head {
  max-width: 640px;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 16px;
  line-height: 1.2;
}
.section-head p {
  color: var(--gray-300);
  margin-top: 18px;
  font-size: 1.02rem;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: linear-gradient(160deg, rgba(22,32,58,0.7), rgba(10,15,26,0.5));
  border: 1px solid rgba(201,162,39,0.14);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,0.45);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,0.6);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background-image:
    linear-gradient(var(--gold-500), var(--gold-500)), linear-gradient(var(--gold-500), var(--gold-500)),
    linear-gradient(var(--gold-500), var(--gold-500)), linear-gradient(var(--gold-500), var(--gold-500));
  background-repeat: no-repeat;
  background-size: 16px 1.5px, 1.5px 16px, 16px 1.5px, 1.5px 16px;
  background-position: top left, top left, bottom right, bottom right;
  opacity: 0.4;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 0.85; }
.service-num {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-400);
  font-size: 1.4rem;
  margin: 18px 0 20px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.92rem;
}
.service-card a.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--gold-400);
  font-weight: 600;
}

/* ===== About / split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.2);
}
.split-media img { border-radius: var(--radius); }
.split-media .frame-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(5,7,12,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold-400);
}
.check-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--gray-300);
}
.check-list li .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,162,39,0.14);
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(201,162,39,0.14);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: saturate(0.9) brightness(0.92);
}
.gallery-grid a:hover img { transform: scale(1.08); filter: saturate(1.1) brightness(1); }
.gallery-grid a::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a .g-label {
  position: absolute;
  bottom: 14px; left: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s;
  z-index: 2;
}
.gallery-grid a:hover .g-label { opacity: 1; transform: none; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step { position: relative; padding-top: 8px; }
.process-step .step-no {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,162,39,0.5);
  margin-bottom: 10px;
  display: block;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: var(--gray-500); font-size: 0.88rem; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px; right: -14px;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  display: none;
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: rgba(16,24,40,0.5);
  border: 1px solid rgba(201,162,39,0.14);
  border-radius: var(--radius);
  padding: 30px;
}
.testi-stars { color: var(--gold-500); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.85rem; }
.testi-card p { color: var(--gray-300); font-size: 0.94rem; margin-bottom: 20px; }
.testi-name { font-weight: 600; font-size: 0.92rem; }
.testi-role { color: var(--gray-500); font-size: 0.78rem; }

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(120deg, var(--navy-700), var(--navy-900));
  border-radius: 24px;
  border: 1px solid rgba(201,162,39,0.25);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  top: -150px; right: -100px;
}
.cta-strip h3 { font-size: 1.8rem; max-width: 480px; position: relative; }
.cta-strip .actions { display: flex; gap: 14px; position: relative; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.info-card {
  background: rgba(16,24,40,0.5);
  border: 1px solid rgba(201,162,39,0.16);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.info-card .ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.info-card h4 { font-size: 1rem; margin-bottom: 6px; }
.info-card p, .info-card a { color: var(--gray-300); font-size: 0.9rem; }
.info-card a:hover { color: var(--gold-400); }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.2);
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* ===== Footer ===== */
footer {
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 60px 0 26px;
  background: var(--navy-900);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-grid h5 {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid p { color: var(--gray-500); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--white); }
.footer-brand p { color: var(--gray-500); font-size: 0.9rem; margin: 16px 0 20px; max-width: 320px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-row a:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== Floating WhatsApp ===== */
.float-wa {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6);
  z-index: 200;
  font-size: 1.6rem;
  animation: pulseWa 2.4s ease-in-out infinite;
}
@keyframes pulseWa {
  0%,100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 10px 40px -2px rgba(37,211,102,0.9); }
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 170px 0 90px;
  position: relative;
  border-bottom: 1px solid rgba(201,162,39,0.14);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-top: 16px; }
.breadcrumb { color: var(--gray-500); font-size: 0.85rem; margin-top: 18px; }
.breadcrumb a { color: var(--gold-400); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Tek sayfa çapa (anchor) kaydırma ===== */
section[id] { scroll-margin-top: 96px; }

/* ===== Galeri (bento grid + filtre + lightbox) — paylaşılan ===== */
.gallery-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid rgba(201,162,39,0.25);
  background: transparent; color: var(--gray-300);
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.02em; cursor: pointer; transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--gold-500); color: var(--white); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950); border-color: transparent; font-weight: 600;
}
.gallery-count { font-size: 0.82rem; color: var(--gray-500); }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; }
.bento-item {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,162,39,0.16); cursor: pointer;
  transition: opacity 0.4s, transform 0.4s var(--ease);
}
.bento-item.hide { display: none; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.bento-item:hover img { transform: scale(1.08); }
.bento-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,7,12,0.88) 100%);
  opacity: 0.55; transition: opacity 0.4s;
}
.bento-item:hover::before { opacity: 0.85; }
.bento-item .b-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-400); background: rgba(5,7,12,0.6);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); z-index: 2;
}
.bento-item .b-title {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: var(--white); font-weight: 600; font-size: 0.98rem;
  z-index: 2; font-family: 'Cinzel', serif; letter-spacing: 0.02em;
}
.bento-item .b-icon {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(5,7,12,0.55); border: 1px solid rgba(201,162,39,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400); font-size: 0.9rem;
  opacity: 0; transform: translateY(-6px); transition: all 0.35s var(--ease); z-index: 2;
}
.bento-item:hover .b-icon { opacity: 1; transform: none; }
.b-hero { grid-column: span 2; grid-row: span 2; }
.b-wide { grid-column: span 2; }
.b-tall { grid-row: span 2; }
@media (max-width: 980px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .b-hero { grid-column: span 2; grid-row: span 2; }
  .b-wide { grid-column: span 2; }
  .b-tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .b-hero, .b-wide, .b-tall { grid-column: span 1; grid-row: span 1; }
}
.lightbox {
  position: fixed; inset: 0; background: rgba(5,7,12,0.96);
  display: none; align-items: center; justify-content: center;
  z-index: 300; padding: 30px; backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 92vw; max-height: 88vh; }
.lightbox img {
  max-width: 92vw; max-height: 80vh; border-radius: 12px;
  border: 1px solid rgba(201,162,39,0.3);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  display: block; margin: 0 auto;
}
.lb-caption { text-align: center; margin-top: 16px; font-family: 'Cinzel', serif; color: var(--gold-300); font-size: 1rem; letter-spacing: 0.03em; }
.lb-counter { text-align: center; color: var(--gray-500); font-size: 0.78rem; margin-top: 6px; }
.lb-close {
  position: absolute; top: -46px; right: 0; font-size: 1.8rem; color: var(--gold-400); cursor: pointer;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(16,24,40,0.7); border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-400); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; z-index: 310;
}
.lb-nav:hover { background: var(--gold-500); color: var(--navy-950); }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }
@media (max-width: 700px) { .lb-nav { width: 42px; height: 42px; font-size: 1.1rem; } .lb-prev{left:10px;} .lb-next{right:10px;} }

/* ===== İletişim formu (paylaşılan) ===== */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: rgba(16,24,40,0.6); border: 1px solid rgba(201,162,39,0.22);
  border-radius: 10px; padding: 14px 16px; color: var(--white); font-family: inherit; font-size: 0.92rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold-500); }
.contact-form label { font-size: 0.8rem; color: var(--gray-500); margin-bottom: -8px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links, .header-cta .btn-outline { display: none; }
  .burger { display: flex; }
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .services-grid, .testi-grid, .footer-grid, .gallery-grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .cta-strip { padding: 36px 26px; text-align: center; justify-content: center; }
  .cta-strip h3 { text-align: center; }
  section { padding: 70px 0; }
}

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(5,7,12,0.98);
  backdrop-filter: blur(10px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: 'Cinzel', serif; font-size: 1.4rem; letter-spacing: 0.05em; }
.mobile-nav .btn { margin-top: 10px; }
