/* ═══════════════════════════════════════════════════════════════════
   LEX PREMIUM — Ultra Luxury Law Firm Theme
   Black × Gold — Full Dark Edition
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  /* Core Palette */
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #0f0f0f;
  --black-4: #141414;
  --black-5: #1a1a1a;
  --black-6: #222222;

  /* Gold Spectrum */
  --gold: #c9a050;
  --gold-light: #e8c97a;
  --gold-lighter: #f5e0aa;
  --gold-dark: #8a6820;
  --gold-dim: rgba(201, 160, 80, 0.12);
  --gold-glow: rgba(201, 160, 80, 0.35);

  /* Text */
  --text-white: #f5f0e8;
  --text-warm: #c8bfaf;
  --text-muted: #7a7060;
  --text-faint: #3a3530;

  /* Borders */
  --border: rgba(201, 160, 80, 0.12);
  --border-hover: rgba(201, 160, 80, 0.35);

  /* Fonts */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-label: "Cinzel", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --container: 1240px;
  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201, 160, 80, 0.18);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);

  /* Layout */
  --navbar-h: 84px;
  --topbar-h: 40px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-h) + 16px);
  /* Scrollbar Gizle */
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-warm);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Scrollbar Gizle */
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 100%;
}
body::-webkit-scrollbar {
  display: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  width: 100%;
}
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Container ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transition:
    transform 0.1s,
    opacity 0.3s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 160, 80, 0.6);
  transition:
    transform 0.18s var(--ease),
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    opacity 0.3s;
}
@media (max-width: 1024px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-emblem {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: preloaderSpin 1.2s linear infinite;
}
.preloader-ring-2 {
  inset: 10px;
  border-top-color: transparent;
  border-right-color: rgba(201, 160, 80, 0.4);
  animation-duration: 1.8s;
  animation-direction: reverse;
}
.preloader-icon {
  font-size: 1.6rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.preloader-brand {
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--text-warm);
  margin-bottom: 16px;
}
.preloader-line {
  width: 120px;
  height: 1px;
  background: var(--black-6);
  margin: 0 auto;
  overflow: hidden;
}
.preloader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  animation: preloaderBar 2s var(--ease) forwards;
}
@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderBar {
  to {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════════════════════ */
.topbar {
  height: var(--topbar-h);
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-left a,
.topbar-right a {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.topbar-left a:hover,
.topbar-right a:hover {
  color: var(--gold);
}
.topbar-left a i,
.topbar-right a i {
  font-size: 0.7rem;
  color: var(--gold-dark);
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar-social a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
}
.topbar-social a:hover {
  color: var(--gold);
  border-color: var(--gold-dark);
}
.topbar-cta {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold) !important;
  border: 1px solid var(--border) !important;
  padding: 4px 14px !important;
  transition: all 0.25s !important;
}
.topbar-cta:hover {
  background: var(--gold-dim) !important;
  border-color: var(--gold) !important;
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--navbar-h);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.4s,
    box-shadow 0.4s,
    height 0.4s;
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  height: 68px;
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* gap: 2rem; */
}
/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-emblem {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.brand-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-dim);
  opacity: 0;
  transition: opacity 0.3s;
}
.navbar-brand:hover .brand-emblem {
  border-color: var(--gold);
}
.navbar-brand:hover .brand-emblem::before {
  opacity: 1;
}
.brand-emblem i {
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.brand-text {
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-white);
}
.brand-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 400;
  display: block;
  margin-top: 1px;
}
/* Nav Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-menu li a {
  position: relative;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.navbar-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition:
    left 0.3s var(--ease),
    right 0.3s var(--ease);
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--text-white);
}
.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
  left: 0.9rem;
  right: 0.9rem;
}
/* Nav Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-toggle {
  display: none;
}
@media (max-width: 1023px) {
  .navbar-menu {
    display: none;
  }
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    padding: 4px;
  }
  .navbar-toggle span {
    display: block;
    height: 1px;
    background: var(--text-warm);
    transition: var(--transition);
  }
  .navbar-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .navbar-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  /* Mobile menu */
  .navbar-menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--black-2);
    padding: 100px 40px 40px;
    z-index: 999;
    gap: 0;
  }
  .navbar-menu.open li a {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-warm);
    padding: 0.5rem 0;
    text-transform: none;
  }
  .navbar-menu.open li a:hover {
    color: var(--gold);
  }
  .navbar-menu.open li a::after {
    display: none;
  }

  /* Menü kapatma butonu */
  .navbar-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-warm);
    transition: color 0.25s;
    z-index: 1000;
  }
  .navbar-menu-close:hover {
    color: var(--gold);
  }
  .navbar-menu-close i {
    font-size: 1.4rem;
  }

  /* Menü kapatma butonu sadece açık menüde görünür */
  .navbar-menu:not(.open) .navbar-menu-close {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-label);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before {
  transform: translateX(0);
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--gold-dark) 0%,
    var(--gold) 50%,
    var(--gold-dark) 100%
  );
  background-size: 200%;
  color: var(--black);
  border-color: transparent;
  animation: goldShimmer 4s ease infinite;
}
.btn-gold::before {
  background: rgba(255, 255, 255, 0.1);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: var(--black);
}
.btn-gold.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 0.78rem;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-hover);
  color: var(--text-warm);
}
.btn-outline::before {
  background: var(--gold-dim);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  font-size: 0.68rem;
}
.btn-ghost-light:hover {
  color: var(--gold);
  border-color: var(--border-hover);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

@keyframes goldShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
}
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
  filter: brightness(0.22) saturate(0.5);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.6) 50%,
    rgba(5, 5, 5, 0.88) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 10;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 30%,
    var(--gold-light) 50%,
    var(--gold) 70%,
    transparent 100%
  );
}
.hero .container {
  position: relative;
  z-index: 5;
}
.hero-content {
  max-width: 820px;
  padding: 120px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 0.3s var(--ease) forwards;
}
.hero-badge::before,
.hero-badge::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-dark);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.9s 0.5s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 0.7s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s 0.9s var(--ease) forwards;
}
/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 5;
}
.hero-stats .container {
  display: flex;
  gap: 0;
}
.hero-stat {
  flex: 1;
  padding: 1.5rem 2rem;
  border-left: 1px solid var(--border);
  opacity: 0;
  transform: translateY(15px);
  animation: slideUp 0.6s calc(1.1s + var(--i, 0) * 0.12s) var(--ease) forwards;
}
.hero-stat:first-child {
  border-left: none;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-num sup {
  font-size: 1rem;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-label);
}
/* Hero controls */
.hero-controls {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-prev,
.hero-next {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.25s;
}
.hero-prev:hover,
.hero-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.hero-dots {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-dot {
  width: 2px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  height: 40px;
}
/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}
.hero-scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hero-scroll a:hover {
  color: var(--gold);
}
.mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(201, 160, 80, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px;
}
.mouse-wheel {
  width: 2px;
  height: 6px;
  background: var(--gold);
  animation: scroll 2s ease infinite;
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ══════════════════════════════════════════════════════════════════
   INFO CARDS
══════════════════════════════════════════════════════════════════ */
.info-cards {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.info-card:last-child {
  border-right: none;
}
.info-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.info-card:hover {
  background: rgba(201, 160, 80, 0.03);
}
.info-card:hover::before {
  right: 0;
}
.info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.1rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.info-card:hover .info-card-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.info-card-content h3 {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}
.info-card-content p {
  font-size: 0.82rem;
  color: var(--text-warm);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════════════════ */
.section {
  padding: 110px 0;
}
.section-sm {
  padding: 70px 0;
}

.section-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.section-label::before,
.section-label::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
}
.text-center {
  text-align: center;
}
.text-center .section-label {
  justify-content: center;
}
.text-center .section-desc {
  margin: 0 auto;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gold-divider span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   HAKKIMIZDA
══════════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 160, 80, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.9) saturate(0.8);
  position: relative;
  z-index: 1;
  transition: filter 0.5s;
}
.about-image-wrap:hover .about-image {
  filter: grayscale(0%) brightness(0.95) saturate(1);
}
.about-image-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--border);
  z-index: 0;
  transition: border-color 0.4s;
}
.about-image-wrap:hover .about-image-frame {
  border-color: var(--gold-dark);
}
.about-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  z-index: 3;
  background: var(--gold);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  display: block;
}
.about-badge-label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--black-4);
  text-transform: uppercase;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.about-feature:hover {
  border-color: var(--border-hover);
  background: var(--gold-dim);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}
