/* ═══════════════════════════════════════════════════════════════
   Alya Interiors — Ana Tema CSS  v3
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ── CSS Değişkenleri ─────────────────────────────────────────── */
:root {
  --cream:       #FAF8F5;
  --cream-dark:  #F2EDE6;
  --white:       #FFFFFF;
  --gold:        #C4A265;
  --gold-dark:   #A8864A;
  --gold-light:  #E2C99A;
  --charcoal:    #1A1A1A;
  --dark:        #0D0D0D;
  --mid:         #3A3A3A;
  --gray:        #6B6B6B;
  --light-gray:  #E8E4DF;
  --border:      #DED9D2;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Tipografi ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
p { color: var(--gray); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  flex-shrink: 0;
}
.section-label::before { width: 32px; }
.section-label::after  { width: 32px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 700; }

.section-desc {
  font-size: .96rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.9;
  margin: 0 auto 0 0;
}
.text-center .section-desc { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0 32px;
}
.divider-center { margin: 20px auto 32px; }

/* ── Reveal animasyon sınıfları ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-48px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal-right { opacity: 0; transform: translateX( 48px); transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Butonlar ─────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(220,188,120,.92) 0%, var(--gold) 50%, rgba(196,162,101,.95) 100%);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  color: var(--white);
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 20px rgba(196,162,101,.35), inset 0 1px 0 rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(196,162,101,.5), inset 0 1px 0 rgba(255,255,255,.2); }
.btn-gold:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: var(--charcoal);
  padding: 13px 33px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(26,26,26,.25);
  box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,26,26,.2); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  color: var(--white);
  padding: 13px 33px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.3);
  box-shadow: 0 4px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.25); }

/* ── Navbar ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.transparent { background: transparent; }
#navbar.scrolled    {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

.nav-main { padding: 22px 0; transition: padding var(--transition); }
#navbar.scrolled .nav-main { padding: 14px 0; }

.nav-logo img { height: 64px; width: auto; transition: var(--transition); }
#navbar.scrolled .nav-logo img { height: 52px; }
.nav-logo .logo-dark  { display: block; }
.nav-logo .logo-light { display: none; }
#navbar.transparent .nav-logo .logo-dark  { display: none; }
#navbar.transparent .nav-logo .logo-light { display: block; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 16px;
  font-size: .845rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: .04em;
  transition: color .2s;
  white-space: nowrap;
}
#navbar.transparent .nav-menu > li > a { color: rgba(255,255,255,.9); }
#navbar.transparent .nav-menu > li > a:hover { color: var(--white); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); }
.nav-menu > li > a.active { font-weight: 600; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.05);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 100;
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 11px 22px;
  font-size: .845rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s, padding-left .2s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { color: var(--gold); background: var(--cream); padding-left: 28px; }

/* CTA button */
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  letter-spacing: .04em;
  transition: background var(--transition) !important, transform var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; transform: translateY(-2px) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}
#navbar.transparent .nav-toggle span { background: var(--white); }

/* ── Mobile Nav ───────────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 1000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: -100%;
  width: min(320px, 90vw);
  height: 100dvh;
  background: linear-gradient(170deg, #0F0E0C 0%, #1a1814 65%, #0D0D0B 100%);
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
  transition: left .42s cubic-bezier(.4,0,.2,1);
  box-shadow: 16px 0 80px rgba(0,0,0,.6);
  scrollbar-width: none;
}
.nav-mobile::-webkit-scrollbar { display: none; }
.nav-mobile.open { left: 0; }
.nav-mobile::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

/* Header */
.nm-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(196,162,101,.15);
  gap: 12px;
}
.nm-logo-link { display: flex; align-items: center; flex: 1; min-width: 0; }
.nm-logo {
  display: block !important;
  height: 40px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  opacity: .92;
}

/* Kapat */
.nav-close {
  -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .25s;
}
.nav-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: rotate(90deg); }

/* Link listesi */
.nm-links { padding: 6px 0 16px; }

/* Ortak link & buton stili */
.nm-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 24px;
  font-size: .95rem;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.78);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.055);
  border-radius: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.nm-link:hover,
.nm-link.is-active { color: var(--gold-light); background: rgba(196,162,101,.07); }
.nm-link:focus { outline: none; }

/* İkon */
.nm-icon {
  width: 18px;
  font-size: .85rem;
  color: var(--gold);
  opacity: .65;
  flex-shrink: 0;
  text-align: center;
}
.nm-link:hover .nm-icon,
.nm-link.is-active .nm-icon { opacity: 1; }

