/* ═══════════════════════════════════════════
   VOG YAPI İNŞAAT EMLAK – Ana Stil Dosyası
═══════════════════════════════════════════ */

:root {
  --navy:      #0D1B2A;
  --navy-md:   #1A2E45;
  --navy-lt:   #243D55;
  --gold:      #C9952A;
  --gold-lt:   #E8B84B;
  --gray:      #6B7280;
  --gray-lt:   #9CA3AF;
  --light:     #F7F8FA;
  --white:     #FFFFFF;
  --border:    #E5E7EB;
  --radius:    8px;
  --shadow:    0 2px 12px rgba(13,27,42,.07);
  --shadow-md: 0 4px 24px rgba(13,27,42,.11);
  --trans:     .25s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }

/* ─── Utilities ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.gold      { color: var(--gold); }
.bg-light  { background: var(--light); }
.bg-dark   { background: var(--navy); color: var(--white); }
.center    { text-align: center; }

.section-label {
  display: block;
  font-size: 0.6875rem;   /* 11px */
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--gray);
  max-width: 500px;
  margin: 8px auto 0;
  font-size: 0.875rem;    /* 14px */
  line-height: 1.65;
}
.section-head    { margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.25rem, 2vw, 1.625rem); }  /* 20–26px */
.light .section-label { color: var(--gold-lt); }

section { padding: 68px 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;    /* 14px */
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--trans);
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.full-width { width: 100%; }

/* ═══════════════════ NAVBAR ═══════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(0,0,0,.28);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  color: var(--white); white-space: nowrap; flex-shrink: 0;
}
.logo-img {
  height: 40px; width: 40px;
  object-fit: cover;
  flex-shrink: 0;
  mix-blend-mode: screen;
  filter: contrast(8);
}
.logo-img--footer {
  height: 46px; width: 46px;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: contrast(8);
}
.logo-text        { font-size: 0.8125rem; font-weight: 600; letter-spacing: .04em; line-height: 1.2; }
.logo-text strong { color: var(--gold); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: 0.8125rem;   /* 13px */
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 6px;
  transition: var(--trans);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.09); }
.btn-nav {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 7px 17px !important; border-radius: 6px !important;
  font-size: 0.8125rem !important; font-weight: 600 !important;
}
.btn-nav:hover { background: var(--gold-lt) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}

/* ═══════════════════ HERO ═══════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-md) 60%, #1e3a5a 100%);
  display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding: 0;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,149,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,149,42,.07) 0%, transparent 65%);
}
.hero-content {
  position: relative; padding-top: 90px; max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.6875rem;   /* 11px */
  font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; opacity: .9;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);  /* 30–40px */
  color: var(--white); margin-bottom: 18px; line-height: 1.18;
}
.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;        /* 16px */
  max-width: 480px; margin-bottom: 32px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  position: relative; margin-top: auto;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.stat:last-child { border-right: none; }
.stat-num   { font-size: 1.625rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.6875rem; color: rgba(255,255,255,.52); text-align: center; letter-spacing: .03em; }

/* ═══════════════════ HAKKIMIZDA ═══════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-placeholder svg { display: block; width: 100%; height: 100%; }
.img-icon { display: none; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  padding: 14px 20px; border-radius: 10px;
  text-align: center; box-shadow: var(--shadow-md);
}
.about-badge strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.about-badge span   { font-size: 0.75rem; opacity: .85; }

.about-text h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 14px; }
.about-text p  { color: var(--gray); margin-bottom: 14px; font-size: 0.9375rem; line-height: 1.7; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.vm-card {
  background: var(--light); border-radius: var(--radius);
  padding: 18px 20px; border-left: 3px solid var(--gold);
}
.vm-icon { font-size: 1.25rem; margin-bottom: 8px; }
.vm-card h4 { font-size: 0.875rem; margin-bottom: 6px; }
.vm-card p  { font-size: 0.8125rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* ═══════════════════ HİZMETLER ═══════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: 10px;
  padding: 24px 22px; border: 1px solid var(--border);
  transition: var(--trans); box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,149,42,.10);
}
.service-icon { font-size: 1.75rem; margin-bottom: 12px; }
.service-card h3 { font-size: 0.9375rem; margin-bottom: 8px; }
.service-card p  { font-size: 0.875rem; color: var(--gray); margin: 0; line-height: 1.65; }

/* ═══════════════════ PROJELER ═══════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.project-card {
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans);
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(13,27,42,.13); }
.project-card.large { grid-column: span 2; }

/* SVG proje görselleri */
.proj-visual {
  position: relative; width: 100%; overflow: hidden;
  background: var(--navy);
}
/* Büyük kart: daha kompakt oran */
.project-card.large  .proj-visual { aspect-ratio: 16/7; }
/* Küçük kartlar */
.project-card:not(.large) .proj-visual { aspect-ratio: 4/3; }