.about-feature h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-warm);
  margin-bottom: 0.2rem;
}
.about-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   HİZMETLER
══════════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.service-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: pointer;
}
.service-card:nth-child(3n) {
  border-right: none;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.service-card:hover {
  background: rgba(201, 160, 80, 0.04);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover::after {
  right: 0;
}
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 160, 80, 0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(201, 160, 80, 0.18);
}
.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.service-card:hover .service-title {
  color: var(--gold-light);
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  position: relative;
  z-index: 1;
  transition:
    color 0.3s,
    gap 0.3s;
}
.service-link i {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.service-card:hover .service-link {
  color: var(--gold);
  gap: 0.75rem;
}
.service-card:hover .service-link i {
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════════════
   COUNTERS
══════════════════════════════════════════════════════════════════ */
.counters-section {
  background: var(--black);
  position: relative;
  padding: 80px 0;
}
.counters-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 160, 80, 0.03),
    transparent
  );
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.counter-item {
  padding: 3rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.counter-item:last-child {
  border-right: none;
}
.counter-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition:
    left 0.5s var(--ease),
    right 0.5s var(--ease);
}
.counter-item.in-view::before {
  left: 0;
  right: 0;
}
.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.counter-num span {
  color: var(--gold);
}
.counter-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════
   EKİP (Homepage grid)
══════════════════════════════════════════════════════════════════ */
.team-section {
  background: var(--black-2);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3.5rem;
  border: 1px solid var(--border);
}
.team-card {
  position: relative;
  overflow: hidden;
  background: var(--black-3);
  cursor: pointer;
}
.team-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.8);
  transition:
    transform 0.7s var(--ease),
    filter 0.5s;
}
.team-card:hover .team-img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.9);
}
.team-info {
  padding: 1.5rem;
  background: var(--black-3);
  border-top: 1px solid var(--border);
  position: relative;
}
.team-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.team-card:hover .team-info::before {
  right: 0;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}