/* Chevron */
.nm-chevron {
  margin-left: auto;
  font-size: .68rem;
  color: var(--gold);
  opacity: .55;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.nm-accordion-btn[aria-expanded="true"] .nm-chevron { transform: rotate(180deg); opacity: .9; }
.nm-accordion-btn[aria-expanded="true"] { color: var(--gold-light); background: rgba(196,162,101,.07); }
.nm-accordion-btn[aria-expanded="true"] .nm-icon { opacity: 1; }

/* Alt menü wrapper (accordion) */
.nm-sub-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.nm-sub-wrap.is-open { max-height: 400px; }

/* Alt menü içi */
.nm-sub {
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(196,162,101,.1);
  padding: 4px 0 6px;
}
.nm-sub-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 46px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  border: none;
}
.nm-sub-icon {
  width: 16px;
  font-size: .78rem;
  color: var(--gold);
  opacity: .55;
  flex-shrink: 0;
  text-align: center;
}
.nm-sub-link:hover { color: var(--gold-light); padding-left: 52px; }
.nm-sub-link:hover .nm-sub-icon { opacity: 1; }
.nm-sub-link.is-active { color: var(--gold); }

/* Telefon kutusu */
.nm-footer {
  margin: 12px 20px 28px;
  padding: 16px 18px;
  border: 1px solid rgba(196,162,101,.2);
  border-radius: 10px;
  background: rgba(196,162,101,.04);
}
.nm-footer-label {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 8px;
}
.nm-footer-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.nm-footer-tel:hover { color: var(--white); }
.nm-footer-tel i { font-size: .95rem; }

/* ── Dil Seçici ───────────────────────────────────────────────── */
.nav-lang { display: flex; align-items: center; gap: 4px; margin-left: 10px; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; border-radius: 6px;
  padding: 5px 9px; cursor: pointer;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  white-space: nowrap; line-height: 1;
  transition: color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.lang-flag {
  display: inline-block;
  width: 18px; height: 13px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.lang-btn:hover { color: var(--gold-light); background: rgba(196,162,101,.1); }
.lang-btn.is-active { color: var(--gold-light); background: rgba(196,162,101,.12); }
#navbar.scrolled .lang-btn { color: rgba(26,26,26,.4); }
#navbar.scrolled .lang-btn:hover { color: var(--gold-dark); background: rgba(196,162,101,.08); }
#navbar.scrolled .lang-btn.is-active { color: var(--gold-dark); background: rgba(196,162,101,.1); }

/* Google Translate araç çubuğunu gizle */
.skiptranslate, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ── Hero Slider ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform: translateY(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,.78) 0%,
    rgba(8,8,8,.4) 55%,
    rgba(8,8,8,.18) 100%
  );
}
/* Alttan fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  z-index: 3;
  text-align: center;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 760px;
  letter-spacing: -0.04em;
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 700; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 42px;
}
.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: .4; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-dots {
  position: absolute;
  bottom: 48px; right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 4;
}
.hero-dot {
  width: 2px; height: 28px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .3s, height .3s;
  border: none;
  border-radius: 2px;
}
.hero-dot.active { background: var(--gold); height: 44px; }

/* ── Genel Section ────────────────────────────────────────────── */
.section { padding: 110px 0; }
.section-sm { padding: 65px 0; }
.section-dark { background: var(--charcoal); }
.section-cream { background: #EEEBE4; }
.section-dark .section-title,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .section-desc,
.section-dark p { color: rgba(255,255,255,.6); }

/* Section header merkezi blok */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header .divider { margin: 20px auto 0; }

/* ── Hizmetler ────────────────────────────────────────────────── */
.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.hizmet-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--charcoal) center / cover no-repeat;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s;
}
.hizmet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}
.hizmet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.88) 100%
  );
  transition: opacity .45s;
  z-index: 1;
}
.hizmet-card:hover .hizmet-card-overlay {
  opacity: .85;
}

/* Glass panel */
.hizmet-glass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  padding: 26px 28px 30px;
  z-index: 2;
  transition: background .35s, padding .35s;
}
.hizmet-card:hover .hizmet-glass {
  background: rgba(255,255,255,.16);
  padding-bottom: 36px;
}

