/* ============================================================
   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); }

/* ============================================================
   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; }
.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; }
}
.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(--color-body-text); font-size: 14.5px; line-height: 27px; }
.ti-text p { margin: 0 0 18px; }
.ti-text strong, .ti-text b { color: #222; }
.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: 15.5px;
  line-height: 30px;
  color: #55524c;
}
.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; }
.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(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1000px;
}

.hg-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  min-width: 0;
  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: 144px;
  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;
  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 3;
  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: 190px; min-height: 190px; }
  .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: 170px; min-height: 170px; }
  .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; }
}