.team-role {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 160, 80, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.testimonials-slider {
  margin-top: 3.5rem;
  position: relative;
}
.testimonial-track {
  overflow: hidden;
}
.testimonials-list {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.testimonial-item {
  min-width: 100%;
  padding: 0 2px;
}
.testimonial-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--border);
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  font-weight: 700;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-warm);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}
.testimonial-name {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-warm);
  margin-bottom: 0.15rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 2px;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.testimonial-dot {
  width: 6px;
  height: 6px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.testimonial-dot.active {
  background: var(--gold);
  width: 24px;
}

/* ══════════════════════════════════════════════════════════════════
   SSS / FAQ
══════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--black-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  margin-top: 3.5rem;
  align-items: start;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-warm);
  transition: color 0.25s;
}
.faq-question:hover {
  color: var(--text-white);
}
.faq-question.open {
  color: var(--gold-light);
}
.faq-icon {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.7rem;
  transition: all 0.3s;
}
.faq-question.open .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.3s;
}
.faq-answer-inner {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 1.4rem;
}

/* ══════════════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════════════ */
.blog-section {
  background: var(--black);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.blog-card {
  background: var(--black-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.blog-card:hover {
  background: var(--black-4);
}
.blog-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.blog-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.7);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(0.9);
}
.blog-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.blog-card:hover .blog-title {
  color: var(--gold-light);
}
.blog-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-meta i {
  color: var(--gold-dark);
  font-size: 0.65rem;
}

/* ══════════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 160, 80, 0.06) 0%,
    transparent 50%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text .section-label {
  margin-bottom: 0.75rem;
}
.cta-section .section-title {
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════ */
.contact {
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrapper {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--text-warm);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 2px rgba(201, 160, 80, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-map iframe {
  /* filter: grayscale(100%) brightness(0.5) contrast(1.1); */
  width: 100%;
}
.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child {
  border-top: 1px solid var(--border);
}
.contact-detail i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.contact-detail h4 {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-detail p {
  font-size: 0.85rem;
  color: var(--text-warm);
  line-height: 1.5;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.contact-info-card {
  background: var(--black-3);
  padding: 2.5rem;
  text-align: center;
}
.contact-info-card .icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}
.contact-info-card h3 {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact-info-card a {
  color: var(--text-muted);
  transition: color 0.25s;
}
.contact-info-card a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   RANDEVU
══════════════════════════════════════════════════════════════════ */
.appointment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.appointment-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.appointment-info > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.appointment-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.appointment-step:last-of-type {
  border-bottom: none;
}
.appointment-step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--gold);
}
.appointment-step h4 {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-warm);
  margin-bottom: 0.3rem;
}
.appointment-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 160, 80, 0.04) 0%,
    transparent 50%
  );
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1rem;
}
.page-header-title .gold {
  color: var(--gold-light);
  font-style: italic;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  color: #f1f1f1;
}
.breadcrumb span:last-child {
  color: var(--gold-dark);
}

