/* ====================================================================
   GÖNÜÇ İNŞAAT — Tasarım Sistemi
   Marka: Kırmızı + Lacivert. Modern, ağırbaşlı kurumsal inşaat kimliği.
   ==================================================================== */
:root {
  /* Karaman Grup marka paleti — lacivert #04184D + çelik mavi vurgu */
  --g-red: #2E6BD6;      /* aksan (buton/vurgu) — çelik mavi */
  --g-red-dark: #2557B0; /* aksan hover */
  --g-navy: #04184D;     /* marka lacivert (logo) */
  --g-navy-2: #123089;   /* açık lacivert (gradient) */
  --g-ink: #020C2A;      /* en koyu lacivert */
  --g-slate: #5A6679;
  --g-line: #E4E7EC;
  --g-bg: #FFFFFF;
  --g-bg-soft: #F4F6F9;
  --g-cream: #F8F5F0;
  --g-white: #FFFFFF;

  --f-display: "Saira Condensed", "Arial Narrow", "Inter", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --maxw: 1240px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(12,21,38,.06);
  --shadow-md: 0 14px 40px rgba(12,21,38,.12);
  --shadow-lg: 0 30px 70px rgba(12,21,38,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--g-ink);
  background: var(--g-bg);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
[dir="rtl"] body { font-family: "Tajawal", "Segoe UI", system-ui, sans-serif; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.05; letter-spacing: -.01em; margin: 0; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--g-bg-soft); }
.section--navy { background: var(--g-navy); color: #fff; }

/* ---- Bölüm başlığı ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--g-red);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--g-red); }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); text-transform: uppercase; }
.section-title .accent { color: var(--g-red); }
.lead { font-size: 1.12rem; color: var(--g-slate); max-width: 60ch; }

/* ---- Butonlar ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .92rem; letter-spacing: .02em;
  padding: 15px 30px; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: all .25s var(--ease);
}
.btn-primary { background: var(--g-red); color: #fff; }
.btn-primary:hover { background: var(--g-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--g-navy); border-color: #fff; }
.btn-dark { background: var(--g-navy); color: #fff; }
.btn-dark:hover { background: var(--g-ink); transform: translateY(-2px); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
[dir="rtl"] .btn:hover .arr { transform: translateX(-4px); }

/* ====================  HEADER  ==================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: #fff; }
.brand .mark { width: 42px; height: 42px; display: grid; place-items: center; background: var(--g-red); color: #fff; border-radius: 6px; font-size: 1.1rem; }
.brand small { display: block; font-family: var(--f-body); font-weight: 600; font-size: .62rem; letter-spacing: .28em; color: rgba(255,255,255,.7); }
.brand-logo { height: 66px; width: auto; display: block; }
/* Transparan logo: koyu hero'da beyaz-yazılı versiyon, scroll'da orijinal */
.logo-on-light { display: none; }
.site-header.scrolled .logo-on-dark { display: none; }
.site-header.scrolled .logo-on-light { display: block; }
.site-header.scrolled { background: #fff; box-shadow: var(--shadow-sm); }
.site-header.scrolled .brand,
.site-header.scrolled .nav a { color: var(--g-navy); }
.site-header.scrolled .brand small { color: var(--g-slate); }

.nav { display: flex; align-items: center; gap: 22px; }
.nav > a, .nav-dd > a { color: rgba(255,255,255,.92); font-weight: 600; font-size: .95rem; position: relative; padding: 6px 0; }
.nav > a::after, .nav-dd > a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background: var(--g-red); transition: width .25s var(--ease); }
.nav > a:hover::after, .nav > a.active::after, .nav-dd > a:hover::after, .nav-dd > a.active::after { width: 100%; }
.site-header.scrolled .nav-dd > a { color: var(--g-navy); }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.dd-caret { font-size: .65em; transition: transform .25s var(--ease); }
.nav-dd:hover .dd-caret { transform: rotate(180deg); }
.dd-menu { position: absolute; top: 100%; inset-inline-start: -12px; min-width: 230px; background: #fff; border-radius: 10px; box-shadow: var(--shadow-md); padding: 8px; margin-top: 6px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--ease); z-index: 120; }
.nav-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.nav-dd:hover .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu a { display: block; padding: 11px 14px; border-radius: 7px; color: var(--g-navy) !important; font-weight: 600; font-size: .92rem; white-space: nowrap; }
.dd-menu a::after { display: none; }
.dd-menu a:hover { background: var(--g-bg-soft); color: var(--g-red) !important; }

.header-tools { display: flex; align-items: center; gap: 18px; }
.lang-switch { position: relative; }
.lang-switch > button {
  display: flex; align-items: center; gap: 7px; background: none; border: 0; cursor: pointer;
  color: inherit; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
}
.site-header .lang-switch > button { color: #fff; }
.site-header.scrolled .lang-switch > button { color: var(--g-navy); }
.lang-menu {
  position: absolute; top: 140%; inset-inline-end: 0; min-width: 150px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s var(--ease);
}
.lang-switch:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; gap: 10px; padding: 9px 12px; border-radius: 4px; color: var(--g-navy); font-weight: 600; font-size: .9rem; }
.lang-menu a:hover { background: var(--g-bg-soft); }
.lang-menu a.active { color: var(--g-red); }

.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { width: 26px; height: 2px; background: currentColor; }
.site-header .burger { color: #fff; }
.site-header.scrolled .burger { color: var(--g-navy); }

/* ====================  HERO (asimetrik split)  ==================== */
.hero { position: relative; min-height: 100vh; background: var(--g-navy); color: #fff; display: flex; align-items: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(2,12,42,.82) 0%, rgba(4,24,77,.5) 45%, rgba(4,24,77,.12) 100%);
  z-index: 2;
}
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
/* Hero slayt (son projeler) — crossfade + hafif zoom */
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; will-change: opacity, transform; }
.hero-slide.on { opacity: 1; animation: heroKen 7s ease-out both; }
@keyframes heroKen { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero-inner { position: relative; z-index: 3; width: 100%; padding-top: 104px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); text-transform: uppercase; }
.hero h1 .accent { color: var(--g-red); display: block; }
.hero .lead { color: rgba(255,255,255,.82); margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px); border-radius: 40px 10px 40px 10px; padding: 22px 26px;
  display: flex; align-items: center; gap: 18px; transition: all .25s var(--ease);
}
[dir="rtl"] .hero-card { border-radius: 10px 40px 10px 40px; }
.hero-card:hover { background: rgba(226,35,26,.15); border-color: var(--g-red); transform: translateX(6px); }
.hero-card .num { font-family: var(--f-display); font-size: 2.6rem; font-weight: 800; color: var(--g-red); line-height: 1; }
.hero-card .lbl { font-size: .95rem; color: rgba(255,255,255,.85); font-weight: 600; }
.hero-scroll { position: absolute; left: 50%; bottom: 150px; transform: translateX(-50%); z-index: 4; color: rgba(255,255,255,.55); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; line-height: 0; pointer-events: none; }
.hero-curve svg { width: 100%; height: 190px; display: block; }
.hc-red { opacity: .95; }
[dir="rtl"] .hero-curve svg { transform: scaleX(-1); }
.hero-scroll .line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: scrolldot 2s infinite; }
@keyframes scrolldot { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ====================  ABOUT  ==================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; padding: 18px 18px 0 0; }
.about-visual img { position: relative; z-index: 2; border-radius: 18px; box-shadow: var(--shadow-lg); }
/* Şık ofset çerçeve: görselin sağ-üstünden taşan ince kırmızı kontur */
.about-visual::before {
  content: ""; position: absolute; top: 0; inset-inline-end: 0; width: 72%; height: 80%;
  border: 3px solid rgba(226,35,26,.45); border-radius: 18px; z-index: 1;
}
.about-visual .badge {
  position: absolute; inset-inline-start: -10px; bottom: 30px; background: var(--g-red); color: #fff;
  padding: 22px 30px; border-radius: 44px 12px 44px 12px; box-shadow: var(--shadow-md); z-index: 3;
}
[dir="rtl"] .about-visual .badge { border-radius: 12px 44px 12px 44px; }
.about-visual .badge .num { font-family: var(--f-display); font-size: 2.8rem; font-weight: 800; line-height: 1; }
.about-visual .badge .lbl { font-size: .85rem; font-weight: 600; opacity: .9; }
.about-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.about-list .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(226,35,26,.12); color: var(--g-red); display: grid; place-items: center; flex: none; font-size: .8rem; }

