/* ALİ ÖGER — Proje Yönetimi | kurumsal site
   Bağımlılıksız, taşınabilir, WCAG-uyumlu (yüksek kontrast, ≥18px gövde). */

:root {
  --ink:        #14181d;   /* ana metin / koyu */
  --ink-soft:   #3a434d;
  --muted:      #6b7682;
  --line:       #e3e7eb;
  --bg:         #ffffff;
  --bg-alt:     #f6f8fa;
  --accent:     #b8893a;   /* sıcak bronz — inşaat/mimari ciddiyet */
  --accent-dk:  #946a26;
  --navy:       #1d2b3a;   /* hero koyu zemin */
  --maxw:       1140px;
  --radius:     14px;
  --shadow:     0 8px 30px rgba(20,24,29,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; color: var(--ink); }
a { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--accent-dk); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: baseline; gap: .55rem; font-family: Georgia, serif; }
.brand .name { font-size: 1.45rem; font-weight: 700; letter-spacing: .02em; color: var(--ink); }
.brand .tag { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-size: .98rem; font-weight: 500; }
.nav-links a:hover { color: var(--accent-dk); text-decoration: none; }
.nav-cta {
  background: var(--accent); color: #fff; padding: .55rem 1.1rem; border-radius: 999px;
  font-size: .95rem; font-weight: 600;
}
.nav-cta:hover { background: var(--accent-dk); text-decoration: none; color: #fff; }
.menu-toggle { display: none; }
.lang-switch { display: flex; align-items: center; gap: .35rem; margin-left: 1.1rem; font-size: .92rem; font-weight: 600; }
.lang-switch a { color: var(--muted); }
.lang-switch a:hover { color: var(--accent-dk); text-decoration: none; }
.lang-switch a.active { color: var(--ink); }
.lang-switch .sep { color: var(--line); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(29,43,58,.86), rgba(20,24,29,.92)),
    url('hero.svg') center/cover no-repeat, var(--navy);
  color: #fff;
  padding: 96px 0 104px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin: .4rem 0 1rem; max-width: 18ch; }
