/* ============================================================
   HİPER GRUP TEMA v3 — hipergrup.com.tr birebir klon
   Değerler: Elementor verisi (WP XML) + Bim teması + canlı site ölçümleri
   ============================================================ */

/* ---------- Tasarım Tokenları ---------- */
:root {
  --color-primary:   #CE9E51;
  --color-secondary: #1C1C1C;
  --color-text:      #BEBEBE;
  --color-accent:    #4D4D4D;

  --color-body-text: #666666;
  --color-muted:     #888888;
  --color-dark:      #171717;
  --color-black:     #000000;
  --color-white:     #FFFFFF;
  --bg-beige:        #EBE7E1;
  --bg-contact:      #F8F4F3;

  --font-primary:   'Barlow', sans-serif;
  --font-secondary: 'Barlow Semi Condensed', sans-serif;
  --font-text:      'Barlow', sans-serif;
  --font-heading:   'Poppins', sans-serif;
  --font-serif:     'Merriweather', serif;
  --font-roboto:    'Roboto', sans-serif;

  --header-h: 100px;

  /* Site görselleri (kendi sunucunuzdan) */
  --u: 'https://hipergrup.com.tr/wp-content/uploads';
}

/* ---------- Reset & taban (Bim) ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: var(--color-body-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: ease .3s; }
a:hover { color: var(--color-primary); text-decoration: none; }
a:focus { outline: none; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-weight: 500;
  line-height: 1.4em;
  word-wrap: break-word;
  font-family: var(--font-heading);
}
h4, .h4 { font-size: 20px; }
h5, .h5 { font-size: 18px; }
h6, .h6 { font-size: 17px; }
p { margin: 0 0 30px; word-spacing: 1px; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* ---------- Bölüm başlıkları ---------- */
.section-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 18px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
  padding: 12px 22px;
  border: 1px solid var(--color-muted);
  color: var(--color-white);
  background: transparent;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .3s ease;
}
.btn .chev { margin-left: 8px; font-size: 11px; letter-spacing: -2px; }
.btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.btn-light {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-body-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-light:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

.btn-pill {
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  color: var(--color-muted);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
}
.btn-pill:hover { background: var(--color-primary); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-black);
  height: var(--header-h);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 52px; width: auto; }
.footer-logo img { height: 110px; width: auto; margin: 0 auto; }

.main-nav { display: flex; gap: 14px; }
.main-nav a {
  position: relative;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background .3s ease, color .3s ease;
}
/* Hover: yuvarlak (hap) zemin + yazı beyaz kalır + altında altın çizgi */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px;
  bottom: 5px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-white);
  background: rgba(206, 158, 81, .18);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

/* ---- Hamburger düğmesi (yalnızca mobilde görünür) ---- */
.hb-burger {
  display: none;
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 0;
}
.hb-burger span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--color-white);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
}
.hb-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hb-burger.is-open span:nth-child(2) { opacity: 0; }
.hb-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Mobil menü çekmecesi (drawer) ---- */
.hb-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,13,10,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.hb-overlay.is-open { opacity: 1; visibility: visible; transition: opacity .35s ease; }