.hizmet-icon {
  width: 52px; height: 52px;
  background: rgba(196,162,101,.25);
  border: 1px solid rgba(196,162,101,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  transition: background .35s, transform .35s;
}
.hizmet-card:hover .hizmet-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(-6deg) scale(1.1);
  border-color: var(--gold);
}
.hizmet-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hizmet-card p {
  font-size: .845rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}
.hizmet-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s, color .2s;
}
.hizmet-link:hover { gap: 16px; color: var(--white); }

/* ── Projeler ─────────────────────────────────────────────────── */
.proje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.proje-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.proje-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.proje-card:hover img { transform: scale(1.08); }
.proje-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.95) 0%, rgba(8,8,8,.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}
.proje-card:hover .proje-overlay { opacity: 1; transform: translateY(0); }
.proje-overlay .badge {
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 12px;
  width: fit-content;
}
.proje-overlay h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.proje-overlay span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* Proje filtre */
.proje-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 24px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

/* ── İstatistikler ────────────────────────────────────────────── */
.istatik-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.istatik-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 15% 50%, rgba(196,162,101,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(196,162,101,.06) 0%, transparent 70%);
}
/* Dekoratif çizgiler */
.istatik-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,.4), transparent);
}
.istatik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.istatik-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.istatik-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.istatik-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: .8;
}
.istatik-deger {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.istatik-adi {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Yorumlar ─────────────────────────────────────────────────── */
.yorum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 0;
}
.yorum-card {
  background: var(--white);
  padding: 40px 34px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .4s, transform .4s;
}
.yorum-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.yorum-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  transform: translateY(-6px);
}
.yorum-card:hover::before { transform: scaleX(1); }
.yorum-quote {
  font-family: serif;
  font-size: 5.5rem;
  line-height: .4;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
  opacity: .5;
}
.yorum-text {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 28px;
  font-style: italic;
}
.yorum-author { display: flex; align-items: center; gap: 14px; }
.yorum-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-dark);
  flex-shrink: 0;
  border: 2px solid var(--gold-light);
}
.yorum-adi { font-weight: 700; font-size: .9rem; color: var(--charcoal); margin-bottom: 3px; }
.yorum-unvan { font-size: .77rem; color: var(--gray); }
.yorum-stars { color: var(--gold); font-size: .88rem; margin-bottom: 8px; }

/* ── Blog ─────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 0;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,.1);
}
.blog-img-wrap {
  overflow: hidden;
  position: relative;
}
.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .4s;
}
.blog-card:hover .blog-img-wrap::after { background: rgba(0,0,0,.12); }
.blog-img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-body { padding: 30px; }
.blog-meta {
  font-size: .76rem;
  color: var(--gray);
  margin-bottom: 12px;
  display: flex; gap: 14px;
  align-items: center;
}
.blog-meta .tag {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.blog-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { font-size: .875rem; line-height: 1.75; margin-bottom: 20px; }
.blog-link {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.blog-card:hover .blog-link { gap: 14px; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: #0A0A0A;
  color: rgba(255,255,255,.6);
  padding: 96px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img {
  height: 50px; width: auto;
  margin-bottom: 24px;
  filter: brightness(1);
}
.footer-about {
  font-size: .875rem;
  line-height: 1.85;
  color: rgba(255,255,255,.5);
  max-width: 290px;
}
.footer-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.07);
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: .875rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: .9rem;
}
.footer-contact a, .footer-contact span {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}

/* ── Floating butonlar ────────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 32px; right: 26px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.float-btn:hover { transform: scale(1.13) translateY(-3px); }

/* Telefon — altın neon */
.float-phone {
  background: rgba(196,162,101,.22);
  color: #f0d898;
  box-shadow: 0 0 10px rgba(196,162,101,.55), 0 0 30px rgba(196,162,101,.28), inset 0 1px 0 rgba(255,255,255,.15);
  border-color: rgba(196,162,101,.55);
}
.float-phone:hover {
  box-shadow: 0 0 18px rgba(196,162,101,.95), 0 0 52px rgba(196,162,101,.5), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
}

/* WhatsApp — yeşil neon */
.float-whatsapp {
  background: rgba(37,211,102,.18);
  color: #4fffaa;
  box-shadow: 0 0 10px rgba(37,211,102,.55), 0 0 30px rgba(37,211,102,.25), inset 0 1px 0 rgba(255,255,255,.12);
  border-color: rgba(37,211,102,.5);
}
.float-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37,211,102,.95), 0 0 56px rgba(37,211,102,.45), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
}