/* ══════════════════════════════════════════════════════════════════
   GALERİ
══════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.6);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}
.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(0.8);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(5, 5, 5, 0.45);
}
.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ══════════════════════════════════════════════════════════════════
   CONTENT (Blog / Service detail body)
══════════════════════════════════════════════════════════════════ */
.content-body {
  max-width: 760px;
  font-size: 1rem;
  color: var(--text-warm);
  line-height: 1.9;
}
.content-body h2,
.content-body h3 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 400;
  margin: 2rem 0 1rem;
}
.content-body h2 {
  font-size: 1.7rem;
}
.content-body h3 {
  font-size: 1.3rem;
}
.content-body p {
  margin-bottom: 1.2rem;
}
.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.content-body li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.content-body ul li::marker {
  color: var(--gold);
}
.content-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--gold-dim);
  color: var(--text-warm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
/* Sidebar layout */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.sidebar-widget {
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-service-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.sidebar-service-list li:last-child a {
  border-bottom: none;
}
.sidebar-service-list li a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.sidebar-service-list li a i {
  font-size: 0.7rem;
  color: var(--text-faint);
}

/* ══════════════════════════════════════════════════════════════════
   EKİP SAYFASI
══════════════════════════════════════════════════════════════════ */

/* Kurucu Avukat — Öne Çıkan Kart */
.team-founder {
  margin-bottom: 2rem;
}
.team-founder-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--black-3);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.team-founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-dark),
    transparent
  );
}
.team-founder-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.88);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
}
.team-founder-card:hover .team-founder-img img {
  transform: scale(1.03);
  filter: grayscale(0%) brightness(0.92);
}
.team-founder-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.35rem 0.9rem;
  width: fit-content;
  margin-bottom: 1rem;
}
.team-founder-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.team-founder-role {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  display: block;
}
.team-founder-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.team-founder-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.specialty-tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  transition: all 0.25s;
  color: #f1f1f1;
}
.specialty-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Diğer Üyeler — Uzmanlık Tag (küçük) */
.team-member-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.specialty-tag-sm {
  font-family: var(--font-label);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  color: #f1f1f1;
}