.proj-visual svg {
  width: 100%; height: 100%; display: block;
  transition: transform .5s ease;
}
.project-card:hover .proj-visual svg { transform: scale(1.03); }
.proj-coming-soon {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(13,27,42,.72); color: rgba(255,255,255,.55);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: .05em;
  padding: 4px 9px; border-radius: 20px;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.1);
}

.project-info   { background: var(--white); padding: 14px 18px; }
.project-tag {
  display: inline-block;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,149,42,.08);
  padding: 3px 9px; border-radius: 20px; margin-bottom: 5px;
}
.project-info h3 { font-size: 0.9375rem; margin-bottom: 3px; }
.project-info p  { font-size: 0.8125rem; color: var(--gray-lt); margin: 0; }

/* ═══════════════════ NEDEN BİZ ═══════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.why-card {
  border: 1px solid rgba(255,255,255,.09); border-radius: 10px;
  padding: 26px 22px; transition: var(--trans);
}
.why-card:hover { border-color: var(--gold); background: rgba(201,149,42,.04); }
.why-num {
  font-size: 1.75rem; font-weight: 800; color: var(--gold);
  font-family: 'Playfair Display', serif; opacity: .3; margin-bottom: 14px;
}
.why-card h4 { font-size: 0.875rem; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: 0.8125rem; color: rgba(255,255,255,.54); margin: 0; line-height: 1.65; }

/* ═══════════════════ İLETİŞİM ═══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h2   { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 14px; }
.contact-info > p  { color: var(--gray); margin-bottom: 28px; font-size: 0.9375rem; line-height: 1.7; }
.contact-list      { display: flex; flex-direction: column; gap: 18px; }
.contact-list li   { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon      { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-list strong {
  display: block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 2px;
}
.contact-list p  { font-size: 0.875rem; color: var(--gray); margin: 0; line-height: 1.55; }
.contact-list a  { color: var(--navy); }
.contact-list a:hover { color: var(--gold); }
.contact-list a[href*="instagram"]:hover { color: #E1306C; }

/* Form */
.contact-form {
  background: var(--white); border-radius: 12px;
  padding: 32px 28px; box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit; font-size: 0.9375rem;
  color: var(--navy); transition: border-color var(--trans);
  background: var(--white); outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c4c8d0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,.07);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.75rem; color: var(--gray-lt); margin-top: 10px; text-align: center; }