/* ====================  ACTIVITIES  ==================== */
.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--g-line); border: 1px solid var(--g-line); border-radius: 8px; overflow: hidden; }
.act-card { background-color: #fff; background-image: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.93)), var(--card-bg, none); background-size: cover; background-position: center; padding: 38px 28px; position: relative; transition: all .3s var(--ease); overflow: hidden; }
.act-card:hover { background-image: none; }
.act-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--g-red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.act-card:hover { background: var(--g-navy); color: #fff; }
.act-card:hover::before { transform: scaleX(1); }
.act-num { font-family: var(--f-display); font-size: .95rem; font-weight: 800; color: var(--g-red); }
.act-icon { width: 56px; height: 56px; border-radius: 10px; background: var(--g-bg-soft); color: var(--g-red); display: grid; place-items: center; margin: 18px 0 20px; font-size: 1.5rem; transition: all .3s var(--ease); }
.act-card:hover .act-icon { background: var(--g-red); color: #fff; }
.act-card h3 { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 10px; }
.act-card p { color: var(--g-slate); font-size: .92rem; margin: 0; }
.act-card:hover p { color: rgba(255,255,255,.75); }
.act-card .go { margin-top: 18px; font-weight: 700; color: var(--g-red); font-size: .85rem; display: inline-flex; gap: 8px; opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); }
.act-card:hover .go { opacity: 1; transform: translateY(0); color: #fff; }

/* ====================  STATS BAND  ==================== */
.stats-band { background: var(--g-navy); color: #fff; position: relative; overflow: hidden; }
.stats-band::after { content: ""; position: absolute; inset-inline-end: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(226,35,26,.25), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; position: relative; z-index: 2; }
.stat .num { font-family: var(--f-display); font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 800; color: #fff; line-height: 1; }
.stat .num .accent { color: var(--g-red); }
.stat .lbl { font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.75); margin-top: 8px; }

/* ====================  PROJECTS  ==================== */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.proj-card { position: relative; border-radius: 28px 8px 28px 8px; overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow-sm); display: block; }
.proj-card.tall { grid-row: span 2; aspect-ratio: auto; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.proj-card:hover img { transform: scale(1.07); }
.proj-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,21,38,.92) 0%, rgba(12,21,38,.2) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; }
.proj-card .cat { align-self: flex-start; background: var(--g-red); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 3px; margin-bottom: auto; }
.proj-card h3 { color: #fff; font-size: 1.2rem; text-transform: uppercase; transition: color .25s; }
.proj-card .loc { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600; display: flex; gap: 7px; align-items: center; margin-top: 6px; }
.proj-card:hover h3 { color: var(--g-red); }

/* ====================  PROJE SLIDER (portre, autoplay)  ==================== */
.pslider { position: relative; }
.ps-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 14px; -ms-overflow-style: none; scrollbar-width: none; }
.ps-track::-webkit-scrollbar { display: none; }
.ps-card { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; border-radius: 16px 16px 8px 8px; overflow: hidden; background: var(--g-navy); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ps-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.ps-img { aspect-ratio: 3/3.4; overflow: hidden; }
.ps-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ps-card:hover .ps-img img { transform: scale(1.06); }
.ps-body { padding: 18px 20px 22px; background: var(--g-navy); }
.ps-cat { display: inline-block; background: var(--g-red); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 10px; }
.ps-body h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; line-height: 1.25; }
.ps-body .loc { color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600; display: flex; gap: 6px; align-items: center; margin-top: 8px; }
.ps-nav { position: absolute; top: 38%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 0; background: #fff; color: var(--g-navy); box-shadow: var(--shadow-md); cursor: pointer; font-size: 1.1rem; display: grid; place-items: center; transition: all .2s var(--ease); }
.ps-nav:hover { background: var(--g-red); color: #fff; }
.ps-prev { left: -12px; }
.ps-next { right: -12px; }
[dir="rtl"] .ps-prev { right: -12px; left: auto; }
[dir="rtl"] .ps-next { left: -12px; right: auto; }
@media (max-width: 900px) { .ps-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .ps-card { flex-basis: 82%; } .ps-nav { display: none; } }

/* ====================  KATALOG  ==================== */
.catalog-viewer { aspect-ratio: 16/10; max-width: 1000px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--g-line); }
.catalog-viewer iframe { width: 100%; height: 100%; border: 0; }

/* ====================  TANITIM FİLMİ  ==================== */
.promo-video { position: relative; aspect-ratio: 16/9; border-radius: 16px 16px 8px 8px; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 1000px; margin: 0 auto; }
.promo-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ====================  REFERANS MARQUEE  ==================== */
.ref-marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ref-marquee-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: refscroll 60s linear infinite; }
.ref-marquee:hover .ref-marquee-track { animation-play-state: paused; }
.ref-logo { flex: 0 0 auto; height: 70px; display: grid; place-items: center; }
.ref-logo img { max-height: 64px; max-width: 150px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: all .25s; }
.ref-logo img:hover { filter: none; opacity: 1; }
@keyframes refscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[dir="rtl"] .ref-marquee-track { animation-direction: reverse; }

/* ====================  MAP  ==================== */
.map-wrap { position: relative; height: 520px; border-radius: 28px 8px 28px 8px; overflow: hidden; box-shadow: var(--shadow-md); }

/* Harita sekmeleri */
.map-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 28px; }
.mtab { padding: 10px 24px; border: 2px solid var(--g-line); background: #fff; border-radius: 30px; font-weight: 700; cursor: pointer; color: var(--g-navy); display: inline-flex; gap: 8px; align-items: center; transition: all .2s var(--ease); }
.mtab:hover { border-color: var(--g-navy); }
.mtab.active { background: var(--g-navy); color: #fff; border-color: var(--g-navy); }

/* Türkiye SVG haritası */
.trmap-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 30px; align-items: start; }
.turkey-map { position: relative; }
.turkey-map svg { width: 100%; height: auto; display: block; }
.trtip { position: absolute; pointer-events: none; background: var(--g-navy); color: #fff; padding: 5px 11px; border-radius: 6px; font-size: .8rem; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity .15s; z-index: 10; box-shadow: var(--shadow-sm); }
.turkey-map-full { max-width: 1080px; margin: 0 auto; }
.trpop { position: absolute; width: 340px; max-width: 92%; max-height: 420px; background: #fff; border-radius: 16px 16px 6px 6px; box-shadow: var(--shadow-lg); padding: 18px 18px 10px; opacity: 0; visibility: hidden; transform: scale(.96); transition: opacity .15s, transform .15s; z-index: 20; display: flex; flex-direction: column; }
.trpop.open { opacity: 1; visibility: visible; transform: none; }
.trpop-x { position: absolute; top: 8px; inset-inline-end: 12px; background: none; border: 0; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--g-slate); }
.trpop-x:hover { color: var(--g-red); }
.trpop-list { overflow: auto; margin-top: 4px; }
.turkey-map [data-plate] path, .turkey-map [data-plate] polygon { fill: #dfe3ea; stroke: #fff; stroke-width: .6; transition: fill .2s; }
.turkey-map [data-plate].on path, .turkey-map [data-plate].on polygon { fill: var(--g-navy); }
.turkey-map [data-plate].on:hover path, .turkey-map [data-plate].on:hover polygon { fill: var(--g-red); }
.turkey-map [data-plate].sel path, .turkey-map [data-plate].sel polygon { fill: var(--g-red); }
.tr-panel { background: #fff; border: 1px solid var(--g-line); border-radius: 16px 16px 6px 6px; padding: 22px; max-height: 470px; overflow: auto; }
.tr-hint { color: var(--g-slate); text-align: center; padding: 50px 10px; }
.tp-title { text-transform: uppercase; font-size: 1.15rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--g-red); }
.tp-title span { color: var(--g-red); }
.tp-card { display: flex; gap: 12px; padding: 9px; border-radius: 10px; margin-bottom: 4px; }
.tp-card:hover { background: var(--g-bg-soft); }
.tp-thumb { width: 82px; height: 60px; border-radius: 8px; overflow: hidden; flex: none; background: var(--g-bg-soft); }
.tp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tp-info { display: flex; flex-direction: column; gap: 3px; }
.tp-info strong { font-size: .9rem; color: var(--g-navy); line-height: 1.3; }
.tp-info em { font-style: normal; font-size: .77rem; color: var(--g-slate); display: flex; gap: 6px; align-items: center; }
.tp-info em i { color: var(--g-red); }
.tp-card:hover .tp-info strong { color: var(--g-red); }
@media (max-width: 900px) { .trmap-grid { grid-template-columns: 1fr; } }

/* Dünya popup (görsel + bilgi) */
.wpop-loc { display: block; margin-bottom: 8px; color: var(--g-navy); font-size: .95rem; }
.wpop-item { display: flex; gap: 10px; align-items: center; padding: 7px 0; color: var(--g-navy) !important; text-decoration: none; border-top: 1px solid var(--g-line); }
.wpop-item img { width: 56px; height: 42px; object-fit: cover; border-radius: 6px; flex: none; }
.wpop-item span { font-weight: 600; font-size: .82rem; line-height: 1.3; }
.wpop-item em { display: block; font-style: normal; color: var(--g-slate); font-weight: 500; font-size: .73rem; margin-top: 2px; }
.wpop-item:hover span { color: var(--g-red); }
#worldMap { width: 100%; height: 100%; }
.map-legend { position: absolute; inset-block-start: 18px; inset-inline-end: 18px; background: #fff; border-radius: 8px; padding: 12px 16px; box-shadow: var(--shadow-sm); font-weight: 600; font-size: .85rem; z-index: 500; }
#worldMap { background: #f4f6f9; }
#worldMap .leaflet-container { background: #f4f6f9; }
.map-legend .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--g-red); display: inline-block; margin-inline-end: 8px; }

/* ====================  REFERENCES  ==================== */
.ref-track { display: flex; flex-wrap: wrap; gap: 1px; background: var(--g-line); border: 1px solid var(--g-line); border-radius: 8px; overflow: hidden; }
.ref-item { background: #fff; flex: 1 1 20%; min-width: 180px; height: 130px; display: grid; place-items: center; padding: 26px; transition: background .25s; }
.ref-item:hover { background: var(--g-bg-soft); }
.ref-item img { max-height: 64px; width: auto; filter: grayscale(1); opacity: .65; transition: all .25s; }
.ref-item:hover img { filter: none; opacity: 1; }

/* ====================  NEWS  ==================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: #fff; border: 1px solid var(--g-line); border-radius: 24px 6px 24px 6px; overflow: hidden; transition: all .3s var(--ease); }
[dir="rtl"] .proj-card { border-radius: 8px 28px 8px 28px; }
[dir="rtl"] .news-card { border-radius: 6px 24px 6px 24px; }
[dir="rtl"] .map-wrap { border-radius: 8px 28px 8px 28px; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--g-bg-soft); }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .body { padding: 24px; }
.news-card .date { color: var(--g-red); font-weight: 700; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
.news-card h3 { font-size: 1.12rem; text-transform: none; margin: 10px 0; letter-spacing: 0; line-height: 1.3; }
.news-card p { color: var(--g-slate); font-size: .92rem; margin: 0; }

/* ====================  CTA STRIP  ==================== */
.cta-strip { background: var(--g-red); color: #fff; }
.cta-strip .inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 54px 0; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: uppercase; }

/* ====================  OFİSLER  ==================== */
.offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.office-card { background: #fff; border: 1px solid var(--g-line); border-radius: 16px 16px 6px 6px; padding: 24px; }
.office-card.hq { border-color: var(--g-red); box-shadow: 0 10px 28px rgba(226,35,26,.10); }
.office-card h3 { font-size: 1.08rem; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.hq-badge { background: var(--g-red); color: #fff; font-size: .58rem; font-family: var(--f-body); font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: .06em; }
.office-card p { color: var(--g-slate); font-size: .9rem; margin: 0 0 9px; display: flex; gap: 9px; line-height: 1.5; }
.office-card p i { color: var(--g-red); margin-top: 4px; flex: none; }
.office-card a { color: inherit; }
.office-card a:hover { color: var(--g-red); }
@media (max-width: 900px) { .offices-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .offices-grid { grid-template-columns: 1fr; } }

/* ====================  FAALİYET DETAY (metin + ilgili projeler)  ==================== */
.act-detail { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.act-projects { position: sticky; top: 120px; }
.act-projects h3 { text-transform: uppercase; font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--g-red); }
.apj { display: flex; gap: 14px; align-items: center; padding: 10px; border-radius: 10px; margin-bottom: 6px; transition: background .2s; }
.apj:hover { background: var(--g-bg-soft); }
.apj-thumb { width: 86px; height: 64px; border-radius: 8px; overflow: hidden; flex: none; background: var(--g-bg-soft); }
.apj-thumb img { width: 100%; height: 100%; object-fit: cover; }
.apj-body { display: flex; flex-direction: column; gap: 4px; }
.apj-body strong { font-size: .92rem; line-height: 1.3; color: var(--g-navy); }
.apj-body em { font-style: normal; font-size: .8rem; color: var(--g-slate); }
.apj:hover .apj-body strong { color: var(--g-red); }
@media (max-width: 900px) { .act-detail { grid-template-columns: 1fr; } .act-projects { position: static; } }

/* ofis kart haritası */
.office-map { margin-top: 14px; border-radius: 8px; overflow: hidden; border: 1px solid var(--g-line); line-height: 0; }
.office-map iframe { width: 100%; height: 150px; border: 0; display: block; }
.office-map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-weight: 600; font-size: .85rem; color: var(--g-red); }

/* ====================  LIGHTBOX (galeri)  ==================== */
.lb-overlay { position: fixed; inset: 0; z-index: 1000; background: rgba(8,14,26,.92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; display: grid; place-items: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--g-red); }
.lb-close { top: 24px; inset-inline-end: 24px; }
.lb-prev { inset-inline-start: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { inset-inline-end: 24px; top: 50%; transform: translateY(-50%); }
.gallery-img { cursor: zoom-in; }

/* ====================  FOOTER  ==================== */
.site-footer { background: var(--g-ink); color: rgba(255,255,255,.7); padding-top: 72px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.site-footer a { color: rgba(255,255,255,.7); display: block; padding: 6px 0; font-size: .92rem; }
.site-footer a:hover { color: var(--g-red); }
.foot-soc { display: flex; gap: 12px; margin-top: 18px; }
.foot-soc a { width: 40px; height: 40px; border-radius: 6px; background: rgba(255,255,255,.08); display: grid; place-items: center; padding: 0; }
.foot-soc a:hover { background: var(--g-red); color: #fff; }
.foot-group { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0 8px; }
.foot-group h4 { margin-bottom: 14px; }
.foot-group-list { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.foot-group-list a { display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; font-weight: 600; }
.foot-group-list a::before { content: "\f1ad"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--g-red); font-size: .8em; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* ====================  PAGE HEADER (iç sayfa)  ==================== */
.page-hero { background: var(--g-navy); color: #fff; padding: 170px 0 120px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset-inline-end: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(226,35,26,.3), transparent 70%); }
/* Anasayfa hero'sundaki gibi alt curve (Leda tarzı header kıvrımı) */
.page-hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 115px; z-index: 1;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%20120'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0,120%20L0,62%20C440,150%20980,120%201440,6%20L1440,120%20Z'%20fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); text-transform: uppercase; }
.crumbs { color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 600; margin-bottom: 14px; }
.crumbs a:hover { color: var(--g-red); }

.prose { max-width: 80ch; }
.prose p { color: #374151; }
.prose img { border-radius: 8px; margin: 18px 0; }

/* ====================  REVEAL ANIM  ==================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ====================  RESPONSIVE  ==================== */
@media (max-width: 1080px) { .act-grid { grid-template-columns: repeat(2,1fr); } .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .proj-grid, .news-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .proj-card.tall { grid-row: span 1; }
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .proj-grid, .news-grid, .stats-grid, .about-list { grid-template-columns: 1fr; }
  .about-visual .badge { inset-inline-start: 12px; }
}

/* ---- Mobil menü ---- */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: var(--g-navy); transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; padding: 30px 28px; }
.mobile-menu.open { transform: none; }
.mobile-menu a { color: #fff; font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu a.sub { font-size: .95rem; font-weight: 600; padding-inline-start: 16px; opacity: .85; text-transform: none; }
.mobile-menu .mm-acc-btn { width: 100%; background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; padding: 11px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.mobile-menu .mm-acc-btn i { font-size: .72em; transition: transform .25s var(--ease); }
.mobile-menu .mm-acc.open .mm-acc-btn i { transform: rotate(180deg); }
.mobile-menu .mm-acc-panel { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.mobile-menu .mm-acc.open .mm-acc-panel { max-height: 220px; }
.mobile-menu .mm-acc-panel a.sub:last-child { border-bottom: 0; }
.mobile-menu .close { align-self: flex-end; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; margin-bottom: 20px; }