.team-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.team-member-card {
  background: var(--black-3);
  overflow: hidden;
}
.team-member-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
}
.team-member-card:hover .team-member-img img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.9);
}
.team-member-info {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}
.team-member-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}
.team-member-role {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.team-member-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.team-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.team-social a {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  transition: all 0.25s;
}
.team-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-brand i {
  font-size: 1.2rem;
  color: var(--gold);
}
.footer-brand span {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-white);
}
.footer-about {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: all 0.25s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links li a {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.footer-links li a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-links li a:hover::before {
  width: 8px;
}
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}
.footer-contact li i {
  color: var(--gold-dark);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 1.5rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   BACK TO TOP / WHATSAPP
══════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 400;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    border-color 0.25s,
    background 0.25s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 32px;
  z-index: 400;
  width: 44px;
  height: 44px;
  background: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition:
    transform 0.3s var(--ease-spring),
    box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ══════════════════════════════════════════════════════════════════
   ALERTS
══════════════════════════════════════════════════════════════════ */
.alert {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  border: 1px solid;
  margin-bottom: 1rem;
}
.alert-success {
  background: rgba(40, 167, 69, 0.08);
  border-color: rgba(40, 167, 69, 0.2);
  color: #6ee7a0;
}
.alert-danger {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
  color: #f87171;
}

/* ══════════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════════ */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

[data-aos] {
  opacity: 0;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-aos="fade-up"] {
  transform: translateY(40px);
}
[data-aos="fade-down"] {
  transform: translateY(-40px);
}
[data-aos="fade-right"] {
  transform: translateX(-40px);
}
[data-aos="fade-left"] {
  transform: translateX(40px);
}
[data-aos="zoom-in"] {
  transform: scale(0.9);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos-delay="100"] {
  transition-delay: 0.1s;
}
[data-aos-delay="200"] {
  transition-delay: 0.2s;
}
[data-aos-delay="300"] {
  transition-delay: 0.3s;
}
[data-aos-delay="400"] {
  transition-delay: 0.4s;
}
[data-aos-delay="500"] {
  transition-delay: 0.5s;
}
[data-aos-delay="600"] {
  transition-delay: 0.6s;
}

/* Form tabs */
.form-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.form-tab {
  flex: 1;
  padding: 0.85rem;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.form-tab:hover:not(.active) {
  color: var(--text-warm);
}
.contact-form {
  display: none;
}
.contact-form.active {
  display: block;
}

/* Form success overlay */
.form-success-overlay {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-overlay .success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.form-success-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}
.form-success-overlay p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--black) inset;
  -webkit-text-fill-color: var(--text-warm);
  caret-color: var(--text-warm);
}
select option {
  background: var(--black-4);
  color: var(--text-warm);
}

/* Gold ticker */
.gold-ticker {
  overflow: hidden;
  background: var(--gold);
  padding: 0.6rem 0;
}
.gold-ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.gold-ticker-item {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2.5rem;
  flex-shrink: 0;
}
.gold-ticker-item::after {
  content: "\2756";
  margin-left: 2.5rem;
  color: rgba(0, 0, 0, 0.35);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tam Kapsamlı Mobil Uyum
══════════════════════════════════════════════════════════════════ */

/* ─── 1200px ─────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(3n) {
    border-right: 1px solid var(--border);
  }
  .service-card:nth-child(2n) {
    border-right: none;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── 1024px ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid,
  .appointment-grid,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    height: 380px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: none;
  }
  .hero-content {
    padding: 100px 0 80px;
  }
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Topbar: sadece telefon + CTA göster, e-posta ve sosyal gizle */
  .topbar-left a + a {
    display: none;
  } /* ikinci link = e-posta */
  .topbar-social {
    display: none;
  }

  /* Navbar aksiyon butonu küçült */
  .navbar-actions .btn-gold {
    padding: 0.65rem 1.2rem;
    font-size: 0.65rem;
  }

  /* İç sayfa düzenleri */
  .team-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-header {
    padding: 65px 0 45px;
  }
  .blog-detail-hero img {
    height: 320px;
  }
  .service-detail-img img {
    height: 280px;
  }
}

/* ─── 768px ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --navbar-h: 64px;
  }

  /* Topbar: tamamen gizle, menüden erişilebilir */
  .topbar {
    display: none;
  }

  /* Navbar: Randevu butonu küçük ama görünür */
  .navbar-actions .btn-gold {
    padding: 0.55rem 0.9rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  .navbar-actions .btn-gold i {
    display: none;
  }
  .brand-tagline {
    display: none;
  }

  /* Section boşlukları */
  .section {
    padding: 65px 0;
  }
  .section-sm {
    padding: 45px 0;
  }

  /* Page header */
  .page-header {
    padding: 50px 0 35px;
  }
  .page-header-title {
    font-size: clamp(1.5rem, 6vw, 2.8rem);
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-controls {
    display: none;
  }
  .hero-dots {
    display: none;
  }

  /* About */
  .about-image {
    height: 280px;
  }
  .about-image-frame {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
  .about-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1rem 1.5rem;
    box-shadow: none;
  }
  .about-badge-num {
    font-size: 1.8rem;
  }
  .about-image-wrap {
    display: flex;
    flex-direction: column;
  }

  /* Grids */
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-founder-card {
    grid-template-columns: 1fr;
  }
  .team-founder-info {
    padding: 1.5rem;
  }
  .team-founder-name {
    font-size: 1.4rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(n) {
    border-right: none;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .info-card:last-child {
    border-bottom: none;
  }

  /* Counters */
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 1.75rem;
  }

  /* CTA */
  .cta-inner {
    flex-direction: column;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-section .cta-actions .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  /* Blog */
  .blog-detail-hero img {
    height: 220px;
  }
  .blog-list-card .blog-body {
    padding: 1.5rem;
  }

  /* Services detail */
  .service-detail-img img {
    height: 220px;
  }

  /* Fixed buttons */
  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 72px;
  }

  /* Team page overlay yok, bilgiler her zaman görünür */
  .team-member-img {
    aspect-ratio: 4/5;
  }
  .team-overlay {
    opacity: 1;
    background: rgba(5, 5, 5, 0.25);
  }

  /* FAQ sss sayfası */
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq-left {
    position: static;
  }

  /* Appointment form */
  .appointment-grid {
    gap: 2.5rem;
  }

  /* Contact map height */
  .contact-map iframe {
    height: 240px !important;
  }
}

/* ─── 640px ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Blog list card tek kolon */
  .blog-list-card {
    grid-template-columns: 1fr;
  }
  .blog-list-card .blog-img {
    min-height: 200px;
    height: auto;
    aspect-ratio: 16/10;
  }
  .blog-list-card .blog-img img {
    position: relative;
    inset: auto;
  }

  /* Gallery filter */
  .gallery-filter {
    gap: 0.5rem;
  }
  .gallery-filter .btn {
    padding: 0.55rem 1rem;
    font-size: 0.6rem;
  }
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team page tek sütuna geç */
  .team-page-grid {
    grid-template-columns: 1fr;
  }
  .team-founder-info {
    padding: 1.25rem;
  }
  .team-founder-name {
    font-size: 1.2rem;
  }
  .team-founder-bio {
    font-size: 0.82rem;
  }
}

/* ─── 480px ─────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }
  .page-header {
    padding: 40px 0 28px;
  }

  /* Navbar küçük ekran */
  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }
  .navbar-actions .btn-gold {
    padding: 0.5rem 0.75rem;
  }

  /* Hero */
  .hero-content {
    padding: 60px 0 50px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
  .hero-badge {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
  }
  .hero-badge::before,
  .hero-badge::after {
    width: 18px;
  }

  /* About */
  .about-image {
    height: 220px;
  }
  .about-features {
    gap: 0.75rem;
  }

  /* Services */
  .service-card {
    padding: 1.75rem;
  }
  .service-num {
    font-size: 2.5rem;
  }

  /* Counters */
  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }
  .counter-item {
    padding: 1.75rem 1rem;
  }
  .counter-num {
    font-size: 2.2rem;
  }

  /* Team grid anasayfa */
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-img-wrap {
    aspect-ratio: 4/3;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 2rem;
  }
  .testimonial-text {
    font-size: 1.05rem;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card .blog-body {
    padding: 1.25rem;
  }

  /* Contact */
  .contact-form-wrapper {
    padding: 1.25rem;
  }
  .contact-info-card {
    padding: 1.75rem;
  }

  /* Footer */
  .footer-grid {
    gap: 1.5rem;
  }
  .footer-bottom p {
    font-size: 0.65rem;
  }

  /* Appointment steps */
  .appointment-step {
    flex-direction: column;
    gap: 0.75rem;
  }
  .appointment-step-num {
    align-self: flex-start;
  }

  /* Info cards */
  .info-card {
    padding: 1.25rem 1rem;
  }
  .info-grid {
    gap: 0;
  }

  /* Page header */
  .page-header-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .breadcrumb {
    font-size: 0.65rem;
    gap: 0.35rem;
  }

  /* Form bloklar */
  .form-group textarea {
    min-height: 100px;
  }

  /* Gallery grid */
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobil menü padding'i dar ekranlarda azalt */
  .navbar-menu.open {
    padding: 80px 24px 30px;
  }
  .navbar-menu.open li a {
    font-size: 1.6rem;
  }
}

/* Page-specific */
.gallery-page .gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════════
   BTN OUTLINE LIGHT (ic sayfa CTA)
══════════════════════════════════════════════════════════════════ */
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-warm);
}
.btn-outline-light::before {
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-light:hover {
  border-color: var(--text-warm);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* CTA ic sayfa (cta-inner olmadan) */
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.cta-section .cta-actions {
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════════
   HAKKIMIZDA SAYFASI — DEGERLER & TIMELINE
══════════════════════════════════════════════════════════════════ */
.section-dark {
  background: var(--black-2);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.value-card {
  background: var(--black-3);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.value-card:hover {
  background: var(--black-4);
}
.value-card:hover::after {
  right: 0;
}
.value-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.value-card:hover .value-card-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 3.5rem auto 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  align-items: flex-start;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-content {
  flex: 1;
  background: var(--black-3);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color 0.3s;
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 2.5rem;
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: 2.5rem;
}
.timeline-content:hover {
  border-color: var(--border-hover);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translate(-50%, 0) rotate(45deg);
  flex-shrink: 0;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 14px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 38px;
  }
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
  }
  .timeline-dot {
    left: 14px;
  }
}

/* Counter icon (ekip & hakkimizda) */
.counter-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════════
   EKİP SAYFASI — OVERLAY VARIANT
══════════════════════════════════════════════════════════════════ */
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}
.team-card:hover .team-overlay {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════════
   SSS SAYFASI — FAQ WRAPPER LAYOUT
══════════════════════════════════════════════════════════════════ */
.faq-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 2rem;
}
.faq-left {
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
}
.faq-left .section-label {
  margin-bottom: 1.2rem;
}
.faq-left .section-title {
  margin-bottom: 1rem;
}
.faq-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.faq-right .faq-accordion {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-left {
    position: static;
  }
}

/* ══════════════════════════════════════════════════════════════════
   BLOG SAYFASI — LİSTE LAYOUT & SİDEBAR
══════════════════════════════════════════════════════════════════ */
.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-list-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--black-3);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.35s;
}
.blog-list-card:hover {
  border-color: var(--border-hover);
}
.blog-list-card .blog-img {
  overflow: hidden;
  min-height: 220px;
  position: relative;
  aspect-ratio: auto;
  height: 100%;
}
.blog-list-card .blog-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.7);
  transition:
    transform 0.55s var(--ease),
    filter 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.blog-list-card:hover .blog-img img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(0.9);
}
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-label);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 3px 10px;
  z-index: 2;
}
.blog-list-card .blog-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.blog-list-card .blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s;
}
.blog-list-card:hover .blog-body h3 {
  color: var(--gold-light);
}
.blog-list-card .blog-body h3 a {
  color: inherit;
}
.blog-list-card .blog-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: auto;
  transition:
    color 0.3s,
    gap 0.3s;
}
.blog-read-more:hover {
  color: var(--gold);
  gap: 0.75rem;
}