/* Formspree durum mesajları */
.fs-success {
  display: none;
  background: #f0faf4; border: 1px solid #a7f3c0;
  border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 16px; align-items: center; gap: 12px;
}
.fs-success[style*="block"],
.fs-success[style*="flex"],
.fs-success.fs-visible { display: flex; }
.fs-success-icon { font-size: 1.25rem; color: #16a34a; flex-shrink: 0; }
.fs-success p { font-size: 0.875rem; color: #15803d; margin: 0; font-weight: 500; }

.fs-error-global:not(:empty) {
  background: #fff5f5; border: 1px solid #fca5a5;
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 0.8125rem; color: #dc2626; margin-bottom: 14px;
}
.fs-field-error:not(:empty) {
  font-size: 0.75rem; color: #dc2626; margin-top: 3px; display: block;
}
[data-fs-field][aria-invalid="true"] { border-color: #dc2626 !important; }
[data-fs-submit-btn]:disabled {
  opacity: .65; cursor: not-allowed; transform: none !important;
}

/* ═══════════════════ KURUCUMUZ ═══════════════════ */
.founder-grid { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.founder-img-wrap { display: flex; flex-direction: column; gap: 20px; }
.founder-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  border-radius: 12px; box-shadow: var(--shadow-md); border: 2px solid var(--border);
}
.founder-quote {
  background: var(--navy); color: var(--white);
  padding: 16px 20px; border-radius: 10px; border-left: 3px solid var(--gold);
}
.founder-quote p      { font-style: italic; font-size: 0.875rem; opacity: .82; margin-bottom: 6px; line-height: 1.6; }
.founder-quote strong { font-size: 0.8125rem; color: var(--gold); }

.bio-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.bio-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: .05em;
  color: var(--gold); background: rgba(201,149,42,.09);
  padding: 4px 11px; border-radius: 20px; border: 1px solid rgba(201,149,42,.22);
}
.bio-intro    { color: var(--gray); font-size: 0.9375rem; margin-bottom: 22px; line-height: 1.7; }
.bio-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.bio-section  { background: var(--light); border-radius: 8px; padding: 16px 18px; }
.bio-section h4 { font-size: 0.875rem; margin-bottom: 10px; color: var(--navy); }
.bio-list     { display: flex; flex-direction: column; gap: 7px; }
.bio-list li  { font-size: 0.8125rem; color: var(--gray); padding-left: 14px; position: relative; }
.bio-list li::before { content: '▸'; color: var(--gold); position: absolute; left: 0; font-size: 0.75rem; top: 1px; }
.bio-facts    { display: flex; gap: 10px; flex-wrap: wrap; }
.bio-fact {
  display: flex; align-items: center; gap: 7px;
  background: var(--light); padding: 9px 14px; border-radius: 7px;
}
.bio-fact-icon           { font-size: 1rem; }
.bio-fact span:last-child{ font-size: 0.8125rem; font-weight: 500; color: var(--navy); }

/* ═══════════════════ FOOTER ═══════════════════ */
footer { background: var(--navy); color: rgba(255,255,255,.65); }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px; padding: 56px 32px 44px;
}
.footer-logo         { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.footer-brand .logo-text { font-size: 0.8125rem; color: var(--white); }
.footer-brand p      { font-size: 0.8125rem; color: rgba(255,255,255,.42); margin-bottom: 4px; line-height: 1.55; }
.footer-company-note { font-size: 0.75rem !important; color: rgba(255,255,255,.25) !important; }
.footer-links h5,
.footer-contact h5 {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.footer-links        { display: flex; flex-direction: column; gap: 9px; }
.footer-links a      { font-size: 0.875rem; color: rgba(255,255,255,.48); transition: var(--trans); }
.footer-links a:hover{ color: var(--gold); }
.footer-contact p    { font-size: 0.875rem; margin-bottom: 7px; line-height: 1.55; }
.footer-contact a    { color: rgba(255,255,255,.48); transition: var(--trans); }
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 6px; font-size: 0.8125rem;
  color: rgba(255,255,255,.48); transition: var(--trans);
}
.footer-social:hover { color: #E1306C; }
.footer-social svg { flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,.32); }

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 40px; height: 40px; background: var(--gold);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--trans), transform var(--trans);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover   { background: var(--gold-lt); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid    { gap: 44px; }
  .contact-grid  { gap: 44px; }
  .founder-grid  { grid-template-columns: 240px 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.25rem; }
  .section-sub { font-size: 0.8125rem; }

  /* ── Navbar ── mobilde backdrop-filter YOK (position:fixed child bug)
     nav-links paneli viewport'a göre konumlanabilsin diye */
  #navbar,
  #navbar.scrolled {
    backdrop-filter: none !important;
    background: #0D1B2A !important;
    z-index: 1100;
  }
  #navbar { padding: 10px 0; }
  #navbar.scrolled { padding: 8px 0; }
  .nav-inner { gap: 10px; }

  /* Logo — mobilde kısa */
  .logo-img  { height: 32px; width: 32px; }
  .logo-text { font-size: 0.72rem; letter-spacing: .02em; }

  /* Yan menü — header içinde, header z-index:1100 sayesinde overlay üstünde */
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 260px;
    background: var(--navy);
    flex-direction: column; align-items: flex-start;
    padding: 70px 22px 32px; gap: 4px;
    transition: right .28s ease;
    box-shadow: -6px 0 32px rgba(0,0,0,.5);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    width: 100%; padding: 13px 16px;
    font-size: 1rem; border-radius: 8px;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover { background: rgba(255,255,255,.1); color: var(--white); }
  .hamburger { display: flex; position: relative; }

  /* Menü açıkken arka plan karartma */
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 999;
  }
  .nav-overlay.active { display: block; }

  /* ── Hero ── mobilde section'a padding ver, flex kaldır */
  #hero {
    display: block;
    min-height: 100vh;
    padding-top: 72px;   /* fixed navbar altında başla */
    padding-bottom: 0;
    position: relative;
  }
  .hero-content {
    padding-top: 32px;
    padding-bottom: 200px; /* stats alanı için boşluk */
    max-width: 100%;
  }
  .hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    margin-top: 0;
  }
  .hero-eyebrow { font-size: 0.625rem; margin-bottom: 10px; }
  .hero-content h1 { font-size: 1.5rem; margin-bottom: 12px; }
  .hero-sub { font-size: 0.875rem; margin-bottom: 22px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn { width: 100%; justify-content: center; }

  /* Hero stats — 2x2 */
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat       { padding: 16px 12px; }
  .stat-num   { font-size: 1.375rem; }
  .stat-label { font-size: 0.625rem; }

  /* ── Hakkımızda ── */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Badge taşmasını önle — içeri al */
  .about-badge {
    position: static;
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 12px; padding: 10px 18px;
    border-radius: 8px;
  }
  .about-badge strong { font-size: 1.1rem; }
  .about-badge span   { font-size: 0.72rem; }
  .vm-grid { grid-template-columns: 1fr; gap: 10px; }

  /* ── Projeler ── */
  .projects-grid         { grid-template-columns: 1fr; gap: 14px; }
  .project-card.large    { grid-column: span 1; }
  .project-card.large .proj-visual { aspect-ratio: 16/9; }

  /* ── Kurucumuz ── */
  .founder-grid    { grid-template-columns: 1fr; gap: 32px; }
  .founder-img-wrap{ max-width: 260px; margin: 0 auto; width: 100%; }
  .bio-sections    { grid-template-columns: 1fr; gap: 12px; }
  .bio-facts       { gap: 8px; }
  .bio-fact        { padding: 7px 11px; }

  /* ── İletişim ── */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 22px 18px; }
}