/* Instagram — pembe neon */
.float-instagram {
  background: rgba(220,39,103,.18);
  color: #ff6eb3;
  box-shadow: 0 0 10px rgba(220,39,103,.55), 0 0 30px rgba(188,24,136,.25), inset 0 1px 0 rgba(255,255,255,.12);
  border-color: rgba(220,39,103,.5);
}
.float-instagram:hover {
  box-shadow: 0 0 20px rgba(220,39,103,.95), 0 0 56px rgba(188,24,136,.45), inset 0 1px 0 rgba(255,255,255,.2);
  color: #fff;
}

/* Yukarı git */
.float-top {
  background: rgba(20,20,20,.45);
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 0 8px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s, visibility .3s, transform .25s, box-shadow .25s;
}
.float-top.visible { opacity: 1; visibility: visible; pointer-events: all; }
.float-top:hover {
  color: #fff;
  box-shadow: 0 0 16px rgba(255,255,255,.28), inset 0 1px 0 rgba(255,255,255,.15);
}

/* ── Breadcrumb / Page Header ─────────────────────────────────── */
.page-header {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background: var(--charcoal);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 110%;
  opacity: .22;
  will-change: transform;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,.82), rgba(8,8,8,.55));
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 800;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb-nav a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-nav .sep { color: var(--gold); font-size: .62rem; }
.breadcrumb-nav .current { color: var(--gold-light); }

/* ── Hizmet Detay ─────────────────────────────────────────────── */
.hizmet-detail-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  margin-bottom: 40px;
}
.hizmet-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: .95rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-hizmet-list li { border-bottom: 1px solid var(--border); }
.sidebar-hizmet-list li:last-child { border: none; }
.sidebar-hizmet-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: .875rem;
  color: var(--gray);
  transition: color .2s;
}
.sidebar-hizmet-list a:hover, .sidebar-hizmet-list a.active { color: var(--gold); }
.sidebar-hizmet-list a.active { font-weight: 600; }
.sidebar-contact { background: var(--charcoal); border: none; }
.sidebar-contact h4 { color: var(--white); border-color: var(--gold); }
.sidebar-contact p { color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: 12px; }
.sidebar-contact a {
  display: flex; gap: 10px; align-items: center;
  color: var(--gold-light);
  font-size: .95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ── Galeri ───────────────────────────────────────────────────── */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.galeri-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.galeri-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.galeri-item:hover img { transform: scale(1.08); }
.galeri-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-overlay i { font-size: 2rem; color: var(--white); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.96);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 22px; right: 30px;
  color: var(--white); font-size: 2rem;
  cursor: pointer; background: none; border: none;
  transition: color .2s, transform .2s;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ── İletişim ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 60px;
}
.contact-info-item { display: flex; gap: 20px; margin-bottom: 36px; }
.contact-icon {
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h5 {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-item p, .contact-info-item a { font-size: .9rem; color: var(--gray); }
.contact-form .form-group { margin-bottom: 22px; }
.contact-form label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--charcoal);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,162,101,.1);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.form-alert {
  padding: 14px 20px;
  font-size: .875rem;
  display: none;
  margin-top: 16px;
}
.form-alert.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; display: block; }
.form-alert.error   { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; display: block; }

/* ── SSS ──────────────────────────────────────────────────────── */
.sss-list { margin-top: 48px; }
.sss-item {
  border: 1px solid var(--border);
  margin-bottom: 10px;
  background: var(--white);
}
.sss-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  background: none; border: none;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.sss-question:hover, .sss-question.open { color: var(--gold); }
.sss-question i { flex-shrink: 0; transition: transform .3s; font-size: .8rem; color: var(--gold); }
.sss-question.open i { transform: rotate(180deg); }
.sss-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 26px;
}
.sss-answer.open { max-height: 500px; padding: 0 26px 22px; }
.sss-answer p { font-size: .9rem; line-height: 1.85; color: var(--gray); }