/* Blog sidebar */
.blog-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog-sidebar .sidebar-widget {
  margin-bottom: 0;
}
.sidebar-widget h3 {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-categories li {
  border-bottom: 1px solid var(--border);
}
.sidebar-categories li:last-child {
  border-bottom: none;
}
.sidebar-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font-size: 0.83rem;
  color: var(--text-muted);
  transition:
    color 0.25s,
    padding-left 0.25s;
}
.sidebar-categories li a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.sidebar-categories .badge {
  font-size: 0.65rem;
  color: var(--text-faint);
}
.sidebar-recent-post {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-recent-post:last-child {
  border-bottom: none;
}
.sidebar-recent-img {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-recent-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.sidebar-recent-info h4 {
  font-size: 0.82rem;
  color: var(--text-warm);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.sidebar-recent-info h4 a {
  color: inherit;
  transition: color 0.25s;
}
.sidebar-recent-info h4 a:hover {
  color: var(--gold);
}
.sidebar-recent-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .blog-page-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
}
@media (max-width: 640px) {
  .blog-list-card {
    grid-template-columns: 1fr;
  }
  .blog-list-card .blog-img {
    min-height: 200px;
    height: auto;
    aspect-ratio: 16/10;
  }
  .blog-list-card .blog-img img {
    position: relative;
    inset: auto;
  }
}

/* ══════════════════════════════════════════════════════════════════
   BLOG DETAY SAYFASI
══════════════════════════════════════════════════════════════════ */
.blog-detail-content {
  min-width: 0;
}
.blog-detail-hero {
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.blog-detail-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
}
.blog-detail-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.blog-detail-meta i {
  color: var(--gold-dark);
  font-size: 0.7rem;
}
.blog-content {
  font-size: 0.95rem;
  color: var(--text-warm);
  line-height: 1.9;
}
.blog-content h2,
.blog-content h3 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 400;
  margin: 2rem 0 1rem;
}
.blog-content h2 {
  font-size: 1.6rem;
}
.blog-content h3 {
  font-size: 1.3rem;
}
.blog-content p {
  margin-bottom: 1.2rem;
}
.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.blog-content li {
  margin-bottom: 0.4rem;
}
.blog-content ul li::marker {
  color: var(--gold);
}
.blog-content blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--gold-dim);
  font-style: italic;
  color: var(--text-warm);
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.blog-tag {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  transition: all 0.25s;
}
.blog-tag:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════
   HİZMET DETAY SAYFASI