@media (max-width: 430px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  /* Navbar logo metni kısalt */
  .logo-text .logo-full { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-grid      { grid-template-columns: 1fr; gap: 10px; }
  .why-card      { padding: 20px 16px; }

  .footer-inner  { grid-template-columns: 1fr; gap: 24px; padding: 36px 16px 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 4px; }

  /* Hero istatistik rakam küçült */
  .stat-num { font-size: 1.25rem; }

  /* Bölüm padding küçült */
  section { padding: 48px 0; }
}

/* ── Gerçek proje fotoğrafları ── */
.proj-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.project-card:hover .proj-visual img { transform: scale(1.05); }

/* Hakkımızda gerçek fotoğraf */
.about-img-real { aspect-ratio: 4/3; }
.about-img-real img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Referans firmalar şeridi ── */
.refs-strip { margin-top: 42px; text-align: center; }
.refs-title {
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.refs-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ref-chip {
  padding: 8px 18px; border: 1px solid rgba(13,27,42,.14);
  border-radius: 30px; font-weight: 600; font-size: .875rem;
  color: var(--navy); background: var(--white); box-shadow: var(--shadow);
}

/* ═══ Proje Galerisi Lightbox ═══ */
.project-card[data-project] { cursor: pointer; }
.proj-count {
  position: absolute; top: 10px; right: 10px;
  background: rgba(13,27,42,.78); color: #fff;
  font-size: .75rem; font-weight: 600; letter-spacing: .03em;
  padding: 5px 11px; border-radius: 20px;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}

/* Hizmetler altındaki faaliyet afişi */
.services-banner {
  position: relative; max-width: 900px; margin: 36px auto 0;
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); cursor: zoom-in;
}
.services-banner img { width: 100%; display: block; transition: transform .5s ease; }
.services-banner:hover img { transform: scale(1.02); }
.banner-zoom {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(13,27,42,.78); color: #fff;
  font-size: .75rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}

/* Pencere */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; }
.lightbox.open {
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,15,25,.88); backdrop-filter: blur(5px);
}
.lb-dialog {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 14px; overflow: hidden;
  width: min(1060px, 100%); max-height: 92vh;
  display: flex; flex-direction: column; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  animation: lbIn .28s ease;
}
@keyframes lbIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lb-close {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(13,27,42,.6); color: #fff; font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: var(--trans);
}
.lb-close:hover { background: var(--gold); }