/* ── Admin Panel ──────────────────────────────────────────────── */
.admin-body { background: #F5F5F5; font-family: var(--font-body); }
.admin-sidebar {
  width: 260px;
  background: var(--charcoal);
  height: 100vh;
  position: fixed;
  top: 0; left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.admin-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.admin-logo img { height: 36px; }
.admin-nav {
  padding: 16px 0;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.admin-nav-title {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  padding: 12px 20px 6px;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: .845rem;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,.06);
  color: var(--white);
}
.admin-nav a.active { border-left: 2px solid var(--gold); }
.admin-nav a i { width: 18px; font-size: .9rem; color: rgba(255,255,255,.35); }
.admin-nav a:hover i, .admin-nav a.active i { color: var(--gold); }

.admin-main { margin-left: 260px; min-height: 100dvh; }
.admin-topbar {
  background: var(--white);
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.admin-topbar h1 { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }
.admin-content { padding: 28px; }
.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.admin-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.admin-form .form-group { margin-bottom: 20px; }
.admin-form label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
}
.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="number"],
.admin-form input[type="url"],
.admin-form select,
.admin-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  color: var(--charcoal);
  transition: border-color .2s;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus { border-color: var(--gold); }
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--cream-dark);
  padding: 11px 16px;
  font-size: .78rem;
  font-weight: 700;
  text-align: left;
  color: var(--mid);
  border-bottom: 2px solid var(--border);
}
.admin-table td {
  padding: 12px 16px;
  font-size: .855rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:hover td { background: var(--cream); }
.admin-table img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius); }
.btn-sm { padding: 6px 14px; font-size: .78rem; }
.btn-danger { background: #e53935; color: var(--white); border: none; cursor: pointer; transition: background .2s; display: inline-flex; align-items: center; }
.btn-danger:hover { background: #c62828; }
.btn-edit { background: var(--gold); color: var(--white); border: none; cursor: pointer; transition: background .2s; display: inline-flex; align-items: center; }
.btn-edit:hover { background: var(--gold-dark); }
.badge-aktif { background: #E8F5E9; color: #2E7D32; padding: 3px 10px; font-size: .72rem; font-weight: 600; border-radius: 20px; }
.badge-pasif { background: #FFEBEE; color: #C62828; padding: 3px 10px; font-size: .72rem; font-weight: 600; border-radius: 20px; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.dash-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.dash-stat-icon {
  width: 48px; height: 48px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.dash-stat-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.dash-stat-lbl { font-size: .78rem; color: var(--gray); margin-top: 4px; }

/* ── Team (Ekibimiz) ──────────────────────────────────────────── */
.team-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .35s, box-shadow .35s;
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.team-photo { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-avatar-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #fff;
  font-size: 3rem; font-family: var(--font-display);
}
.team-info { padding: 22px 18px 26px; }
.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.team-title { font-size: .82rem; color: var(--gold); font-weight: 500; letter-spacing: .06em; margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 12px; }
.team-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); font-size: .875rem;
  transition: background .2s, color .2s;
}
.team-social a:hover { background: var(--gold); color: #fff; }

/* ── Yardımcı ─────────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.bg-gold   { background: var(--gold) !important; }
.anim-up   { opacity: 0; transform: translateY(40px); }
.anim-done { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none !important; }
  .nav-toggle { display: flex; order: -1; }
  .nav-mobile { display: block; }
  .nav-main .container > div { position: relative; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .admin-sidebar { width: 0; overflow: hidden; }
  .admin-main { margin-left: 0; }
  .proje-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-title { text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-dots { bottom: 36px; right: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .footer-grid > div { text-align: center; }
  .footer-logo { display: flex; justify-content: center; margin-bottom: 14px; }
  .footer-logo img { height: 36px; }
  .footer-about { max-width: 100%; font-size: .8rem; }
  .footer-social { justify-content: center; margin-top: 16px; }
  .footer-title { justify-content: center; font-size: .63rem; }
  .footer-title::after { display: none; }
  .footer-links { text-align: center; }
  .footer-links a { padding-left: 0; font-size: .82rem; }
  .footer-links a:hover { padding-left: 0; color: var(--gold); }
  .footer-contact { text-align: center; }
  .footer-contact li { flex-direction: column; align-items: center; gap: 4px; font-size: .82rem; }
  .footer-contact i { font-size: .8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .istatik-grid { grid-template-columns: 1fr 1fr; }
  .istatik-item:not(:last-child)::after { display: none; }
  .proje-grid { grid-template-columns: 1fr; }
  .filter-btn { padding: 7px 18px; }
  .hero-scroll { display: none; }
  .page-header { padding: 110px 0 60px; }
}
@media (max-width: 480px) {
  .hizmet-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hizmet-card { aspect-ratio: 2 / 3; }
  .blog-grid   { grid-template-columns: 1fr; }
  .yorum-grid  { grid-template-columns: 1fr; }
}