══════════════════════════════════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.service-detail-content {
  min-width: 0;
}
.service-detail-img {
  margin-bottom: 2rem;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.75);
}
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-sidebar .sidebar-widget {
  margin-bottom: 0;
}
.sidebar-cta {
  background: rgba(201, 160, 80, 0.05) !important;
  border-color: var(--border-hover) !important;
}
.sidebar-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--text-muted);
}
.sidebar-contact-list li:last-child {
  border-bottom: none;
}
.sidebar-contact-list li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.sidebar-contact-list li a {
  color: var(--text-muted);
  transition: color 0.25s;
}
.sidebar-contact-list li a:hover {
  color: var(--gold);
}
.service-content {
  font-size: 0.95rem;
  color: var(--text-warm);
  line-height: 1.9;
}
.service-content h2,
.service-content h3 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 400;
  margin: 1.5rem 0 0.75rem;
}
.service-content h2 {
  font-size: 1.5rem;
}
.service-content h3 {
  font-size: 1.2rem;
}
.service-content p {
  margin-bottom: 1rem;
}
.service-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.service-content ul li::marker {
  color: var(--gold);
}
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
}

/* ══════════════════════════════════════════════════════════════════
   GALERİ FILTER BUTTONS
══════════════════════════════════════════════════════════════════ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-item.hidden {
  display: none;
}