/* Fotoğraf alanı */
.lb-media {
  position: relative; background: #0a1520;
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
}
.lb-media img {
  width: 100%; max-height: 62vh; object-fit: contain; display: block;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(13,27,42,.6); color: #fff;
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: var(--trans);
}
.lb-nav:hover { background: var(--gold); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-counter {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(13,27,42,.72); color: #fff;
  font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
}

/* Küçük önizlemeler */
.lb-thumbs {
  display: flex; gap: 8px; padding: 10px 12px;
  background: #0a1520; overflow-x: auto;
}
.lb-thumb {
  width: 76px; height: 54px; flex: 0 0 auto;
  border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; padding: 0;
  background: none; cursor: pointer;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .55; transition: var(--trans); }
.lb-thumb:hover img { opacity: .85; }
.lb-thumb.active { border-color: var(--gold); }
.lb-thumb.active img { opacity: 1; }

/* Bilgi paneli */
.lb-info { padding: 22px 24px 26px; }
.lb-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 10px;
}
.lb-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; color: var(--navy); margin-bottom: 4px;
}
.lb-meta { font-size: .875rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.lb-works { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.lb-work-chip {
  background: rgba(13,27,42,.06); color: var(--navy);
  font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(13,27,42,.1);
}
.lb-desc { font-size: .9375rem; line-height: 1.75; color: #4a5768; }

/* Masaüstü: fotoğraf solda, bilgi sağda */
@media (min-width: 861px) {
  .lb-dialog {
    display: grid; overflow: hidden;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }
  .lb-media  { grid-column: 1; grid-row: 1; height: 100%; }
  .lb-media img { max-height: none; height: 100%; }
  .lb-thumbs { grid-column: 1; grid-row: 2; }
  .lb-info   { grid-column: 2; grid-row: 1 / 3; overflow-y: auto; border-left: 1px solid rgba(13,27,42,.08); }
}

/* ═══ Nasıl Çalışıyoruz ═══ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.process-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 26px 22px; text-align: center;
  box-shadow: var(--shadow); transition: var(--trans);
  position: relative;
}
.process-step:hover { transform: translateY(-4px); border-color: var(--gold); }
.process-num {
  width: 44px; height: 44px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,149,42,.1); color: var(--gold);
  border: 2px solid var(--gold); border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
}
.process-step h4 { font-size: 0.9375rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.8125rem; color: var(--gray); margin: 0; line-height: 1.65; }

/* ═══ Sık Sorulan Sorular ═══ */
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans);
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 16px 44px 16px 20px;
  font-size: 0.9375rem; font-weight: 600; color: var(--navy);
  position: relative; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem; font-weight: 600; color: var(--gold);
  transition: transform var(--trans);
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 0 20px 18px; margin: 0;
  font-size: 0.875rem; color: var(--gray); line-height: 1.7;
}

/* ═══ Harita ═══ */
.map-wrap {
  margin-top: 24px; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ═══ WhatsApp sabit buton ═══ */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--trans);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.55); }
.whatsapp-float svg { display: block; }

/* Yeni bölümler — responsive */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 430px) {
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 18px; left: 18px; }
  .map-wrap iframe { height: 190px; }
}