.hero p.lead { font-size: 1.2rem; color: #d8dee4; max-width: 56ch; margin: 0 0 2rem; }
.hero .eyebrow { color: #e6c489; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-block; padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); text-decoration: none; color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; text-decoration: none; color: #fff; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.alt { background: var(--bg-alt); }
.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: .5rem 0 .6rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat { text-align: center; }
.stat .num { font-family: Georgia, serif; font-size: 2.6rem; font-weight: 700; color: var(--accent-dk); }
.stat .lbl { color: var(--muted); font-size: .95rem; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.card .ico { width: 46px; height: 46px; color: var(--accent-dk); margin-bottom: 16px; }
.card h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: 1.02rem; }

/* Projects */
.projects { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.project {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg); box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.project .thumb {
  aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1d2b3a, #0f1620); overflow: hidden;
}
.project .thumb::before {
  content: ""; position: absolute; inset: 0;
  background: url('hero.svg') center/cover no-repeat; opacity: .55;
}
.project .thumb .mono {
  position: relative; font-family: Georgia, serif; font-size: 2.7rem; font-weight: 700;
  letter-spacing: .05em; color: #fff; opacity: .94; text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.project .thumb.kampus { background: linear-gradient(135deg, #2a3b32, #13201a); }
.project .thumb.turizm { background: linear-gradient(135deg, #244055, #14181d); }
.project .thumb .mono small { display:block; font-size:.8rem; letter-spacing:.16em; opacity:.7; font-family:-apple-system,sans-serif; text-align:center; margin-top:4px; }
.project .body { padding: 22px 24px 26px; }
.project .meta { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-dk); font-weight: 700; }
.project h3 { font-size: 1.25rem; margin: .35rem 0 .4rem; }
.project p { color: var(--muted); margin: 0; font-size: .98rem; }
.badge-draft {
  display: inline-block; margin-left: .5rem; padding: .1rem .5rem; border-radius: 6px;
  background: #fff3d6; color: #8a6400; font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  vertical-align: middle;
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row .k { min-width: 130px; color: var(--muted); font-size: .95rem; }
.info-row .v { color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c4ccd4; padding: 64px 0 28px; font-size: .95rem; }
.site-footer h4 { color: #fff; font-family: Georgia, serif; margin: 0 0 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer a { color: #c4ccd4; }
.site-footer a:hover { color: #fff; }
.kunye { font-size: .86rem; line-height: 1.8; color: #9aa6b0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: #8a96a0; font-size: .85rem;
}

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 72px 24px; }
.legal h1 { font-size: 2.2rem; margin-bottom: .3rem; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal p, .legal li { color: var(--ink-soft); }
.note {
  background: #fff8e8; border: 1px solid #f0dba8; border-radius: 10px; padding: 14px 18px;
  color: #6f5410; font-size: .92rem; margin: 18px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================== v2 bileşenleri (AI-optimized rebuild) ===================== */

/* Marka şeridi */
.brandstrip { padding: 40px 0; border-bottom: 1px solid var(--line); background: var(--bg); }
.brandstrip .lbl { text-align: center; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.brandstrip .logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 40px; }
.brandstrip .logos span { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #9aa3ac; letter-spacing: .02em; }

/* Neden bağımsız PM — owner concern Q/A */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.qa { background: var(--bg); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; padding: 26px 28px; box-shadow: var(--shadow); }
.qa .q { font-family: Georgia, serif; font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 0 0 .5rem; }
.qa .a { color: var(--ink-soft); margin: 0; font-size: 1.02rem; }

/* Global ayak izi */
.footprint-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.country { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); }
.country .flag { font-size: 2rem; line-height: 1; }
.country h3 { margin: 12px 0 4px; font-size: 1.3rem; }
.country .cnt { color: var(--accent-dk); font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.country ul { margin: 14px 0 0; padding-left: 18px; color: var(--ink-soft); }
.country li { margin: 4px 0; }

/* Kurucu */
.founder { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.founder .photo {
  aspect-ratio: 4/5; border-radius: 16px; background: linear-gradient(135deg, #23344a, #14181d);
  display: flex; align-items: flex-end; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.founder .photo::before { content: ""; position: absolute; inset: 0; background: url('hero.svg') center/cover no-repeat; opacity: .5; }
.founder .photo .mono { position: relative; font-family: Georgia, serif; font-size: 3.4rem; color: #fff; opacity: .9; margin-bottom: 22px; }
.founder .photo .ph { position: absolute; top: 12px; right: 14px; font-size: .65rem; letter-spacing: .12em; color: rgba(255,255,255,.6); text-transform: uppercase; }
.founder h3 { font-size: 1.8rem; margin: 0 0 .2rem; }
.founder .role { color: var(--accent-dk); font-weight: 600; margin: 0 0 1rem; }
.founder p { color: var(--ink-soft); font-size: 1.05rem; }
.founder .cv { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.founder .cv span { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; font-size: .85rem; color: var(--ink-soft); }

/* Referanslar / testimonial */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.quote { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); position: relative; }
.quote::before { content: "\201C"; font-family: Georgia, serif; font-size: 4rem; color: var(--accent); opacity: .25; position: absolute; top: 6px; left: 18px; line-height: 1; }
.quote p { color: var(--ink-soft); font-style: italic; margin: 18px 0 16px; font-size: 1.05rem; }
.quote .who { font-weight: 600; color: var(--ink); font-size: .95rem; }
.quote .who small { display: block; color: var(--muted); font-weight: 400; font-style: normal; }

/* Proje hizmet etiketleri */
.project .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.project .tags span { font-size: .72rem; background: var(--bg-alt); border: 1px solid var(--line); color: var(--muted); border-radius: 6px; padding: 3px 8px; }

@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; gap: 28px; }
  .founder .photo { max-width: 240px; }
}

/* Proje kartı gerçek foto (serbest-lisanslı) */
.project .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.img-credit { font-size: .8rem; color: #8a96a0; margin-top: 8px; }
.img-credit a { color: #c4ccd4; }

/* ===================== Mobil + hamburger menü ===================== */
.nav-menu { display: flex; align-items: center; gap: 1.6rem; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .2s; }

@media (max-width: 860px) {
  .nav { position: relative; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 6px 24px 22px; display: none;
  }
  .nav.open .nav-menu { display: flex; }
  .nav.open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav.open .nav-menu nav { width: 100%; }
  .nav.open .nav-menu .nav-links { display: flex; flex-direction: column; gap: 0; width: 100%; }
  .nav-menu .nav-links li { width: 100%; }
  .nav-menu .nav-links a { display: block; padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .nav-menu .lang-switch { margin: 16px 2px 0; }
  .nav-menu .nav-cta { margin-top: 16px; text-align: center; padding: 14px; }
  .brand .tag { display: none; }   /* dar ekranda yer aç */
}

@media (max-width: 520px) {
  .hero { padding: 64px 0 72px; }
  section { padding: 60px 0; }
  .brandstrip .logos { gap: 10px 22px; }
  .brandstrip .logos span { font-size: 1.2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .container { padding: 0 18px; }
}

/* ===================== Çalışma biçimi — açılışa geri sayım ===================== */
.method { background: var(--navy); color: #fff; }
.method .section-head h2 { color: #fff; }
.method .section-head p { color: #c4ccd4; }
.method .eyebrow { color: #e6c489; }
.countdown { margin-top: 8px; }
.cd-track { display: flex; gap: 8px; position: relative; }
.cd-track::before { content: ""; position: absolute; top: 15px; left: 8%; right: 8%; height: 2px; background: rgba(255,255,255,.18); z-index: 0; }
.cd-step { flex: 1; text-align: center; position: relative; z-index: 1; padding-top: 38px; }
.cd-step .dot { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 16px; height: 16px; border-radius: 50%; background: #34465a; border: 2px solid #5a6b7d; }
.cd-step.target .dot { background: var(--accent); border-color: #e6c489; box-shadow: 0 0 0 6px rgba(184,137,58,.22); }
.cd-num { font-family: Georgia, serif; font-size: 1.9rem; font-weight: 700; color: #e6c489; line-height: 1; }
.cd-num small { display: block; font-family: -apple-system, sans-serif; font-size: .68rem; letter-spacing: .12em; color: #9aa6b0; text-transform: uppercase; margin-top: 5px; font-weight: 600; }
.cd-step.target .cd-num { color: #fff; }
.cd-what { font-size: .92rem; color: #d8dee4; margin-top: 12px; line-height: 1.35; }
.method-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.mp { border-top: 2px solid var(--accent); padding-top: 16px; }
.mp h3 { color: #fff; font-size: 1.15rem; margin: 0 0 .4rem; }
.mp p { color: #c4ccd4; font-size: .98rem; margin: 0; }

@media (max-width: 760px) {
  .cd-track { flex-direction: column; gap: 0; }
  .cd-track::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; }
  .cd-step { text-align: left; padding: 0 0 26px 36px; }
  .cd-step .dot { top: 2px; left: 7px; transform: none; }
  .cd-num { font-size: 1.5rem; }
  .cd-num small { display: inline; margin-left: 8px; }
  .cd-what { margin-top: 4px; }
  .method-points { grid-template-columns: 1fr; gap: 22px; }
}

/* ===================== Disiplinler + Kalite/Sertifikasyon ===================== */
.disc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 14px; }
.disc { border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; background: var(--bg); }
.disc b { display: block; font-family: Georgia, serif; font-size: 1.05rem; color: var(--ink); margin-bottom: 2px; }
.disc span { color: var(--muted); font-size: .85rem; line-height: 1.4; }
.disc-more { margin-top: 24px; color: var(--ink-soft); font-size: 1rem; }
.disc-more b { color: var(--accent-dk); }

.cert-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.cpill { border-top: 2px solid var(--accent); padding-top: 16px; }
.cpill h3 { font-size: 1.15rem; margin: 0 0 .4rem; }
.cpill p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.cert-label { font-family: Helvetica, Arial, sans-serif; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.cert-badges .b { border: 1px solid var(--line); background: var(--bg); border-radius: 999px; padding: 9px 17px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.cert-badges .b small { color: var(--muted); font-weight: 400; }
@media (max-width: 760px) { .cert-pillars { grid-template-columns: 1fr; gap: 20px; } }

/* ===================== Kozmetik rötuşlar (2026-06-17) ===================== */
/* Proje foto kartını monogramların koyu tonuna yaklaştır */
.project .thumb:has(img)::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(20,24,29,.12), rgba(20,24,29,.55)); }
/* Disiplinler: son satır hizalı kalsın (auto-fill = boş slot korunur, hücreler genişlemez) */
.disc-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

/* ===================== WhatsApp yüzen buton ===================== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 100; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(0,0,0,.28); transition: transform .15s ease; }
.wa-float:hover { transform: scale(1.07); text-decoration: none; }
.wa-float svg { width: 33px; height: 33px; fill: #fff; }
@media (max-width: 520px) { .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; } }

/* ===================== Ekibimiz (veri-güdümlü; boşsa gizli) ===================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-card .avatar { width: 116px; height: 116px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, #23344a, #14181d); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: var(--shadow); }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .avatar .mono { font-family: Georgia, serif; font-size: 2.1rem; color: #fff; opacity: .92; }
.team-card h3 { font-size: 1.25rem; margin: 0 0 .2rem; }
.team-card .role { color: var(--accent-dk); font-weight: 600; font-size: .95rem; margin: 0 0 .6rem; }
.team-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; max-width: 32ch; margin-left: auto; margin-right: auto; }