.hb-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--color-black, #111111);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px rgba(0,0,0,.3);
}
.hb-drawer.is-open { transform: translateX(0); }
.hb-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 22px 18px; flex: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hb-drawer-logo img { height: 38px; width: auto; display: block; }
.hb-close {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.18); background: transparent;
  color: #fff; font-size: 15px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, border-color .25s ease;
}
.hb-close:hover { background: rgba(206,158,81,.18); border-color: var(--color-primary, #CE9E51); }
.hb-drawer-links {
  display: flex; flex-direction: column;
  padding: 18px 14px; overflow-y: auto; flex: 1 1 auto;
}
.hb-drawer-links a {
  font-family: var(--font-primary); font-size: 15px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 15px 14px; border-radius: 10px;
  transition: background .25s ease, color .25s ease;
}
.hb-drawer-links a:hover, .hb-drawer-links a.active { background: rgba(206,158,81,.15); color: #fff; }
.hb-drawer-btn {
  display: block; margin: 6px 22px 26px; flex: 0 0 auto;
  text-align: center;
  font-family: var(--font-primary); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: #1C1C1C; background: var(--color-primary, #CE9E51);
  padding: 14px 20px; border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}
.hb-drawer-btn:hover { background: #fff; transform: translateY(-2px); }
body.hb-lock { overflow: hidden; }

@media (max-width: 991px) {
  .hb-burger { display: inline-flex; }
  .header-inner .btn { display: none; } /* CTA butonu mobil menüde (hb-drawer-btn) tekrar gösterilir */
}
@media (max-width: 400px) {
  .hb-drawer { width: 100vw; }
}

/* ============================================================
   HERO SLIDER — dsc-slider style 2 (birebir)
   ============================================================ */
.hero {
  position: relative;
  height: 658px;
  overflow: hidden;
  background: var(--color-secondary);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Gerçek slayt görseli + altın overlay (imgi_24_hero-overlay) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide:nth-of-type(1) .hero-bg,
.hero .hero-slide:nth-child(3) .hero-bg { background-image: url('https://hipergrup.com.tr/wp-content/uploads/2026/07/sl001.webp'); }
.hero .hero-slide:nth-child(4) .hero-bg { background-image: url('https://hipergrup.com.tr/wp-content/uploads/2026/07/hipe02-copy.webp'); }
.hero .hero-slide:nth-child(5) .hero-bg { background-image: url('https://hipergrup.com.tr/wp-content/uploads/2026/07/hipe06-copy.webp'); }

/* Slayt maskesi — rgba(0,0,0,.7) @ opacity .8 (canlı siteden) */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
  opacity: .8;
}
/* Bölüm overlay görseli — opacity .13 (canlı siteden) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('https://hipergrup.com.tr/wp-content/uploads/2026/06/imgi_24_hero-overlay.jpeg');
  background-size: cover;
  background-position: center;
  opacity: .13;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px; /* slider_content: 900px */
}

/* Başlık: Poppins 600 — strong/span kısımları OUTLINE (1px beyaz kontur).
   Poppins'in geniş harf aralığı sayesinde kontur çizgileri birbirine girmez. */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.35em;
  letter-spacing: .01em;
  color: var(--color-white);
}
.sentence .word { display: inline-block; white-space: nowrap; }

.hero-title strong,
.hero-title span:not(.char):not(.word) {
  font-weight: 600;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  paint-order: stroke;
}
/* outline harfler animasyonda da şeffaf kalmalı (animasyon harfleri span.char, kelimeleri span.word yapar) */
.hero-title strong .char,
.hero-title span:not(.char):not(.word) .char { -webkit-text-stroke: 1px #fff; color: transparent; }
/* outline dışındaki harfler dolu beyaz kalır */
.hero-title > .char, .hero-title > .word .char { -webkit-text-stroke: 0; color: var(--color-white); }

/* Sayfalama 1/3 — aktif rakam outline (paging_color_stroke) */
.hero-counter {
  position: absolute;
  top: 150px;
  right: 200px;
  z-index: 3;
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 35px;      /* pasif: 35px/700 */
  font-weight: 700;
  line-height: 1;
}
.hero-counter .current {
  font-size: 45px;      /* aktif: 45px/600, kontur */
  font-weight: 600;
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
  margin-right: 2px;
}

/* Oklar — 48px, 1px #c6c6c6 çerçeve, sağda */
.hero-nav {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-nav button {
  width: 48px; height: 48px;
  border: 1px solid #c6c6c6;
  background: rgba(255,255,255,.85);
  color: #333;
  font-size: 16px;
  cursor: pointer;
  transition: all .3s ease;
}
.hero-nav button:hover { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; }

.hero-dot {
  position: absolute;
  top: 45px; left: 24px;
  z-index: 3;
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dot::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }

/* ============================================================
   DEĞERLER — box-with-icon / feature-1 (birebir)
   ============================================================ */
.values {
  background-color: var(--bg-beige);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0 2px, transparent 2px 26px),
                    repeating-linear-gradient(-45deg, rgba(255,255,255,.5) 0 2px, transparent 2px 26px);
  padding: 90px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* feature-1: padding 60/25/50, border 1px, hover: gölge + -5px */
.value-card {
  padding: 60px 25px 50px;
  text-align: center;
  border: 1px solid transparent;
  transition: .3s ease-in-out;
  background-size: cover;
  background-position: center;
}
.value-card:hover {
  margin-top: -5px;
  box-shadow: 10px 20px 40px 0 rgba(0,0,0,.2);
}

/* bim-icon: 80px daire, 40px ikon, 1px çerçeve */
.value-card .icon {
  width: 80px; height: 80px;
  line-height: 78px;
  margin: 0 auto;
  border-radius: 100px;
  border: 1px solid #dddddd;
  display: block;
  text-align: center;
  font-size: 40px;
  transition: .3s ease-in-out;
}
.value-card h3 {
  font-size: 22px;
  margin: 30px 0 10px;
}
.value-card p { font-size: 14px; line-height: 25px; margin: 0; }

/* Kart 1: bg-6 deseni + rgba(214,214,214,.38) */
.value-card.light {
  background-image: linear-gradient(rgba(214,214,214,.38), rgba(214,214,214,.38)), url('https://hipergrup.com.tr/wp-content/uploads/2020/07/bg-6-1.jpg');
  color: var(--color-body-text);
}
.value-card.light h3 { color: #222; }
.value-card.light .icon { color: #000; border-color: #dddddd; }
.value-card.light:hover .icon { background: #dddddd; }

/* Kart 2: bg-4 deseni + rgba(10,10,10,.56) */
.value-card.dark {
  background-image: linear-gradient(rgba(10,10,10,.56), rgba(10,10,10,.56)), url('https://hipergrup.com.tr/wp-content/uploads/2020/07/bg-4-1.jpg');
  color: #adadad;
}
.value-card.dark h3 { color: #fff; }
.value-card.dark .icon { color: #fff; border-color: #333333; }
.value-card.dark:hover .icon { background: #3d3d3d; }

/* Kart 3: bg-7 altın desen */
.value-card.gold {
  background-image: url('https://hipergrup.com.tr/wp-content/uploads/2020/07/bg-7-1.png');
  color: #efefef;
}
.value-card.gold h3 { color: #fff; }
.value-card.gold .icon { color: #fff; border-color: #d1b17d; }
.value-card.gold:hover .icon { background: #d1a55e; }

/* ============================================================
   CTA — altın zemin + hipe04 overlay, Merriweather
   ============================================================ */
.cta {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://hipergrup.com.tr/wp-content/uploads/2026/07/hipe04-copy.webp');
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 1;
}
.cta-inner { position: relative; z-index: 2; width: 100%; text-align: center; padding: 60px 20px; }
.cta-text {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 1px;
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto 34px;
}

/* ============================================================
   HİZMETLER — img-box-slider imgbox-slider-2 (birebir)
   ============================================================ */
.services {
  background-color: var(--color-white);
  background-image: url('https://hipergrup.com.tr/wp-content/uploads/2020/07/bg-5-1.png');
  padding: 100px 0;
}
.services-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 20px;
}

/* slick-slide karşılığı: beyaz kart, gölge, hover -5px */
.service-card {
  position: relative;
  height: 420px;
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.07);
  border-radius: 2px;
  transition: .3s ease-in-out;
  text-align: center;
  overflow: hidden;
}
.service-card:hover { margin-top: -5px; }

/* box-img: fotoğraf kartı doldurur */
.service-card .box-img {
  position: absolute;
  inset: 0;
  background: #000;
}
.service-card .box-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .3s ease-in-out;
}
.service-card:hover .box-img img { opacity: .6; }

/* box-cont: 30px içeriden beyaz %90 panel */
.service-card .box-cont {
  position: absolute;
  inset: 30px;
  background: rgba(255,255,255,.9);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-card .box-cont .s-icon { height: 55px; width: auto; margin-bottom: 18px; }
.service-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  color: #000;
  transition: color .3s ease-in-out;
}
.service-card:hover h3 { color: rgb(206,158,81); }
.service-card p { font-size: 13.5px; line-height: 23px; color: var(--color-body-text); margin: .9rem 0 0; }

/* ============================================================
   SAYAÇLAR — dünya haritası (map01) + gerçek ikonlar
   ============================================================ */
.stats {
  position: relative;
  background-color: rgba(255,255,255,.98);
  background-image: url('https://hipergrup.com.tr/wp-content/uploads/2020/07/map01-1-2.png');
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat .s-icon { height: 60px; width: auto; margin: 0 auto 16px; }
.stat .number {
  font-family: var(--font-primary);
  font-size: 50px;
  font-weight: 200;
  line-height: 60px;
  color: var(--color-black);
}
.stat .number sup { font-size: 26px; font-weight: 300; color: var(--color-black); }
.stat .label {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 400;
  color: #333;
  margin-top: 4px;
}

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact { background: var(--bg-contact); padding: 100px 0; }
.contact .section-title { text-align: center; margin-bottom: 55px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
.contact-card {
  background: var(--color-white);
  padding: 45px 30px;
  text-align: center;
  transition: .3s ease-in-out;
}
.contact-card:hover { margin-top: -5px; box-shadow: 0 15px 35px rgba(0,0,0,.08); }
.contact-card .c-icon { font-size: 30px; color: var(--color-primary); margin-bottom: 14px; }
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.contact-card .val {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
}
/* Tek satır düzeni: form tam genişlik panel */
.contact-panel.one-col { grid-template-columns: 1fr; }
.contact-panel.one-col .contact-form { max-width: 760px; margin: 0 auto; width: 100%; }

/* Harita ikinci satır: kenardan kenara, footer ile bitişik */
.contact.has-map { padding-bottom: 0; }
.contact-map-full { margin-top: 70px; line-height: 0; position: relative; }
.contact-map-full iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.02);
}
@media (max-width: 991px) {
  .contact-map-full iframe { height: 320px; }
  .contact-map-full { margin-top: 44px; }
}

/* Harita üzerindeki adres kutusu (contact + contact_pro ortak) */
.map-badge {
  position: absolute; z-index: 5; top: 26px; left: 26px; max-width: 300px;
  display: flex; align-items: flex-start; gap: 11px;
  background: #fff; border-radius: 14px;
  padding: 16px 19px;
  line-height: 0;
  box-shadow: 0 18px 40px rgba(20,17,12,.20);
}
.map-badge i {
  flex: 0 0 auto; margin-top: 1px;
  font-size: 17px; color: var(--color-primary, #CE9E51);
}
.map-badge span {
  display: inline-block;
  font-family: var(--font-text); font-size: 13.5px; line-height: 22px;
  font-weight: 500; color: #2A2724; white-space: normal;
}
@media (max-width: 680px) {
  .map-badge { top: 16px; left: 16px; right: 16px; max-width: none; padding: 13px 16px; }
  .map-badge span { font-size: 13px; line-height: 20px; }
}
.contact-form { padding: 45px 40px; }
.form-field { position: relative; margin-bottom: 18px; }
.form-field .f-icon {
  position: absolute;
  left: 15px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 14px;
}
.form-field.area .f-icon { top: 18px; transform: none; }

.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--color-muted);
  background: var(--color-white);
  border: 1px solid #ececec;
  border-radius: 0;
  padding: 15px 15px 15px 42px;
  outline: none;
  transition: border-color .3s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-primary); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form ::placeholder { color: #9a9a9a; }

.map-box { min-height: 420px; }
.map-box iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  padding: 70px 0 0;
  text-align: center;
}
.footer-tagline {
  font-family: var(--font-secondary);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 14px;
}
.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  color: var(--color-accent);
}
.footer-bottom a { color: var(--color-primary); }

/* Yukarı çık (Bim) */
.to-top {
  position: fixed;
  right: 30px; bottom: 30px;
  width: 50px; height: 50px;
  line-height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  box-shadow: 0 0 10px rgba(0,0,0,.15);
  color: #fff;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 1s ease-in-out;
  overflow: hidden;
  z-index: 333;
}
.to-top::before {
  content: "";
  display: block;
  position: absolute;
  left: -50%; top: 50%;
  margin-top: -100px;
  width: 200px; height: 200px;
  border-radius: 200px;
  background: var(--color-primary);
  transform: scale(0);
  transition: all .4s ease-out 0s;
  z-index: -1;
}
.to-top:hover::before { transform: scale(1); background: var(--color-secondary); }
.to-top.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   BİM EFEKTLERİ — imleç + harf animasyonu
   ============================================================ */
.mouse-cursor {
  position: fixed;
  left: 0; top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 6px; height: 6px;
  z-index: 10000001;
  background-color: #ce9e51;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px; height: 80px;
  background-color: #ce9e51;
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 40px; height: 40px;
  border: 1px solid #ce9e51;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: .5;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover { opacity: 0; }

/* Harf animasyonu — bölüm başlıkları: .4s / 30ms */
.sentence .char {
  opacity: 0;
  position: relative;
  display: inline-block;
}
.sentence .char.active {
  animation: fadeInUp .4s cubic-bezier(.3, 0, .7, 1) both;
  animation-delay: calc(30ms * var(--char-index));
}
/* Hero (slider-title): .5s / 60ms */
.hero-title.sentence .char.active {
  animation: fadeInUp .5s cubic-bezier(.3, 0, .7, 1) both;
  animation-delay: calc(60ms * var(--char-index));
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 100%, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .values-grid, .services-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .contact-panel { grid-template-columns: 1fr; }
  .hero-title { font-size: 42px; }
  .main-nav { display: none; }
  .hero-counter { right: 60px; }
}
@media (max-width: 600px) {
  .values-grid, .services-grid, .contact-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 3rem; line-height: 36px; }
  .hero-counter { right: 20px; font-size: 14px; }
  .hero-counter .current { font-size: 18px; }
  .cta-text { font-size: 21px; line-height: 36px; }
}


/* ============================================================
   HİZMET KATEGORİLERİ (service_cats) — hizmetlerimiz sayfası kart stilleri
   ============================================================ */
.hgs-services{--gold:#CE9E51;--black:#111111;--text:#666666;--line:#E9E5DE;--paper:#F8F7F4;--white:#FFFFFF;background:var(--paper);padding:56px 24px;font-family:Roboto,Arial,sans-serif}
.hgs-services *{box-sizing:border-box}.hgs-wrap{width:min(1440px,100%);margin:0 auto}.hgs-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:20px;align-items:stretch}
.hgs-card{position:relative;grid-column:span 3;min-width:0;min-height:500px;padding:34px 30px 30px;overflow:hidden;background:var(--white);border:1px solid var(--line);color:var(--black);transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .45s ease}
.hgs-card:before{content:"";position:absolute;z-index:2;top:0;left:0;width:0;height:3px;background:var(--gold);transition:width .55s ease}.hgs-card:after{content:attr(data-no);position:absolute;right:-10px;bottom:-42px;color:rgba(206,158,81,.07);font:700 132px/1 Poppins,Arial,sans-serif;letter-spacing:-.08em;pointer-events:none}
.hgs-card:hover{z-index:3;transform:translateY(-7px);border-color:var(--gold);box-shadow:0 24px 54px rgba(22,18,12,.11)}.hgs-card:hover:before{width:100%}
.hgs-top{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;min-height:46px;margin-bottom:42px}.hgs-number{color:#999;font:500 11px/1 Poppins,Arial,sans-serif;letter-spacing:.18em}
.hgs-mark{position:relative;display:block;flex:0 0 auto;width:46px;height:46px;border:1px solid rgba(206,158,81,.5);border-radius:50%;transition:.45s ease}.hgs-mark:before,.hgs-mark:after{content:"";position:absolute;top:50%;left:50%;background:var(--gold);transform:translate(-50%,-50%)}.hgs-mark:before{width:16px;height:1px}.hgs-mark:after{width:1px;height:16px}.hgs-card:hover .hgs-mark{background:var(--gold);transform:rotate(90deg)}.hgs-card:hover .hgs-mark:before,.hgs-card:hover .hgs-mark:after{background:#fff}
.hgs-title{position:relative;z-index:1;min-height:2.45em;margin:0 0 20px;font:600 clamp(20px,1.6vw,25px)/1.22 Poppins,Arial,sans-serif;letter-spacing:-.025em}.hgs-title a{color:inherit;text-decoration:none}
.hgs-list{position:relative;z-index:1;margin:0;padding:0;list-style:none}.hgs-list li{position:relative;margin:0;padding:0;border-bottom:1px solid #F0EEE9}.hgs-list li:last-child{border-bottom:0}.hgs-list a{position:relative;display:block;padding:8px 0 8px 16px;color:var(--text);font-size:13.5px;line-height:1.5;text-decoration:none;transition:color .25s ease,padding-left .25s ease}.hgs-list a:before{content:"";position:absolute;top:16px;left:0;width:5px;height:5px;background:var(--gold);transform:rotate(45deg)}.hgs-list a:hover{padding-left:21px;color:var(--black)}
.hgs-card--facade{grid-column:span 9}.hgs-card--facade .hgs-title{min-height:auto}.hgs-card--facade .hgs-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));column-gap:34px}
@media(max-width:1180px){.hgs-services{padding-left:18px;padding-right:18px}.hgs-card,.hgs-card--facade{grid-column:span 6}.hgs-card--facade .hgs-list{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:26px}}
@media(max-width:700px){.hgs-services{padding:24px 12px}.hgs-grid{gap:14px}.hgs-card,.hgs-card--facade{grid-column:1/-1;min-height:auto;padding:27px 23px 25px}.hgs-top{margin-bottom:30px}.hgs-title{min-height:auto}.hgs-card--facade .hgs-list{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.hgs-card{transition:none}}

/* ============================================================
   GÖRSELLİ METİN (textimage) — Hakkımızda konteyneri
   ============================================================ */
.textimage { background: var(--color-white); padding: 100px 0; overflow: hidden; }
.ti-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: center;
}
.textimage.img-right .ti-img { order: 2; }
.textimage.img-right .ti-content { order: 1; }

/* Görsel: altın çerçeve ofseti + rozet */
.ti-img { position: relative; }
.ti-img::before {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  right: 40px; bottom: 40px;
  border: 1px solid var(--color-primary);
  z-index: 0;
  pointer-events: none;
}
.textimage.img-right .ti-img::before { left: 40px; right: -18px; }
.ti-img img, .ti-img-ph {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.ti-img-ph { background: linear-gradient(135deg, #CBA35C, #8a6a33); }
.ti-badge {
  position: absolute;
  z-index: 2;
  right: -16px; bottom: -16px;
  background: var(--color-primary);
  color: #fff;
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.textimage.img-right .ti-badge { right: auto; left: -16px; }
.ti-badge b {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}
.ti-badge span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .9;
}

/* Metin */
.ti-content .section-title { margin-bottom: 24px; }
.ti-text {
  color: var(--ti-color, var(--color-body-text));
  font-size: var(--ti-fs, 14.5px);
  font-weight: var(--ti-fw, 400);
  /* Satır aralığı girilmezse punto ile orantılı (1.85×) hesaplanır */
  line-height: var(--ti-lh, calc(var(--ti-fs, 14.5px) * 1.85));
}
.ti-text p, .ti-text li { font-size: inherit; font-weight: inherit; color: inherit; }
.ti-text p { margin: 0 0 18px; }
.ti-text strong, .ti-text b { color: var(--ti-color, #222); font-weight: 700; }
/* Başlık: ayar verilmezse tema varsayılanlarına döner (.section-title) */
.ti-content .section-title {
  font-size: var(--ti-tfs, 26px);
  font-weight: var(--ti-tfw, 700);
  color: var(--ti-tcolor, var(--color-black));
}
.ti-highlight {
  margin-top: 26px;
  padding: 22px 26px;
  background: #faf7f2;
  border-left: 3px solid var(--color-primary);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 28px;
  color: #444;
}

@media (max-width: 991px) {
  .ti-grid { grid-template-columns: 1fr; gap: 50px; }
  .ti-img img, .ti-img-ph { height: 380px; }
  .textimage.img-right .ti-img { order: 0; }
  .textimage.img-right .ti-content { order: 0; }
}

/* ============================================================
   MİNİMAL HAKKIMIZDA — about_hero + feature_row
   ============================================================ */
.about-hero { background: #F6F4EF; padding: 110px 0; }
.ah-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.ah-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 400;
  color: #1c1a16;
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.ah-text {
  font-size: 15px;
  line-height: 27px;
  color: #55524c;
  max-width: 400px;
  margin: 0;
}

/* Görsel: yumuşak köşe + arkada organik altın leke */
.ah-img { position: relative; }
.ah-img::before {
  content: "";
  position: absolute;
  inset: -34px -30px 6px auto;
  width: 78%;
  aspect-ratio: 1/1;
  right: -30px;
  background: var(--color-primary);
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  transform: rotate(14deg);
  z-index: 0;
}
.ah-img img, .ah-ph {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.ah-ph { background: linear-gradient(135deg, #d9d4ca, #b8b1a3); }

/* --- Dönüşümlü görsel + metin satırı --- */
.feature-row { background: var(--color-white); padding: 90px 0; }
.feature-row.bg-cream { background: #F6F4EF; }
.fr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row.img-right .fr-img { order: 2; }
.feature-row.img-right .fr-content { order: 1; }
.fr-img img, .fr-ph {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.fr-ph { background: linear-gradient(135deg, #d9d4ca, #b8b1a3); }
.fr-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #16140f;
  margin-bottom: 16px;
}
.fr-text { font-size: 14.5px; line-height: 27px; color: #55524c; }
.fr-text p { margin: 0 0 16px; }
.fr-text p:last-child { margin-bottom: 0; }
.fr-text strong, .fr-text b { color: #16140f; }

@media (max-width: 991px) {
  .about-hero { padding: 70px 0; }
  .ah-grid, .fr-grid { grid-template-columns: 1fr; gap: 44px; }
  .ah-title { font-size: 36px; }
  .ah-img::before { inset: -20px -14px auto auto; width: 65%; }
  .feature-row.img-right .fr-img, .feature-row.img-right .fr-content { order: 0; }
  .feature-row { padding: 60px 0; }
}

/* ============================================================
   HAKKIMIZDA SAYFASI — about_page (tek görselli minimal)
   ============================================================ */
.aboutp-hero { background: #F5F2EC; padding: 100px 0 110px; }
.aboutp-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 90px;
  align-items: center;
}
.aboutp-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: #211e19;
  margin-bottom: 24px;
  line-height: 1.15;
}
.aboutp-lead {
  font-size: 15.5px;
  line-height: 28px;
  color: #5a564f;
  max-width: 380px;
  margin: 0;
}

/* Tek görsel: yumuşak köşe + köşede küçük altın vurgu */
.aboutp-img { position: relative; }
.aboutp-img::before {
  content: "";
  position: absolute;
  right: -26px; bottom: -26px;
  width: 180px; height: 180px;
  background: var(--color-primary);
  border-radius: 62% 38% 46% 54% / 55% 48% 52% 45%;
  transform: rotate(18deg);
  z-index: 0;
  opacity: .9;
}
.aboutp-img img, .aboutp-ph {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(33, 27, 15, .14);
  display: block;
}
.aboutp-ph { background: linear-gradient(150deg, #cfc8bb 0%, #a89f8e 55%, #857c69 100%); }

/* Metin gövdesi: tek kolon, rahat okuma */
.aboutp-body { background: var(--color-white); padding: 90px 0; }
.aboutp-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: #55524c;
}
.aboutp-text p, .aboutp-text li { font-size: 16px; font-weight: 600; }
.aboutp-text p { margin: 0 0 26px; }
.aboutp-text p:last-child { margin-bottom: 0; }
.aboutp-text strong, .aboutp-text b { color: #211e19; }

/* Kapanış alıntısı: ince altın çizgi + büyük serif */
.aboutp-quote {
  max-width: 780px;
  margin: 70px auto 0;
  text-align: center;
}
.aboutp-quote .q-line {
  display: block;
  width: 44px; height: 2px;
  background: var(--color-primary);
  margin: 0 auto 30px;
}
.aboutp-quote p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 40px;
  color: #2b2822;
  margin: 0;
}

@media (max-width: 991px) {
  .aboutp-hero { padding: 60px 0 70px; }
  .aboutp-grid { grid-template-columns: 1fr; gap: 50px; }
  .aboutp-title { font-size: 38px; }
  .aboutp-img img, .aboutp-ph { height: 320px; }
  .aboutp-img::before { width: 120px; height: 120px; right: -14px; bottom: -14px; }
  .aboutp-body { padding: 60px 0; }
  .aboutp-quote p { font-size: 19px; line-height: 34px; }
}

/* ============================================================
   YUVARLAK HİZMET ŞERİTLERİ — journey (kapsül tasarım)
   ============================================================ */
.journey { background: var(--color-white); padding: 100px 0; }
.jr-head { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.jr-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.jr-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 14px;
}
.jr-intro { font-size: 14.5px; line-height: 26px; color: #6b675f; margin: 0; }

/* Kapsül satırı */
.jr-row {
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: stretch;
  border: 5px solid var(--color-secondary);
  border-radius: 240px;
  overflow: hidden;
  background: var(--color-white);
  min-height: 300px;
  margin-bottom: 46px;
  transition: box-shadow .35s ease, transform .35s ease;
}
.jr-row:hover { transform: translateY(-4px); box-shadow: 0 26px 56px rgba(22, 18, 12, .13); }
.jr-row:last-child { margin-bottom: 0; }
.jr-row.img-right .jr-img { order: 2; }
.jr-row.img-right .jr-content { order: 1; }

.jr-img { position: relative; min-height: 300px; }
.jr-img img, .jr-ph {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.jr-ph { background: linear-gradient(150deg, #cfc8bb 0%, #a89f8e 55%, #857c69 100%); }

.jr-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 44px 70px 44px 56px;
}
.jr-row.img-right .jr-content { padding: 44px 56px 44px 70px; }
.jr-badge {
  display: inline-block;
  background: rgba(206, 158, 81, .14);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.jr-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #16140f;
  margin-bottom: 12px;
}
.jr-content p { font-size: 14px; line-height: 25px; color: #6b675f; margin: 0 0 14px; }
.jr-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.jr-tags span {
  border: 1px solid #e7dfd0;
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 12.5px;
  color: #6b675f;
  background: #fbf9f5;
}

@media (max-width: 991px) {
  .journey { padding: 60px 0; }
  .jr-row { grid-template-columns: 1fr; border-radius: 42px; border-width: 4px; }
  .jr-img { min-height: 220px; order: 0 !important; }
  .jr-content { order: 1 !important; padding: 30px 28px !important; }
}

/* ============================================================
   İLETİŞİM PRO — contact_pro (form + koyu kart + harita)
   ============================================================ */
.cpro { background: var(--color-white); padding: var(--cpad, 90px) 0 0; }
.cpro-grid {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 60px;
  align-items: start;
  padding-bottom: var(--cpad, 90px);
}

/* Kutulu (boxed) düzen */
.cpro.boxed { background: transparent !important; padding: 70px 0; }
.cpro-box {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(20, 16, 10, .13);
  padding: var(--cpad, 60px) 50px 0;
}
.cpro-box .cpro-map { margin: 0 -50px; }
.cpro-box .cpro-map iframe { height: 360px; }

/* Koyu zemin: yazılar açık renge döner (form alanları beyaz kalır) */
.cpro-on-dark .cpro-title { color: #fff; }
.cpro-on-dark .cpro-sub { color: rgba(255,255,255,.65); }
.cpro-on-dark .cpro-field label { color: rgba(255,255,255,.9); }
.cpro-on-dark .cpro-btn { background: var(--color-primary); }
.cpro-on-dark .cpro-btn:hover { background: #fff; color: #1c1a15; }
.cpro-on-dark .cpro-card { box-shadow: 0 24px 50px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.08); }
.cpro-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  color: #1d1a15;
  margin-bottom: 10px;
}
.cpro-sub { font-size: 14px; color: #7a756c; margin: 0 0 34px; }

.cpro-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cpro-field { margin-bottom: 20px; }
.cpro-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #2a2620;
  margin-bottom: 8px;
}
.cpro-field label b { color: var(--color-primary); }
.cpro-field input, .cpro-field textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 14.5px;
  color: #444;
  background: #fff;
  border: 1px solid #e4ddd0;
  border-radius: 8px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.cpro-field input:focus, .cpro-field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(206,158,81,.13);
}
.cpro-field textarea { min-height: 160px; resize: vertical; }
.cpro-field ::placeholder { color: #b3ada2; }

.cpro-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--color-secondary);
  border: none;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.cpro-btn:hover { background: var(--color-primary); transform: translateY(-2px); }

/* Koyu bilgi kartı */
.cpro-card {
  background: var(--color-secondary);
  border-radius: 16px;
  padding: 38px 34px;
  box-shadow: 0 24px 50px rgba(20, 16, 10, .18);
}
.cpro-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 26px 0 10px;
}
.cpro-card h4:first-child { margin-top: 0; }
.cpro-card p { font-size: 13.5px; line-height: 24px; color: #b8b2a6; margin: 0; }
.cpro-card .k { color: #d8d3c8; }
.cpro-card a { color: var(--color-primary); }
.cpro-card a:hover { color: #fff; }
.cpro-socials { display: flex; gap: 10px; margin-top: 4px; }
.cpro-socials a {
  width: 36px; height: 36px;
  background: #fff;
  color: #1d1a15;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: .25s ease;
}
.cpro-socials a:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px); }

/* Tam genişlik harita */
.cpro-map { line-height: 0; position: relative; }
.cpro-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  filter: grayscale(1) contrast(1.02);
}

@media (max-width: 991px) {
  .cpro { padding-top: 55px; }
  .cpro-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 55px; }
  .cpro-row2 { grid-template-columns: 1fr; gap: 0; }
  .cpro-map iframe { height: 320px; }
  .cpro-box { padding: 34px 22px 0; }
  .cpro-box .cpro-map { margin: 0 -22px; }
}

/* ============================================================
   SAYAÇLAR PRO — counters_pro (belirgin, full/boxed)
   ============================================================ */
.statsp { position: relative; }
.statsp.full { padding: 80px 0; }
.statsp.boxed { padding: 70px 0; background: transparent !important; }

/* Stiller */
.statsp.st-dark {
  background: radial-gradient(1200px 500px at 15% 0%, rgba(206,158,81,.14), transparent 60%),
              radial-gradient(900px 420px at 90% 100%, rgba(206,158,81,.10), transparent 55%),
              #171717;
}
.statsp.st-gold { background: linear-gradient(120deg, #B8894A 0%, #CE9E51 45%, #DDB877 100%); }
.statsp.st-light { background: #F6F3ED; }

/* Boxed: aynı stiller kutuya uygulanır */
.sp-box { border-radius: 22px; padding: 60px 40px; box-shadow: 0 30px 60px rgba(20,16,10,.16); }
.statsp.boxed.st-dark .sp-box {
  background: radial-gradient(900px 400px at 15% 0%, rgba(206,158,81,.16), transparent 60%), #171717;
}
.statsp.boxed.st-gold .sp-box { background: linear-gradient(120deg, #B8894A 0%, #CE9E51 45%, #DDB877 100%); }
.statsp.boxed.st-light .sp-box { background: #F6F3ED; box-shadow: 0 20px 45px rgba(20,16,10,.08); }

.sp-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.statsp.st-dark .sp-title, .statsp.st-gold .sp-title { color: #fff; }
.statsp.st-light .sp-title { color: #1c1a15; }

.sp-grid { display: grid; gap: 24px; text-align: center; }

.sp-item { position: relative; padding: 14px 10px; transition: transform .3s ease; }
.sp-item:hover { transform: translateY(-6px); }
/* Öğeler arası ince ayraç */
.sp-item + .sp-item::before {
  content: "";
  position: absolute;
  left: 0; top: 18%;
  height: 64%;
  width: 1px;
}
.statsp.st-dark .sp-item + .sp-item::before { background: rgba(255,255,255,.12); }
.statsp.st-gold .sp-item + .sp-item::before { background: rgba(255,255,255,.28); }
.statsp.st-light .sp-item + .sp-item::before { background: rgba(28,26,21,.12); }

/* İkon dairesi */
.sp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 28px;
  transition: .3s ease;
}
.statsp.st-dark .sp-icon { background: rgba(206,158,81,.15); border: 1px solid rgba(206,158,81,.45); color: var(--color-primary); }
.statsp.st-gold .sp-icon { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.5); color: #fff; }
.statsp.st-light .sp-icon { background: rgba(206,158,81,.12); border: 1px solid rgba(206,158,81,.5); color: var(--color-primary); }
.sp-item:hover .sp-icon { transform: rotate(-8deg) scale(1.06); }
.sp-icon img { width: 38px; height: 38px; object-fit: contain; }
.statsp.st-gold .sp-icon img { filter: brightness(0) invert(1); }

/* Rakam */
.statsp .number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
}
.statsp.st-dark .number { color: #fff; }
.statsp.st-gold .number { color: #fff; }
.statsp.st-light .number { color: #1c1a15; }
.statsp .number sup { font-size: 24px; font-weight: 600; color: var(--color-primary); }
.statsp.st-gold .number sup { color: #fff; opacity: .85; }

.sp-label {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
}
.statsp.st-dark .sp-label { color: #a49a88; }
.statsp.st-gold .sp-label { color: rgba(255,255,255,.85); }
.statsp.st-light .sp-label { color: #7a7466; }

@media (max-width: 991px) {
  .sp-grid { grid-template-columns: repeat(2, 1fr) !important; row-gap: 36px; }
  .sp-item + .sp-item::before { display: none; }
  .statsp .number { font-size: 40px; }
  .sp-box { padding: 40px 20px; }
}

/* ============================================================
   HİZMETLER MODERN — services_modern
   (md dosyasındaki hg-* stilleri birebir + full/boxed varyasyonu)
   ============================================================ */
.hg-services {
  --hg-gold: #ce9e51;
  --hg-gold-deep: #9d7134;
  --hg-ink: #1c1c1c;
  --hg-bg: #fcfbf8;
  --hg-line: rgba(28, 28, 28, 0.13);
  --hg-muted: #74716b;
  --hg-white: #ffffff;
  color: var(--hg-ink);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
}
.hg-services * { box-sizing: border-box; }

/* Tam genişlik: zemin kenardan kenara */
.hg-services--full {
  width: 100%;
  padding: clamp(52px, 6vw, 84px) clamp(24px, 5vw, 84px) clamp(64px, 7vw, 96px);
  background:
    radial-gradient(circle at 9% 0%, rgba(206, 158, 81, 0.09), transparent 25rem),
    var(--hg-bg);
}

/* Kutulu: yuvarlak köşeli konteyner */
.hg-services--boxed { padding: 70px clamp(16px, 4vw, 40px); background: transparent; }
.hg-services__box {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 4vw, 64px) clamp(24px, 3.4vw, 52px) clamp(46px, 5vw, 70px);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 0%, rgba(206, 158, 81, 0.09), transparent 25rem),
    var(--hg-bg);
  box-shadow: 0 26px 58px rgba(28, 28, 28, .10);
}

.hg-services__heading {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 38px;
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--hg-line);
}
.hg-services__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 112px;
  height: 2px;
  background: var(--hg-gold);
}
.hg-services__label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hg-gold-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hg-services__label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--hg-gold);
}
.hg-services__title {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: var(--hg-ink);
}
.hg-services__intro {
  max-width: 610px;
  margin: 0 0 2px auto;
  color: var(--hg-muted);
  font-size: 16px;
  line-height: 1.72;
}

.hg-services__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--hg-cols, 4), minmax(0, 1fr));
  grid-auto-rows: 1fr; /* tüm satırlardaki kartlar eşit yükseklikte olsun */
  gap: 16px;
  perspective: 1000px;
}

.hg-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--hg-white);
  border: 1px solid var(--hg-line);
  box-shadow: 0 12px 30px rgba(28, 28, 28, 0.035);
  transform: perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.hg-card::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mouse-x) var(--mouse-y), rgba(206, 158, 81, 0.18), transparent 56%);
  transition: opacity 260ms ease;
}
.hg-card:hover,
.hg-card:focus-within {
  border-color: rgba(206, 158, 81, 0.72);
  box-shadow: 0 25px 55px rgba(28, 28, 28, 0.11);
}
.hg-card:hover::before,
.hg-card:focus-within::before { opacity: 1; }

.hg-card__media {
  position: relative;
  height: 172px;
  padding: 19px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  color: var(--hg-white);
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.20), rgba(20, 20, 20, 0.76)),
    var(--card-image) center / cover;
}
.hg-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(206, 158, 81, 0.25), transparent 66%);
  transform: translateX(-110%);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hg-card:hover .hg-card__media::after { transform: translateX(110%); }

.hg-card__index {
  position: relative;
  z-index: 2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hg-card__symbol {
  position: relative;
  z-index: 2;
  margin-left: auto; /* "HİZMET / 01" yazısı gizliyken de sağda kalsın */
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease;
}
.hg-card__symbol::before,
.hg-card__symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--hg-white);
  transform: translate(-50%, -50%);
}
.hg-card__symbol::after { transform: translate(-50%, -50%) rotate(90deg); }
.hg-card:hover .hg-card__symbol {
  background: var(--hg-gold);
  border-color: var(--hg-gold);
  transform: rotate(90deg);
}

.hg-card__content {
  padding: 22px 20px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.hg-card__kicker {
  margin: 0 0 8px;
  color: var(--hg-gold-deep);
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
}
.hg-card__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--hg-ink);
}
/* Liste: altın elmas madde işareti + satır ayırıcı ince çizgi */
.hg-card__list {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}
.hg-card__list li {
  position: relative;
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid #f0eee9;
  color: #66635e;
  font-family: var(--font-text);
  font-size: 13.5px;
  line-height: 1.5;
  list-style: none;
  transition: color .25s ease;
}
.hg-card__list li:last-child { border-bottom: 0; }
.hg-card__list li:hover { color: var(--hg-ink); }
.hg-card__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 0;
  background: var(--hg-gold);
  transform: rotate(45deg);
}
/* Geniş kartta sütunlar arası ayrım korunur */
.hg-card--facade .hg-card__list li { padding: 8px 0; }

.hg-card--facade {
  grid-column: span calc(var(--hg-cols, 4) - 1); /* seçili sütun sayısının bir eksiği — yanında hep bir kart boşluğu kalır */
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) 2fr;
}
.hg-card--facade .hg-card__media { height: 100%; }
.hg-card--facade .hg-card__content { padding: 28px 30px; }
.hg-card--facade .hg-card__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.hg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease var(--delay, 0ms), transform 700ms ease var(--delay, 0ms);
}
.hg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hg-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hg-card--facade { grid-column: span 2; }
}
@media (max-width: 850px) {
  .hg-services__heading { grid-template-columns: 1fr; gap: 22px; }
  .hg-services__intro { margin-left: 0; }
  .hg-card--facade { display: flex; }
  .hg-card--facade .hg-card__media { height: 225px; min-height: 225px; }
  .hg-card--facade .hg-card__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .hg-services--full { padding: 54px 18px 72px; }
  .hg-services--boxed { padding: 40px 12px; }
  .hg-services__box { padding: 30px 18px 36px; border-radius: 18px; }
  .hg-services__heading { margin-bottom: 30px; padding-bottom: 24px; }
  .hg-services__title { font-size: clamp(46px, 15vw, 66px); }
  .hg-services__intro { font-size: 15px; }
  .hg-services__grid { grid-template-columns: 1fr; gap: 14px; }
  .hg-card--facade { grid-column: span 1; }
  .hg-card--facade .hg-card__content { padding: 22px 20px 24px; }
  .hg-card--facade .hg-card__media { height: 200px; min-height: 200px; }
  .hg-card--facade .hg-card__list { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hg-services *,
  .hg-services *::before,
  .hg-services *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hg-reveal { opacity: 1; transform: none; }
}

/* ============================================================
   HİZMETLER FOTOĞRAF ODAKLI — services_photo
   ============================================================ */
.svm { background: var(--svm-bg, #F7F5F1); }
.svm.full  { padding: 96px 0 104px; }
.svm.boxed { padding: 70px 0; background: transparent; }
.svm-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.svm .boxed-inner {
  background: var(--svm-bg, #F7F5F1);
  border-radius: 24px;
  padding: 62px 40px 70px;
  box-shadow: 0 26px 58px rgba(20, 16, 10, .10);
}

.svm-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.svm-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.svm-label::before, .svm-label::after {
  content: ""; width: 26px; height: 1px;
  background: var(--color-primary); opacity: .7;
}
.svm-title {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 600;
  letter-spacing: -.02em; color: #16140f;
  margin-bottom: 14px;
}
.svm-intro { font-size: 15px; line-height: 27px; color: #6d685f; margin: 0; }

.svm-grid { display: grid; gap: 22px; }
.svm-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svm-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.svm-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.svm-card {
  position: relative; display: block;
  height: var(--svm-h, 460px);
  overflow: hidden; border-radius: 18px;
  background: #151412;
  box-shadow: 0 16px 40px rgba(20, 16, 10, .14);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.svm-card:hover { transform: translateY(-8px); box-shadow: 0 34px 70px rgba(20,16,10,.28); }

.svm-card .photo {
  position: absolute; inset: 0; display: block;
  background-size: cover; background-position: center;
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.svm-card:hover .photo { transform: scale(1.1); }

.svm-card .veil {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(to top,
    rgba(8,7,6,.94) 0%, rgba(8,7,6,.72) 28%, rgba(8,7,6,.22) 55%, rgba(8,7,6,.06) 100%);
  transition: opacity .45s ease;
}
.svm-card:hover .veil { opacity: .92; }

.svm-card .top {
  position: absolute; top: 22px; left: 24px; right: 24px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
}
.svm-num {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  color: rgba(255,255,255,.72);
}
.svm-plus {
  width: 38px; height: 38px; flex: 0 0 38px;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
  position: relative; transition: .4s ease;
}
.svm-plus::before, .svm-plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: #fff; transform: translate(-50%, -50%);
}
.svm-plus::before { width: 13px; height: 1px; }
.svm-plus::after  { width: 1px; height: 13px; }
.svm-card:hover .svm-plus {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: rotate(90deg);
}

.svm-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 28px 30px; }
.svm-rule {
  display: block; width: 44px; height: 2px;
  background: var(--color-primary);
  margin-bottom: 16px; transition: width .45s ease;
}
.svm-card:hover .svm-rule { width: 76px; }
.svm-h3 {
  display: block;
  font-family: var(--font-heading);
  font-size: 29px; font-weight: 600; line-height: 1.15; letter-spacing: -.02em;
  color: #fff; margin-bottom: 12px;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.svm-p {
  display: block;
  font-family: var(--font-text);
  font-size: 18px; line-height: 29px;
  color: rgba(255,255,255,.82);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease;
}
.svm-card:hover .svm-p { max-height: 300px; opacity: 1; }

/* Dokunmatik cihazlarda metin hep açık */
@media (hover: none) { .svm-p { max-height: 300px; opacity: 1; } }

@media (max-width: 1100px) {
  .svm-grid.cols-3, .svm-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .svm.full { padding: 60px 0 66px; }
  .svm-wrap { padding: 0 18px; }
  .svm .boxed-inner { padding: 34px 20px 40px; border-radius: 18px; }
  .svm-grid, .svm-grid.cols-2, .svm-grid.cols-3, .svm-grid.cols-4 { grid-template-columns: 1fr; }
  .svm-card { height: calc(var(--svm-h, 460px) - 60px); }
  .svm-title { font-size: 32px; }
  .svm-h3 { font-size: 26px; }
}

/* ============================================================
   DEĞER KARTLARI GÖRSELLİ — values_visual (animasyonlu)
   ============================================================ */
.vv { background: var(--vv-bg, #0E0D0C); overflow: hidden; }
.vv.full  { padding: 100px 0 108px; }
.vv.boxed { padding: 70px 0; background: transparent; }
.vv-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.vv .boxed-inner {
  background: var(--vv-bg, #0E0D0C);
  border-radius: 24px;
  padding: 64px 40px 72px;
  box-shadow: 0 30px 66px rgba(0, 0, 0, .28);
}

.vv-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.vv-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: 14px;
}
.vv-label::before, .vv-label::after {
  content: ""; width: 26px; height: 1px; background: var(--color-primary); opacity: .7;
}
.vv-title {
  font-family: var(--font-heading);
  font-size: 38px; font-weight: 600; letter-spacing: -.02em;
  color: #fff; margin-bottom: 12px;
}
.vv-intro { font-size: 15px; line-height: 27px; color: rgba(255,255,255,.62); margin: 0; }

.vv-grid { display: grid; gap: 22px; }

.vv-card {
  position: relative; display: block;
  height: var(--vv-h, 520px);
  overflow: hidden; border-radius: 16px;
  background: #100f0e;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.vv-card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px rgba(0,0,0,.5); }

.vv-photo {
  position: absolute; inset: 0; display: block;
  background-size: cover; background-position: center;
  transform: scale(1.03);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.vv-card:hover .vv-photo { transform: scale(1.12); filter: brightness(1.08); }

.vv-shade {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(to top,
    rgba(6,5,4,.96) 0%, rgba(6,5,4,.78) 26%, rgba(6,5,4,.28) 54%, rgba(6,5,4,0) 82%);
  transition: opacity .5s ease;
}
.vv-card:hover .vv-shade { opacity: .9; }

/* İnce altın çerçeve — hover'da belirir */
.vv-frame {
  position: absolute; inset: 14px; display: block;
  border: 1px solid rgba(206,158,81,0);
  border-radius: 8px; pointer-events: none;
  transition: border-color .5s ease, inset .5s ease;
}
.vv-card:hover .vv-frame { border-color: rgba(206,158,81,.55); }

.vv-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 30px 32px; display: block; }
.vv-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 600; letter-spacing: .24em;
  color: var(--color-primary); margin-bottom: 10px;
}
.vv-h3 {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px; font-weight: 600; line-height: 1.15; letter-spacing: -.02em;
  color: #fff; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.vv-rule {
  display: block; width: 40px; height: 2px;
  background: var(--color-primary);
  margin-bottom: 16px; transition: width .5s ease;
}
.vv-card:hover .vv-rule { width: 74px; }
.vv-p {
  display: block;
  font-family: var(--font-text);
  font-size: 14px; line-height: 25px;
  color: rgba(255,255,255,.8);
}

/* ---- Açılış animasyonları (görünüme girince) ---- */
.vv-anim { opacity: 0; will-change: transform, opacity; }
.vv.anim-rise .vv-anim { transform: translateY(46px); }
.vv.anim-zoom .vv-anim { transform: scale(.9); }
.vv.anim-flip .vv-anim { transform: perspective(1200px) rotateX(14deg) translateY(30px); transform-origin: bottom center; }
.vv.anim-none .vv-anim { opacity: 1; transform: none; }

.vv-anim.in {
  opacity: 1;
  transform: none;
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1) var(--vv-d, 0ms),
    transform 1s cubic-bezier(.2,.7,.2,1) var(--vv-d, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .vv-anim { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 1000px) {
  .vv-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 680px) {
  .vv.full { padding: 62px 0 68px; }
  .vv-wrap { padding: 0 18px; }
  .vv .boxed-inner { padding: 34px 18px 40px; border-radius: 18px; }
  .vv-grid { grid-template-columns: 1fr !important; }
  .vv-card { height: calc(var(--vv-h, 520px) - 90px); }
  .vv-title { font-size: 30px; }
  .vv-h3 { font-size: 26px; }
}

/* ============================================================
   PROJELER — Açık Tema (Liste / Filtre / Kartlar)
   ============================================================ */
.pg { background: var(--pg-bg, #FAF8F4); overflow: hidden; }
.pg.full  { padding: 100px 0 108px; }
.pg.boxed { padding: 70px 0; background: transparent; }
.pg-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.pg .boxed-inner {
  background: var(--pg-bg, #FAF8F4);
  border-radius: 26px;
  padding: 62px 44px 68px;
  box-shadow: 0 24px 60px rgba(28,28,28,.07);
}

.pg-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.pg-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-primary); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary, #CE9E51);
  margin-bottom: 16px;
}
.pg-label::before, .pg-label::after {
  content: ''; width: 34px; height: 1px; background: var(--color-primary, #CE9E51); opacity: .55;
}
.pg-title {
  font-family: var(--font-heading); font-size: 44px; line-height: 1.12; font-weight: 600;
  color: #1C1C1C; margin: 0 0 14px;
}
.pg-intro { font-size: 15px; line-height: 28px; color: #6B655C; margin: 0; }

/* --- Filtre sekmeleri --- */
.pg-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 auto 40px;
}
.pg-tab {
  appearance: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-primary); font-size: 14px; font-weight: 500; letter-spacing: .3px;
  color: #4A443C; background: #fff;
  border: 1px solid rgba(28,28,28,.10); border-radius: 999px;
  padding: 12px 24px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 6px 18px rgba(28,28,28,.05);
}
.pg-tab span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  font-size: 11px; font-weight: 600; border-radius: 999px;
  background: rgba(28,28,28,.07); color: #6B655C;
  transition: all .35s ease;
}
.pg-tab:hover { border-color: rgba(206,158,81,.55); color: #1C1C1C; transform: translateY(-2px); }
.pg-tab.is-active {
  background: #1C1C1C; color: #fff; border-color: #1C1C1C;
  box-shadow: 0 12px 26px rgba(28,28,28,.20);
}
.pg-tab.is-active span { background: var(--color-primary, #CE9E51); color: #1C1C1C; }

/* --- Izgara --- */
.pg-grid { display: grid; gap: 24px; }
.pg-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.pg-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pg-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.pg-card {
  position: relative; display: block; overflow: hidden;
  height: var(--pg-h, 420px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28,28,28,.07);
  box-shadow: 0 18px 44px rgba(28,28,28,.09);
  text-decoration: none;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s cubic-bezier(.2,.7,.2,1);
}
.pg-card:hover { transform: translateY(-10px); box-shadow: 0 40px 70px rgba(28,28,28,.16); }

.pg-photo {
  position: absolute; inset: 0; display: block;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.pg-card:hover .pg-photo { transform: scale(1.08); }

.pg-veil {
  position: absolute; left: 0; right: 0; bottom: 0; height: 74%;
  display: block; z-index: 1;
  background: linear-gradient(to top,
    #ffffff 0%, #ffffff 34%, rgba(255,255,255,.94) 52%, rgba(255,255,255,.70) 72%, rgba(255,255,255,0) 100%);
  transition: height .6s cubic-bezier(.2,.7,.2,1);
}
.pg-card:hover .pg-veil { height: 84%; }

.pg-badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-primary); font-size: 11px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: #1C1C1C; background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,28,28,.08);
  padding: 8px 14px; border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(28,28,28,.10);
}
.pg-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #6FAE7A;
}
.pg-badge.ongoing::before { background: var(--color-primary, #CE9E51); }
.pg-badge.ongoing { color: #8A6A2C; }

.pg-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: block; padding: 0 28px 26px;
}
.pg-cat {
  display: block; font-family: var(--font-primary); font-size: 11px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--color-primary, #CE9E51); margin-bottom: 9px;
}
.pg-name {
  display: block; font-family: var(--font-heading); font-size: 25px; line-height: 1.22;
  font-weight: 600; color: #1C1C1C; margin-bottom: 8px;
}
.pg-meta {
  display: block; font-family: var(--font-primary); font-size: 13.5px;
  color: #6B655C; letter-spacing: .3px;
}
.pg-more {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-primary); font-size: 13px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--color-primary, #CE9E51);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .55s cubic-bezier(.2,.7,.2,1), opacity .45s ease, margin-top .55s ease;
}
.pg-more i { transition: transform .45s ease; }
.pg-card:hover .pg-more { max-height: 40px; opacity: 1; margin-top: 14px; }
.pg-card:hover .pg-more i { transform: translateX(6px); }

.pg-empty {
  text-align: center; color: #8A857C; font-size: 15px; padding: 46px 0 10px; margin: 0;
}

/* Filtre gizleme + açılış animasyonu */
.pg-card.is-hidden { display: none; }
.pg-anim { opacity: 0; transform: translateY(38px); will-change: transform, opacity; }
.pg-anim.in {
  opacity: 1; transform: none;
  transition: opacity .85s cubic-bezier(.2,.7,.2,1) var(--pg-d, 0ms),
              transform .95s cubic-bezier(.2,.7,.2,1) var(--pg-d, 0ms);
}

@media (max-width: 1100px) {
  .pg-grid.cols-3, .pg-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pg-title { font-size: 36px; }
}
@media (max-width: 680px) {
  .pg.full { padding: 62px 0 68px; }
  .pg-wrap { padding: 0 18px; }
  .pg .boxed-inner { padding: 34px 18px 40px; border-radius: 18px; }
  .pg-grid { grid-template-columns: 1fr !important; }
  .pg-card { height: calc(var(--pg-h, 420px) - 40px); }
  .pg-title { font-size: 30px; }
  .pg-tab { padding: 10px 18px; font-size: 13px; }
}

/* ============================================================
   PROJE DETAY SAYFASI
   ============================================================ */
.pd-top { background: #FAF8F4; padding: 78px 0 46px; }
.pd-in { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.pd-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-primary); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #8A857C;
  text-decoration: none; margin-bottom: 22px; transition: color .3s ease, gap .3s ease;
}
.pd-back:hover { color: var(--color-primary, #CE9E51); gap: 13px; }
.pd-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 16px; }
.pd-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-primary); font-size: 11px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 8px 15px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(28,28,28,.09); color: #4A443C;
}
.pd-chip.status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #6FAE7A; }
.pd-chip.status.ongoing::before { background: var(--color-primary, #CE9E51); }
.pd-chip.cat { background: var(--color-primary, #CE9E51); border-color: var(--color-primary, #CE9E51); color: #1C1C1C; }
.pd-title {
  font-family: var(--font-heading); font-size: 54px; line-height: 1.08; font-weight: 600;
  color: #1C1C1C; margin: 0 0 18px; max-width: 900px;
}
.pd-facts { display: flex; flex-wrap: wrap; gap: 26px; }
.pd-facts span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-primary); font-size: 14.5px; color: #6B655C;
}
.pd-facts i { color: var(--color-primary, #CE9E51); }

.pd-cover {
  background: linear-gradient(to bottom, #FAF8F4 0px, #FAF8F4 150px, #fff 150px, #fff 100%);
  padding: 0 28px;
}
.pd-cover-in {
  max-width: 1180px; margin: 0 auto; height: 560px;
  border-radius: 26px; overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: 0 40px 80px rgba(28,28,28,.16);
}

.pd-main { background: #fff; padding: 76px 0 20px; }
.pd-main-in {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start;
}
.pd-sec-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-primary); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary, #CE9E51);
  margin-bottom: 14px;
}
.pd-sec-label::before { content: ''; width: 34px; height: 1px; background: var(--color-primary, #CE9E51); opacity: .55; }
.pd-h2 {
  font-family: var(--font-heading); font-size: 34px; line-height: 1.18; font-weight: 600;
  color: #1C1C1C; margin: 0 0 22px;
}
.pd-desc { font-family: var(--font-text); font-size: 16px; line-height: 31px; color: #4A443C; }
.pd-desc p { margin: 0 0 18px; }
.pd-desc h2, .pd-desc h3 { font-family: var(--font-heading); color: #1C1C1C; margin: 30px 0 12px; }
.pd-desc ul, .pd-desc ol { margin: 0 0 18px; padding-left: 20px; }
.pd-desc li { margin-bottom: 8px; }
.pd-desc img { max-width: 100%; height: auto; border-radius: 16px; }
.pd-desc a { color: var(--color-primary, #CE9E51); }

.pd-side { position: sticky; top: 110px; }
.pd-info {
  background: #FAF8F4; border: 1px solid rgba(28,28,28,.07);
  border-radius: 20px; padding: 28px 26px 12px;
  box-shadow: 0 18px 40px rgba(28,28,28,.07);
}
.pd-info h3 {
  font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: #1C1C1C;
  margin: 0 0 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(28,28,28,.09);
}
.pd-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px dashed rgba(28,28,28,.10); }
.pd-row:last-child { border-bottom: 0; }
.pd-row span { font-family: var(--font-primary); font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: #8A857C; }
.pd-row b { font-family: var(--font-primary); font-size: 14.5px; font-weight: 600; color: #1C1C1C; text-align: right; }
.pd-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; padding: 17px 22px; border-radius: 999px;
  background: #1C1C1C; color: #fff; text-decoration: none;
  font-family: var(--font-primary); font-size: 13px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  transition: background .4s ease, transform .4s ease, box-shadow .4s ease;
}
.pd-cta:hover { background: var(--color-primary, #CE9E51); color: #1C1C1C; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(206,158,81,.35); }

/* --- Yapılan iş kartları --- */
.pd-works { background: #fff; padding: 66px 0 10px; }
.pd-works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.pd-work {
  background: #FAF8F4; border: 1px solid rgba(28,28,28,.07);
  border-radius: 20px; padding: 32px 28px 30px;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease, background .4s ease;
}
.pd-work:hover { transform: translateY(-8px); box-shadow: 0 30px 55px rgba(28,28,28,.12); background: #fff; }
.pd-work-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px;
  background: rgba(206,158,81,.14); color: var(--color-primary, #CE9E51); font-size: 22px;
  transition: background .4s ease, color .4s ease;
}
.pd-work:hover .pd-work-ic { background: var(--color-primary, #CE9E51); color: #fff; }
.pd-work h4 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: #1C1C1C; margin: 0 0 10px; }
.pd-work p { font-family: var(--font-text); font-size: 14.5px; line-height: 26px; color: #6B655C; margin: 0; }

/* --- Masonry galeri --- */
.pd-gal { background: #fff; padding: 66px 0 90px; }
.pd-masonry { columns: 3; column-gap: 20px; margin-top: 30px; }
.pd-masonry figure { break-inside: avoid; margin: 0 0 20px; position: relative; cursor: zoom-in; overflow: hidden; border-radius: 18px; }
.pd-masonry img { width: 100%; display: block; border-radius: 18px; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.pd-masonry figure::after {
  content: '\f00e'; font-family: 'FontAwesome';
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; background: rgba(28,28,28,.35);
  opacity: 0; transition: opacity .45s ease; border-radius: 18px;
}
.pd-masonry figure:hover::after { opacity: 1; }
.pd-masonry figure:hover img { transform: scale(1.06); }

/* --- Lightbox --- */
.pd-lb {
  position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center;
  background: rgba(18,17,16,.94); padding: 40px;
}
.pd-lb.open { display: flex; }
.pd-lb img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: 0 40px 90px rgba(0,0,0,.6); }
.pd-lb button {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 20px; transition: background .3s ease;
}
.pd-lb button:hover { background: var(--color-primary, #CE9E51); border-color: transparent; color: #1C1C1C; }
.pd-lb .lb-prev { left: 26px; }
.pd-lb .lb-next { right: 26px; }
.pd-lb .lb-close { top: 26px; right: 26px; transform: none; }

/* --- Diğer projeler --- */
.pd-more-sec { background: #FAF8F4; padding: 76px 0 90px; }

@media (max-width: 1000px) {
  .pd-main-in { grid-template-columns: 1fr; gap: 42px; }
  .pd-side { position: static; }
  .pd-works-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-masonry { columns: 2; }
  .pd-cover-in { height: 400px; }
  .pd-title { font-size: 40px; }
}
@media (max-width: 680px) {
  .pd-top { padding: 48px 0 30px; }
  .pd-in, .pd-main-in { padding: 0 18px; }
  .pd-cover { padding: 0 18px; }
  .pd-cover-in { height: 250px; border-radius: 18px; }
  .pd-title { font-size: 30px; }
  .pd-works-grid { grid-template-columns: 1fr; }
  .pd-masonry { columns: 1; }
  .pd-h2 { font-size: 27px; }
  .pd-lb { padding: 16px; }
  .pd-lb .lb-prev { left: 8px; }
  .pd-lb .lb-next { right: 8px; }
}

/* Hizmet kartı bir bağlantıya dönüştüğünde (kategoriye ait projeler sayfası) */
/* Kart bir bağlantıya dönüştüğünde yalnızca metin stilini sıfırla —
   display'e dokunma: .hg-card (flex) ve .hg-card--facade (grid) düzenleri korunmalı */
a.hg-card { text-decoration: none; color: inherit; }
a.hg-card .hg-card__title { transition: color .35s ease; }
a.hg-card:hover .hg-card__title { color: var(--color-primary, #CE9E51); }

/* Kategori proje listesi sayfasındaki geri bağlantısı */
.pg-head .pd-back { display: flex; justify-content: center; margin-bottom: 20px; }
.pg-head h1.pg-title { font-size: 44px; line-height: 1.12; }
@media (max-width: 1100px) { .pg-head h1.pg-title { font-size: 36px; } }
@media (max-width: 680px)  { .pg-head h1.pg-title { font-size: 30px; } }

/* Hizmet kapsülünden ilgili projelere geçiş bağlantısı */
.jr-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 12px 24px; border-radius: 999px;
  background: transparent; border: 1px solid rgba(28,28,28,.16);
  font-family: var(--font-primary); font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: #1C1C1C; text-decoration: none;
  transition: background .4s ease, border-color .4s ease, color .4s ease, transform .4s ease;
}
.jr-link i { transition: transform .4s ease; }
.jr-link:hover {
  background: var(--color-primary, #CE9E51); border-color: var(--color-primary, #CE9E51);
  color: #1C1C1C; transform: translateY(-2px);
}
.jr-link:hover i { transform: translateX(6px); }

/* ============================================================
   GELİŞMİŞ BAŞLIK KONTEYNERİ — title_block (başlık + ayırıcı + açıklama)
   ============================================================ */
.tb-sec.full  { padding: var(--tb-pad, 80px) 0; }
.tb-sec.boxed { padding: var(--tb-pad, 80px) 0; background: transparent; }
.tb-wrap { max-width: 880px; margin: 0 auto; padding: 0 28px; text-align: center; }
.tb-sec.align-left .tb-wrap { text-align: left; }
.tb-box {
  border-radius: 26px;
  padding: 56px 40px;
  box-shadow: 0 24px 60px rgba(28,28,28,.07);
}

.tb-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-primary); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary, #CE9E51);
  margin-bottom: 16px;
}
.tb-title {
  font-family: var(--font-heading);
  font-size: var(--tb-tfs, 44px);
  font-weight: var(--tb-tfw, 600);
  color: var(--tb-tcolor, #1C1C1C);
  line-height: 1.16;
  margin: 0;
}

.tb-sep { margin: 24px 0; }
.tb-sep.sep-line {
  width: 68px; height: 3px; border-radius: 3px;
  background: var(--tb-sepcolor, #CE9E51);
  margin-left: auto; margin-right: auto;
}
.tb-sec.align-left .tb-sep.sep-line { margin-left: 0; }
.tb-sep.sep-linedot {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.tb-sec.align-left .tb-sep.sep-linedot { justify-content: flex-start; }
.tb-sep.sep-linedot span { width: 36px; height: 1px; background: var(--tb-sepcolor, #CE9E51); opacity: .55; }
.tb-sep.sep-linedot i {
  width: 8px; height: 8px; flex: 0 0 auto; display: inline-block;
  background: var(--tb-sepcolor, #CE9E51); transform: rotate(45deg);
}
.tb-sep.sep-icon { display: flex; align-items: center; justify-content: center; }
.tb-sec.align-left .tb-sep.sep-icon { justify-content: flex-start; }
.tb-sep.sep-icon i { font-size: 21px; color: var(--tb-sepcolor, #CE9E51); }

.tb-intro {
  font-family: var(--font-text);
  font-size: var(--tb-ifs, 16px);
  line-height: 1.75;
  color: var(--tb-icolor, #6B655C);
  max-width: 640px; margin: 0 auto;
}
.tb-sec.align-left .tb-intro { margin-left: 0; }

/* --- Açılış animasyonu --- */
.tb-anim { opacity: 0; transform: translateY(24px); will-change: transform, opacity; }
.tb-anim.in {
  opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.2,.7,.2,1) var(--tb-d, 0ms),
              transform .9s cubic-bezier(.2,.7,.2,1) var(--tb-d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .tb-anim { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (max-width: 680px) {
  .tb-title { font-size: calc(var(--tb-tfs, 44px) * 0.72); }
  .tb-box { padding: 34px 20px; border-radius: 18px; }
  .tb-wrap { padding: 0 18px; }
}

/* ============================================================
   GÖRSEL GALERİSİ — gallery_grid (grid + masonry)
   ============================================================ */
.gg-sec { overflow: hidden; }
.gg-sec.full  { padding: var(--gg-pad, 90px) 0; }
.gg-sec.boxed { padding: var(--gg-pad, 90px) 0; background: transparent; }
.gg-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.gg-box {
  border-radius: 26px;
  padding: 54px 40px 46px;
  box-shadow: 0 24px 60px rgba(28,28,28,.07);
}

.gg-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.gg-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-primary); font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary, #CE9E51);
  margin-bottom: 14px;
}
.gg-label::before, .gg-label::after {
  content: ''; width: 34px; height: 1px; background: var(--color-primary, #CE9E51); opacity: .55;
}
.gg-title {
  font-family: var(--font-heading); font-size: 40px; line-height: 1.14; font-weight: 600;
  color: #1C1C1C; margin: 0 0 14px;
}
.gg-intro { font-size: 15px; line-height: 28px; color: #6B655C; margin: 0; }

/* --- Etiket filtre sekmeleri --- */
.gg-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 auto 36px;
}
.gg-tab {
  appearance: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-primary); font-size: 14px; font-weight: 500; letter-spacing: .3px;
  color: #4A443C; background: #fff;
  border: 1px solid rgba(28,28,28,.10); border-radius: 999px;
  padding: 12px 24px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 6px 18px rgba(28,28,28,.05);
}
.gg-tab span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  font-size: 11px; font-weight: 600; border-radius: 999px;
  background: rgba(28,28,28,.07); color: #6B655C;
  transition: all .35s ease;
}
.gg-tab:hover { border-color: rgba(206,158,81,.55); color: #1C1C1C; transform: translateY(-2px); }
.gg-tab.is-active {
  background: #1C1C1C; color: #fff; border-color: #1C1C1C;
  box-shadow: 0 12px 26px rgba(28,28,28,.20);
}
.gg-tab.is-active span { background: var(--color-primary, #CE9E51); color: #1C1C1C; }
.gg-x {
  font-size: 11px; margin-left: 2px;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .3s ease, opacity .3s ease, margin-left .3s ease;
}
.gg-tab.is-active .gg-x { max-width: 16px; opacity: .75; margin-left: 6px; }
.gg-tab.is-active:hover .gg-x { opacity: 1; }
.gg-item.is-hidden { display: none; }

/* --- Ortak öğe --- */
.gg-item {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--gg-r, 16px);
  background: #efece6;
}
.gg-item img { display: block; width: 100%; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.gg-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 20px 16px;
  font-family: var(--font-primary); font-size: 13.5px; font-weight: 500; color: #fff;
  background: linear-gradient(to top, rgba(18,17,16,.82), rgba(18,17,16,0));
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.gg-item:hover img { transform: scale(1.06); }
.gg-item:hover figcaption { opacity: 1; transform: none; }

/* Büyütme imleci + hover büyüteci */
.gg-zoom .gg-item { cursor: zoom-in; }
.gg-zoom .gg-item::after {
  content: '\f00e'; font-family: 'FontAwesome';
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; background: rgba(28,28,28,.28);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.gg-zoom .gg-item:hover::after { opacity: 1; }

/* --- Masonry: CSS sütunları, görsel kendi boyunu korur --- */
.gg-masonry { column-gap: var(--gg-gap, 18px); }
.gg-masonry.cols-2 { columns: 2; }
.gg-masonry.cols-3 { columns: 3; }
.gg-masonry.cols-4 { columns: 4; }
.gg-masonry.cols-5 { columns: 5; }
.gg-masonry .gg-item { break-inside: avoid; margin-bottom: var(--gg-gap, 18px); }

/* --- Grid: hepsi aynı oranda kırpılır --- */
.gg-grid { display: grid; gap: var(--gg-gap, 18px); }
.gg-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gg-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gg-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gg-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.gg-grid .gg-item { aspect-ratio: var(--gg-ratio, 4 / 3); }
.gg-grid .gg-item img { width: 100%; height: 100%; object-fit: cover; }

/* --- Açılış animasyonu --- */
.gg-anim { opacity: 0; transform: translateY(26px); will-change: transform, opacity; }
.gg-anim.in {
  opacity: 1; transform: none;
  transition: opacity .8s cubic-bezier(.2,.7,.2,1) var(--gg-d, 0ms),
              transform .9s cubic-bezier(.2,.7,.2,1) var(--gg-d, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .gg-anim { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (hover: none) { .gg-item figcaption { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .gg-masonry.cols-4, .gg-masonry.cols-5 { columns: 3; }
  .gg-grid.cols-4, .gg-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
  .gg-title { font-size: 34px; }
}
@media (max-width: 820px) {
  .gg-masonry.cols-3, .gg-masonry.cols-4, .gg-masonry.cols-5 { columns: 2; }
  .gg-grid.cols-3, .gg-grid.cols-4, .gg-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gg-wrap { padding: 0 18px; }
  .gg-box { padding: 30px 18px 26px; border-radius: 18px; }
  .gg-masonry { columns: 1 !important; }
  .gg-grid { grid-template-columns: 1fr !important; }
  .gg-title { font-size: 28px; }
  .gg-tab { padding: 10px 18px; font-size: 13px; }
}

/* Proje detay sayfası galeriyi aynı bileşenle kullanır */
.pd-gal .gg { margin-top: 30px; }

/* Kart rozeti: Tasarım altın, Uygulama yeşil */
.pg-badge.design::before { background: var(--color-primary, #CE9E51); }
.pg-badge.design { color: #8A6A2C; }

/* Sadeleşen proje detay üst bloğu */
.pd-top { padding-bottom: 10px; }
.pd-lead {
  max-width: 780px; margin-top: 18px;
  font-family: var(--font-text); font-size: 16px; line-height: 30px; color: #4A443C;
}
.pd-lead p { margin: 0 0 16px; }
.pd-lead p:last-child { margin-bottom: 0; }
.pd-lead a { color: var(--color-primary, #CE9E51); }
.pd-gal { background: #fff; padding: 46px 0 90px; }
.pd-chip.status.design::before { background: var(--color-primary, #CE9E51); }

/* ============================================================
   PROJE KARTI — yalın görsel (isim/etiket yok)
   ============================================================ */
.pg-card.pg-plain { background: #e9e5dd; }
.pg-card.pg-plain .pg-photo { transition: transform 1.3s cubic-bezier(.2,.7,.2,1), filter .6s ease; }
.pg-card.pg-plain::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(24,22,20,.42) 0%, rgba(24,22,20,0) 46%);
  opacity: 0; transition: opacity .55s ease, background .55s ease;
}
.pg-card.pg-plain:hover::after { opacity: 1; }
/* Başlık gösteriliyorsa karartma her zaman açık, üzerine gelince koyulaşır */
.pg-card.pg-plain.has-name::after {
  opacity: 1;
  background: linear-gradient(to top, rgba(24,22,20,.66) 0%, rgba(24,22,20,.18) 38%, rgba(24,22,20,0) 62%);
}
.pg-card.pg-plain.has-name:hover::after {
  background: linear-gradient(to top, rgba(24,22,20,.80) 0%, rgba(24,22,20,.34) 46%, rgba(24,22,20,.05) 75%);
}
.pg-card.pg-plain:hover .pg-photo { transform: scale(1.07); }

/* Alt şerit: proje adı + açılış oku */
.pg-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  padding: 0 24px 22px;
}
.pg-on-name {
  font-family: var(--font-heading);
  font-size: 24px; line-height: 1.2; font-weight: 600; letter-spacing: -.01em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  transform: translateY(6px);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.pg-card.pg-plain:hover .pg-on-name { transform: none; }

.pg-open {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #1C1C1C; font-size: 15px;
  opacity: 0; transform: translateY(10px) scale(.9);
  transition: opacity .45s ease, transform .5s cubic-bezier(.2,.7,.2,1), background .35s ease, color .35s ease;
  box-shadow: 0 10px 26px rgba(24,22,20,.24);
}
.pg-card.pg-plain:hover .pg-open { opacity: 1; transform: none; }
.pg-card.pg-plain:hover .pg-open:hover { background: var(--color-primary, #CE9E51); }
@media (hover: none) {
  .pg-open { opacity: 1; transform: none; }
  .pg-on-name { transform: none; }
}
@media (max-width: 680px) {
  .pg-bar { padding: 0 18px 18px; }
  .pg-on-name { font-size: 20px; }
}

/* Seçili filtreyi kaldırma işareti */
.pg-x {
  font-size: 11px; margin-left: 2px;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .3s ease, opacity .3s ease, margin-left .3s ease;
}
.pg-tab.is-active .pg-x { max-width: 16px; opacity: .75; margin-left: 6px; }
.pg-tab.is-active:hover .pg-x { opacity: 1; }
