/* ═══════════════════════════════════════════════════════
   ÇAĞATAYHAN HUKUK — 3D Premium Design System v2
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables (overridden dynamically from layout) ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8B6914;
  --dark: #080c14;
  --dark-2: #0d1421;
  --dark-3: #111827;
  --dark-4: #1a2336;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,168,76,0.18);
  --text-muted: rgba(255,255,255,0.52);
  --shadow-gold: 0 0 50px rgba(201,168,76,0.12);
  --shadow-3d: 0 25px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

/* ── Reset & Base ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: #e8e8e8;
  padding-top: 72px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-dark), var(--gold)); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ══════════════════════════════════
   NAVIGATION — 3D Glass Navbar
══════════════════════════════════ */
.navbar-3d {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,12,20,0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.9rem 0;
  transition: var(--transition);
}
.navbar-3d.scrolled {
  background: rgba(8,12,20,0.97);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08);
  padding: 0.55rem 0;
}
.navbar-brand-3d {
  font-size: 1.45rem; font-weight: 800; text-decoration: none;
  letter-spacing: 1px; color: #fff; display: flex; align-items: center;
  gap: .25rem;
}
.navbar-brand-3d .brand-highlight { color: var(--gold); }
.nav-link-3d {
  color: rgba(255,255,255,0.72) !important;
  font-weight: 500; font-size: 0.875rem; letter-spacing: 0.4px;
  padding: 0.4rem 0.9rem !important; border-radius: 8px;
  transition: var(--transition); position: relative;
  text-decoration: none !important;
}
.nav-link-3d::after {
  content: ''; position: absolute; bottom: -1px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 1px;
  transition: var(--transition);
}
.nav-link-3d:hover { color: #fff !important; }
.nav-link-3d:hover::after { left: 10%; right: 10%; }
.btn-nav-3d {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #fff !important; border-radius: 50px !important;
  padding: 0.45rem 1.35rem !important; font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(201,168,76,0.28);
  transition: var(--transition);
}
.btn-nav-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5) !important;
}
.btn-nav-3d::after { display: none !important; }

/* ══════════════════════════════════
   HERO — 3D Particle Scene
══════════════════════════════════ */
.hero-3d {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(139,105,20,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(15,52,96,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(8,50,30,0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, #0a1628 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-3d::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='0.7' fill='rgba(201,168,76,0.22)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E");
  animation: gridMove 25s linear infinite;
}
@keyframes gridMove { to { background-position: 60px 60px; } }

/* Floating geometric shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px; animation: floatShape linear infinite;
}
.shape:nth-child(1) { width: 80px; height: 80px; top: 15%; right: 15%; animation-duration: 8s; }
.shape:nth-child(2) { width: 140px; height: 140px; top: 60%; right: 5%; animation-duration: 12s; animation-delay: -3s; border-radius: 50%; }
.shape:nth-child(3) { width: 50px; height: 50px; top: 40%; right: 35%; animation-duration: 6s; animation-delay: -5s; transform: rotate(45deg); }
.shape:nth-child(4) { width: 200px; height: 200px; top: 10%; right: 45%; animation-duration: 15s; animation-delay: -8s; opacity: 0.4; border-radius: 50%; }
.shape:nth-child(5) { width: 60px; height: 60px; bottom: 20%; right: 25%; animation-duration: 9s; animation-delay: -2s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-28px) rotate(180deg); opacity: 0.55; }
}

/* Hero 3D Floating Card */
.hero-right-col {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.hero-cube-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cube-glow-ring {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, rgba(201,168,76,0.05) 45%, transparent 70%);
  animation: cubeGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cubeGlowPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ── Başarı İstatistikleri Yatay Çubuğu ── */
.hero-stats-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hsb-label {
  padding: 1.1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-right: 1px solid rgba(201,168,76,0.15);
  white-space: nowrap;
  flex-shrink: 0;
}
.hsb-items {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.hsb-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.4rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  cursor: default;
}
.hsb-item:last-child { border-right: none; }
.hsb-item:hover { background: rgba(201,168,76,0.07); }
.hsb-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff;
  box-shadow: 0 4px 12px rgba(201,168,76,0.28);
}
.hsb-divider {
  width: 1px; height: 32px; flex-shrink: 0;
  background: rgba(201,168,76,0.2);
  display: none; /* masaüstünde görünmez, sadece ikon yeterli */
}
.hsb-num {
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.hsb-label-text {
  font-size: 0.7rem; color: var(--text-muted);
  margin-top: 0.1rem; letter-spacing: 0.3px;
}

/* Eski hero-card-3d ve hero-stat stilleri (artık kullanılmıyor ama mobil için bırakıldı) */
.hero-card-3d { display: none; }
.hero-stat { display: none; }

/* ──────────────────────────────
   MOBİL HERO DÜZENLEMELERİ
────────────────────────────── */
@media (max-width: 991px) {
  .hero-3d {
    min-height: auto;
    padding: 4rem 0 2rem;
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats-bar {
    flex-direction: column;
    border-radius: 16px;
    margin-top: 2rem;
  }
  .hsb-label {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
  }
  .hsb-items { flex-direction: row; width: 100%; }
  .hsb-item {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 0.8rem;
    border-right: 1px solid rgba(201,168,76,0.1);
    border-bottom: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
  }
  .hsb-item:last-child { border-right: none; }
  .hsb-icon { width: 34px; height: 34px; font-size: 0.8rem; }
  .hsb-num { font-size: 1.15rem; }
  .hsb-label-text { font-size: 0.64rem; }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.75rem; }
  .hsb-items { flex-wrap: wrap; }
  .hsb-item { min-width: 33%; }
}

/* Hero Text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold); border-radius: 50px; padding: 0.4rem 1.1rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.12;
  color: #fff; margin-bottom: 1.5rem; letter-spacing: -.5px;
}
.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2.5rem; max-width: 540px; }

/* Hero Buttons */
.btn-3d-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  background-size: 200% 200%;
  color: #fff; border: none; border-radius: 50px;
  padding: 0.9rem 2.1rem; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 0 rgba(0,0,0,0.1);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
}
.btn-3d-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease; transform: skewX(-20deg);
}
.btn-3d-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 44px rgba(201,168,76,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  color: #fff;
}
.btn-3d-primary:hover::before { left: 150%; }
.btn-3d-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px; padding: 0.9rem 2.1rem; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  backdrop-filter: blur(10px); transition: var(--transition);
}
.btn-3d-secondary:hover {
  background: rgba(255,255,255,0.08); border-color: var(--gold);
  color: var(--gold); transform: translateY(-3px);
}

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section-3d { padding: 100px 0; position: relative; }
.section-alt { background: var(--dark-2); }
.section-badge {
  display: inline-block; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22); color: var(--gold);
  border-radius: 50px; padding: 0.3rem 1.1rem; font-size: 0.73rem;
  font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 1rem; backdrop-filter: blur(10px);
}
.section-title-3d {
  font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 900; color: #fff;
  margin-bottom: 0.5rem; line-height: 1.2; letter-spacing: -.3px;
}
.section-divider-3d {
  width: 50px; height: 3px; margin: 1rem auto 2.5rem;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 2px; position: relative;
}
.section-divider-3d::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 14px var(--gold), 0 0 28px rgba(201,168,76,0.4);
}

/* ══════════════════════════════════
   3D GLASS CARDS
══════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: var(--transition); position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  opacity: .7;
}
.glass-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(ellipse at var(--spotlight-x, 50%) var(--spotlight-y, 0%), rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.glass-card:hover {
  border-color: rgba(201,168,76,0.28);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08), var(--shadow-gold);
  transform: translateY(-10px) scale(1.015);
}
.glass-card:hover::after { opacity: 1; }

/* Service Cards — 3D Icon */
.service-card-3d {
  padding: 2.5rem 2rem; text-align: center;
}
.service-icon-3d {
  width: 78px; height: 78px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1.5px solid rgba(201,168,76,0.22);
  border-radius: 22px; display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,168,76,0.12), inset 0 1px 0 rgba(201,168,76,0.08);
  transition: var(--transition);
  transform: perspective(200px) translateZ(0);
}
.glass-card:hover .service-icon-3d {
  background: linear-gradient(135deg, rgba(201,168,76,0.28), rgba(201,168,76,0.08));
  box-shadow: 0 14px 42px rgba(201,168,76,0.3), inset 0 1px 0 rgba(201,168,76,0.2);
  transform: perspective(200px) translateZ(22px) rotateX(-6deg);
  border-color: rgba(201,168,76,0.45);
}
.service-card-3d h5 { color: #fff; font-weight: 800; font-size: 1.08rem; margin-bottom: 0.75rem; letter-spacing: -.2px; }
.service-card-3d p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin: 0; }

/* Why Us Cards */
.whyus-item-3d {
  display: flex; gap: 1.25rem; padding: 1.5rem; align-items: flex-start;
  border-radius: var(--radius); transition: var(--transition);
}
.whyus-item-3d:hover {
  background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.2) !important;
}
.whyus-icon-3d {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: #fff;
  box-shadow: 0 8px 22px rgba(201,168,76,0.28);
  transition: var(--transition);
}
.whyus-item-3d:hover .whyus-icon-3d {
  transform: rotateY(18deg) rotateX(6deg) scale(1.1);
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
}
.whyus-item-3d h6 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.whyus-item-3d p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* Team Cards */
.team-card-3d {
  text-align: center; padding: 2rem 1.5rem;
  transform-style: preserve-3d;
}
.team-avatar {
  width: 110px; height: 110px; margin: 0 auto 1.25rem;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(201,168,76,0.28);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), 0 0 0 6px rgba(201,168,76,0.04);
  transition: var(--transition);
}
.glass-card:hover .team-avatar {
  border-color: var(--gold); box-shadow: 0 14px 38px rgba(0,0,0,0.5), 0 0 0 6px rgba(201,168,76,0.1);
  transform: translateY(-6px) scale(1.04);
}
.team-avatar-placeholder {
  width: 110px; height: 110px; margin: 0 auto 1.25rem;
  background: var(--dark-4); border: 3px solid rgba(201,168,76,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(201,168,76,0.28);
}
.team-card-3d h6 { color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card-3d .team-role { color: var(--gold); font-size: 0.78rem; font-weight: 600; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: .5px; }
.team-card-3d p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.65; }
.team-social a {
  display: inline-flex; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,168,76,0.08); color: var(--gold);
  align-items: center; justify-content: center; font-size: 0.78rem;
  border: 1px solid rgba(201,168,76,0.18); transition: var(--transition);
  text-decoration: none;
}
.team-social a:hover { background: var(--gold); color: #fff; transform: scale(1.15); box-shadow: 0 4px 12px rgba(201,168,76,.35); }

/* Testimonial Cards */
.testimonial-card-3d { padding: 2rem; }
.testimonial-quote {
  font-size: 3rem; color: rgba(201,168,76,0.18); line-height: 1;
  font-family: Georgia, serif; margin-bottom: 0.5rem; font-style: italic;
}
.testimonial-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.testimonial-avatar-placeholder {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dark-4); border: 2px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.testimonial-role { font-size: 0.73rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

/* Blog Cards */
.blog-card-3d { overflow: hidden; }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition); display: block;
}
.glass-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { color: var(--text-muted); font-size: 0.76rem; margin-bottom: 0.75rem; }
.blog-card-body h6 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.5; }
.blog-card-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.72; margin-bottom: 1rem; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.btn-read-more:hover { color: var(--gold-light); gap: 0.85rem; }
.blog-img-placeholder {
  height: 200px; background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,168,76,0.18); font-size: 3rem;
}

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-img-wrap { position: relative; transform-style: preserve-3d; }
.about-img-wrap img {
  border-radius: 28px; box-shadow: var(--shadow-3d);
  transition: var(--transition); width: 100%;
}
.about-img-wrap:hover img { transform: perspective(700px) rotateY(-6deg) rotateX(3deg); }
.about-badge-float {
  position: absolute; padding: 1rem 1.3rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 18px; color: #fff; text-align: center;
  box-shadow: 0 12px 35px rgba(201,168,76,0.35);
  animation: cardFloat 4s ease-in-out infinite;
}
.about-badge-float.top-right { top: -22px; right: -22px; }
.about-badge-float.bottom-left { bottom: -22px; left: -22px; }
.about-badge-float h3 { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-float p { font-size: 0.68rem; opacity: 0.88; margin: 0.15rem 0 0; }
.about-list li {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.9rem; padding: 0.45rem 0;
}
.about-list li i { color: var(--gold); width: 16px; }

/* ══════════════════════════════════
   FAQ — 3D Accordion
══════════════════════════════════ */
.faq-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.18); }
.accordion-button {
  background: transparent !important; color: #fff !important;
  font-weight: 600; padding: 1.25rem 1.5rem; box-shadow: none !important;
  font-size: .95rem;
}
.accordion-button:not(.collapsed) { color: var(--gold) !important; }
.accordion-button::after { filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg); }
.accordion-body {
  background: transparent; color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.82; padding: 0 1.5rem 1.25rem;
}

/* ══════════════════════════════════
   CONTACT SECTION
══════════════════════════════════ */
.contact-3d {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139,105,20,0.1) 0%, transparent 60%),
    var(--dark-2);
  position: relative;
}
.contact-info-card {
  background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 1.4rem 1.75rem;
  display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.28);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.contact-icon-3d {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; box-shadow: 0 6px 18px rgba(201,168,76,0.25);
}
.contact-info-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; }
.contact-info-value { color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.contact-info-value:hover { color: var(--gold); }

.contact-form-3d .form-control {
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.09);
  color: #fff; border-radius: 14px; padding: 0.88rem 1.1rem; font-size: 0.9rem;
  transition: var(--transition);
}
.contact-form-3d .form-control::placeholder { color: rgba(255,255,255,0.28); }
.contact-form-3d .form-control:focus {
  background: rgba(255,255,255,0.06); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1); color: #fff;
}

/* Social links */
.social-links a {
  display: inline-flex; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition); font-size: 0.9rem;
}
.social-links a:hover {
  background: rgba(201,168,76,0.14); border-color: var(--gold);
  color: var(--gold); transform: translateY(-4px) rotate(-5deg);
  box-shadow: 0 6px 18px rgba(201,168,76,0.2);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer-3d {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 5rem 0 2.5rem;
}
.footer-3d h5 { color: #fff; font-weight: 700; margin-bottom: 1.35rem; }
.footer-3d p, .footer-3d li { color: var(--text-muted); font-size: 0.875rem; line-height: 1.85; }
.footer-3d ul { list-style: none; padding: 0; margin: 0; }
.footer-3d ul li { padding: 0.2rem 0; }
.footer-3d a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-3d a:hover { color: var(--gold); padding-left: 5px; }
.footer-divider { border-color: rgba(255,255,255,0.05); margin: 2.5rem 0 1.5rem; }
.footer-bottom { color: rgba(255,255,255,0.3); font-size: 0.78rem; letter-spacing: .3px; }

/* ══════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(45px); transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.23,1,0.32,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ══════════════════════════════════
   COUNTER NUMBERS
══════════════════════════════════ */
.counter-section {
  background: linear-gradient(135deg, rgba(139,105,20,0.08), rgba(15,52,96,0.08));
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 4rem 0;
}
.counter-item { text-align: center; padding: 1rem; }
.counter-num {
  font-size: 3.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label { color: var(--text-muted); font-size: 0.82rem; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 1.2px; }

/* ══════════════════════════════════
   MISC UTILITIES
══════════════════════════════════ */
.text-gold { color: var(--gold) !important; }
.bg-dark-3 { background: var(--dark-3); }
.border-gold-subtle { border-color: rgba(201,168,76,0.18) !important; }
.divider-v { width: 1px; height: 60px; background: rgba(255,255,255,0.07); margin: 0 auto; }

/* ══════════════════════════════════
   HUKUKİ HESAPLAMA ARAÇLARI
══════════════════════════════════ */
.calc-tabs-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem; padding-bottom: 4px;
  scrollbar-width: thin; scrollbar-color: var(--gold-dark) transparent;
}
.calc-tabs-wrap::-webkit-scrollbar { height: 3px; }
.calc-tabs-wrap::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

.calc-tabs {
  display: flex; gap: 0.5rem;
  min-width: max-content;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding-bottom: 0;
}
.calc-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  color: rgba(255,255,255,0.52);
  border-radius: 10px 10px 0 0;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: var(--transition);
}
.calc-tab:hover {
  background: rgba(201,168,76,0.07);
  color: rgba(255,255,255,0.85);
  border-color: rgba(201,168,76,0.18);
}
.calc-tab.active {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.calc-panel { display: none; animation: fadeInUp 0.4s ease; }
.calc-panel.active { display: block; }
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

.calc-title { font-size: 1.12rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.calc-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.72; margin-bottom: 1.5rem; }
.calc-label {
  display: block; color: rgba(255,255,255,0.7);
  font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem;
}
.calc-input {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  color: #fff; border-radius: 12px;
  padding: 0.72rem 1rem; font-size: 0.9rem;
  transition: var(--transition); outline: none;
  -moz-appearance: textfield;
}
.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-input::placeholder { color: rgba(255,255,255,0.22); }
.calc-input:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.calc-input option { background: var(--dark-3); color: #fff; }

.calc-hint-badge {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  padding: 0.22rem 0.6rem; border-radius: 20px; white-space: nowrap;
}

.calc-btn {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff; border: none; border-radius: 50px;
  padding: 0.75rem 2rem; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 22px rgba(201,168,76,0.28);
  margin-top: 0.25rem; width: 100%; justify-content: center;
}
.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.45);
}

.calc-result-box {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px; overflow: hidden;
  animation: fadeInUp 0.4s ease;
}
.calc-result-header {
  background: rgba(201,168,76,0.1);
  color: var(--gold); font-weight: 700; font-size: 0.84rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.calc-result-grid { padding: 0.5rem 0; }
.calc-result-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.035);
}
.calc-result-item:last-child { border-bottom: none; }
.calc-result-item.highlight { background: rgba(201,168,76,0.06); }
.crk { color: var(--text-muted); font-size: 0.82rem; }
.crv { font-weight: 700; color: #fff; font-size: 0.95rem; }
.crv.gold { color: var(--gold); font-size: 1.05rem; }

.calc-info-box { height: 100%; }
.calc-info-list { list-style: none; padding: 0; margin: 0; }
.calc-info-list li {
  color: var(--text-muted); font-size: 0.83rem; line-height: 1.72;
  padding: 0.35rem 0; padding-left: 1.2rem; position: relative;
}
.calc-info-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.calc-rate-table { border-radius: 12px; overflow: hidden; }
.calc-rate-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0.85rem; font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.035);
}
.calc-rate-row:last-child { border-bottom: none; }
.calc-rate-row.header {
  background: rgba(201,168,76,0.08);
  color: var(--gold); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.calc-rate-row:not(.header) { background: rgba(255,255,255,0.015); color: var(--text-muted); }
.calc-rate-row:not(.header):hover { background: rgba(201,168,76,0.04); }

.hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; opacity: 0.12; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }


/* ── CSS Variables ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8B6914;
  --dark: #080c14;
  --dark-2: #0d1421;
  --dark-3: #111827;
  --dark-4: #1a2336;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(201,168,76,0.2);
  --text-muted: rgba(255,255,255,0.55);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-3d: 0 25px 50px rgba(0,0,0,0.5);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

/* ── Reset & Base ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--dark);
  color: #e8e8e8;
  padding-top: 72px;
  overflow-x: hidden;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ══════════════════════════════════
   NAVIGATION — 3D Glass Navbar
══════════════════════════════════ */
.navbar-3d {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,12,20,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.9rem 0;
  transition: var(--transition);
}
.navbar-3d.scrolled {
  background: rgba(8,12,20,0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
  padding: 0.6rem 0;
}
.navbar-brand-3d {
  font-size: 1.5rem; font-weight: 800; text-decoration: none;
  letter-spacing: 1px; color: #fff;
}
.navbar-brand-3d .brand-highlight { color: var(--gold); }
.nav-link-3d {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px;
  padding: 0.4rem 1rem !important; border-radius: 8px;
  transition: var(--transition); position: relative;
}
.nav-link-3d::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 1px;
  transition: var(--transition);
}
.nav-link-3d:hover { color: #fff !important; }
.nav-link-3d:hover::after { left: 10%; right: 10%; }
.btn-nav-3d {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff !important; border-radius: 50px !important;
  padding: 0.45rem 1.4rem !important; font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  transition: var(--transition);
}
.btn-nav-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}
.btn-nav-3d::after { display: none !important; }

/* ══════════════════════════════════
   HERO — 3D Particle Scene
══════════════════════════════════ */
.hero-3d {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, rgba(139,105,20,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(15,52,96,0.2) 0%, transparent 50%),
              linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, #0a1628 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-3d::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='30' cy='30' r='0.8' fill='rgba(201,168,76,0.25)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E");
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove { to { background-position: 60px 60px; } }

/* Floating geometric shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px; animation: floatShape linear infinite;
}
.shape:nth-child(1) { width: 80px; height: 80px; top: 15%; right: 15%; animation-duration: 8s; }
.shape:nth-child(2) { width: 140px; height: 140px; top: 60%; right: 5%; animation-duration: 12s; animation-delay: -3s; border-radius: 50%; }
.shape:nth-child(3) { width: 50px; height: 50px; top: 40%; right: 35%; animation-duration: 6s; animation-delay: -5s; transform: rotate(45deg); }
.shape:nth-child(4) { width: 200px; height: 200px; top: 10%; right: 45%; animation-duration: 15s; animation-delay: -8s; opacity: 0.5; border-radius: 50%; }
.shape:nth-child(5) { width: 60px; height: 60px; bottom: 20%; right: 25%; animation-duration: 9s; animation-delay: -2s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-25px) rotate(180deg); opacity: 0.6; }
}

/* Hero 3D Card */
.hero-card-3d {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 320px; background: var(--glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(-50%) rotate3d(0.5,0.5,0,2deg); }
  50% { transform: translateY(calc(-50% - 15px)) rotate3d(-0.5,-0.5,0,2deg); }
}
.hero-stat {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 0.8rem 1rem; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-stat-icon {
  width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.hero-stat-num { font-size: 1.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; color: var(--text-muted); }

/* Hero Text */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.15;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2.5rem; max-width: 560px; }

/* Hero Buttons */
.btn-3d-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #fff; border: none; border-radius: 50px;
  padding: 0.85rem 2rem; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-3d-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: var(--transition);
}
.btn-3d-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(201,168,76,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
}
.btn-3d-primary:hover::before { opacity: 1; }
.btn-3d-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 0.85rem 2rem; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  backdrop-filter: blur(10px); transition: var(--transition);
}
.btn-3d-secondary:hover {
  background: rgba(255,255,255,0.1); border-color: var(--gold);
  color: var(--gold); transform: translateY(-3px);
}

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section-3d { padding: 100px 0; position: relative; }
.section-alt { background: var(--dark-2); }
.section-badge {
  display: inline-block; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25); color: var(--gold);
  border-radius: 50px; padding: 0.3rem 1rem; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title-3d {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.section-divider-3d {
  width: 50px; height: 3px; margin: 1rem auto 2.5rem;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 2px; position: relative;
}
.section-divider-3d::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

/* ══════════════════════════════════
   3D GLASS CARDS
══════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); backdrop-filter: blur(10px);
  transition: var(--transition); position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.glass-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1), var(--shadow-gold);
  transform: translateY(-8px) scale(1.01);
}

/* Service Cards — 3D Icon */
.service-card-3d {
  padding: 2.5rem 2rem; text-align: center;
}
.service-icon-3d {
  width: 75px; height: 75px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.25);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold);
  box-shadow: 0 8px 25px rgba(201,168,76,0.15), inset 0 1px 0 rgba(201,168,76,0.1);
  transition: var(--transition);
  transform: perspective(200px) translateZ(0);
}
.glass-card:hover .service-icon-3d {
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.1));
  box-shadow: 0 15px 40px rgba(201,168,76,0.3), inset 0 1px 0 rgba(201,168,76,0.2);
  transform: perspective(200px) translateZ(20px) rotateX(5deg);
}
.service-card-3d h5 { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-card-3d p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* Why Us Cards */
.whyus-item-3d {
  display: flex; gap: 1.25rem; padding: 1.5rem; align-items: flex-start;
  border-radius: var(--radius); transition: var(--transition);
}
.whyus-item-3d:hover {
  background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2) !important;
}
.whyus-icon-3d {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
  transition: var(--transition);
}
.whyus-item-3d:hover .whyus-icon-3d {
  transform: rotateY(15deg) rotateX(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(201,168,76,0.45);
}
.whyus-item-3d h6 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.whyus-item-3d p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin: 0; }

/* Team Cards */
.team-card-3d {
  text-align: center; padding: 2rem 1.5rem;
  transform-style: preserve-3d;
}
.team-avatar {
  width: 110px; height: 110px; margin: 0 auto 1.25rem;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(201,168,76,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 0 0 6px rgba(201,168,76,0.05);
  transition: var(--transition);
}
.glass-card:hover .team-avatar {
  border-color: var(--gold); box-shadow: 0 12px 35px rgba(0,0,0,0.5), 0 0 0 6px rgba(201,168,76,0.1);
  transform: translateY(-5px);
}
.team-avatar-placeholder {
  width: 110px; height: 110px; margin: 0 auto 1.25rem;
  background: var(--dark-4); border: 3px solid rgba(201,168,76,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(201,168,76,0.3);
}
.team-card-3d h6 { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card-3d .team-role { color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card-3d p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.team-social a {
  display: inline-flex; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(201,168,76,0.1); color: var(--gold);
  align-items: center; justify-content: center; font-size: 0.75rem;
  border: 1px solid rgba(201,168,76,0.2); transition: var(--transition);
  text-decoration: none;
}
.team-social a:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

/* Testimonial Cards */
.testimonial-card-3d { padding: 2rem; }
.testimonial-quote {
  font-size: 2.5rem; color: rgba(201,168,76,0.2); line-height: 1;
  font-family: Georgia, serif; margin-bottom: 0.5rem;
}
.testimonial-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.testimonial-avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark-4); border: 2px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 0.9rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.75rem; letter-spacing: 2px; }

/* Blog Cards */
.blog-card-3d { overflow: hidden; }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover;
  transition: var(--transition); display: block;
}
.glass-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-meta { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 0.75rem; }
.blog-card-body h6 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.5; }
.blog-card-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.83rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.btn-read-more:hover { color: var(--gold-light); gap: 0.8rem; }
.blog-img-placeholder {
  height: 200px; background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,168,76,0.2); font-size: 3rem;
}

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-img-wrap {
  position: relative; transform-style: preserve-3d;
}
.about-img-wrap img {
  border-radius: 24px; box-shadow: var(--shadow-3d);
  transition: var(--transition);
}
.about-img-wrap:hover img { transform: perspective(600px) rotateY(-5deg) rotateX(3deg); }
.about-badge-float {
  position: absolute; padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 16px; color: #fff; text-align: center;
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
  animation: cardFloat 4s ease-in-out infinite;
}
.about-badge-float.top-right { top: -20px; right: -20px; }
.about-badge-float.bottom-left { bottom: -20px; left: -20px; }
.about-badge-float h3 { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-badge-float p { font-size: 0.7rem; opacity: 0.85; margin: 0; }
.about-list li {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.9rem; padding: 0.4rem 0;
}
.about-list li i { color: var(--gold); width: 16px; }

/* ══════════════════════════════════
   FAQ — 3D Accordion
══════════════════════════════════ */
.faq-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.2); }
.accordion-button {
  background: transparent !important; color: #fff !important;
  font-weight: 600; padding: 1.25rem 1.5rem; box-shadow: none !important;
}
.accordion-button::after {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg);
}
.accordion-body {
  background: transparent; color: var(--text-muted);
  font-size: 0.9rem; line-height: 1.8; padding: 0 1.5rem 1.25rem;
}

/* ══════════════════════════════════
   CONTACT SECTION
══════════════════════════════════ */
.contact-3d {
  background: radial-gradient(ellipse at 50% 0%, rgba(139,105,20,0.12) 0%, transparent 60%),
              var(--dark-2);
  position: relative;
}
.contact-info-card {
  background: rgba(201,168,76,0.05); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
  display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3);
  transform: translateX(6px);
}
.contact-icon-3d {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; box-shadow: 0 5px 15px rgba(201,168,76,0.25);
}
.contact-info-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-value { color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.contact-info-value:hover { color: var(--gold); }

.contact-form-3d .form-control {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 12px; padding: 0.85rem 1.1rem; font-size: 0.9rem;
  transition: var(--transition);
}
.contact-form-3d .form-control::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-3d .form-control:focus {
  background: rgba(255,255,255,0.07); border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12); color: #fff;
}

/* Social links */
.social-links a {
  display: inline-flex; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); align-items: center; justify-content: center;
  text-decoration: none; transition: var(--transition); font-size: 0.9rem;
}
.social-links a:hover {
  background: rgba(201,168,76,0.15); border-color: var(--gold);
  color: var(--gold); transform: translateY(-3px) rotate(-5deg);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer-3d {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 5rem 0 2rem;
}
.footer-3d h5 { color: #fff; font-weight: 700; margin-bottom: 1.25rem; }
.footer-3d p, .footer-3d li { color: var(--text-muted); font-size: 0.875rem; line-height: 1.8; }
.footer-3d ul { list-style: none; padding: 0; margin: 0; }
.footer-3d ul li { padding: 0.2rem 0; }
.footer-3d a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-3d a:hover { color: var(--gold); padding-left: 4px; }
.footer-divider { border-color: rgba(255,255,255,0.06); margin: 2.5rem 0 1.5rem; }
.footer-bottom { color: var(--text-muted); font-size: 0.8rem; }

/* ══════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23,1,0.32,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ══════════════════════════════════
   COUNTER NUMBERS
══════════════════════════════════ */
.counter-section {
  background: linear-gradient(135deg, rgba(139,105,20,0.1), rgba(15,52,96,0.1));
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 4rem 0;
}
.counter-item { text-align: center; padding: 1rem; }
.counter-num {
  font-size: 3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label { color: var(--text-muted); font-size: 0.875rem; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════
   MISC UTILITIES
══════════════════════════════════ */
.text-gold { color: var(--gold) !important; }
.bg-dark-3 { background: var(--dark-3); }
.border-gold-subtle { border-color: rgba(201,168,76,0.2) !important; }
.divider-v { width: 1px; height: 60px; background: rgba(255,255,255,0.08); margin: 0 auto; }
.scrolltop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; background: var(--gold-dark);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; font-size: 1rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3); transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.scrolltop.visible { opacity: 1; pointer-events: all; }
.scrolltop:hover { background: var(--gold); transform: translateY(-3px); color: #fff; }

/* ══════════════════════════════════
   HUKUKİ HESAPLAMA ARAÇLARI
══════════════════════════════════ */

/* Tab bar wrapper — yatay kaydırma */
.calc-tabs-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem; padding-bottom: 4px;
  scrollbar-width: thin; scrollbar-color: var(--gold-dark) transparent;
}
.calc-tabs-wrap::-webkit-scrollbar { height: 3px; }
.calc-tabs-wrap::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

.calc-tabs {
  display: flex; gap: 0.5rem;
  min-width: max-content;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding-bottom: 0;
}
.calc-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  color: rgba(255,255,255,0.55);
  border-radius: 10px 10px 0 0;
  padding: 0.6rem 1.2rem;
  font-size: 0.83rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: var(--transition);
}
.calc-tab:hover {
  background: rgba(201,168,76,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(201,168,76,0.2);
}
.calc-tab.active {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* Panel */
.calc-panel { display: none; animation: fadeInUp 0.4s ease; }
.calc-panel.active { display: block; }
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Form elements */
.calc-title {
  font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem;
}
.calc-desc {
  color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem;
}
.calc-label {
  display: block; color: rgba(255,255,255,0.7);
  font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.calc-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; border-radius: 10px;
  padding: 0.7rem 1rem; font-size: 0.9rem;
  transition: var(--transition); outline: none;
  -moz-appearance: textfield;
}
.calc-input::-webkit-inner-spin-button,
.calc-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-input::placeholder { color: rgba(255,255,255,0.25); }
.calc-input:focus {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.calc-input option { background: var(--dark-3); color: #fff; }

.calc-hint-badge {
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.6rem; border-radius: 20px; white-space: nowrap;
}

.calc-btn {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff; border: none; border-radius: 50px;
  padding: 0.75rem 2rem; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
  margin-top: 0.25rem; width: 100%; justify-content: center;
}
.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.45);
}

/* Result box */
.calc-result-box {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px; overflow: hidden;
  animation: fadeInUp 0.4s ease;
}
.calc-result-header {
  background: rgba(201,168,76,0.12);
  color: var(--gold); font-weight: 700; font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.calc-result-grid { padding: 0.5rem 0; }
.calc-result-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.calc-result-item:last-child { border-bottom: none; }
.calc-result-item.highlight {
  background: rgba(201,168,76,0.07);
}
.crk { color: var(--text-muted); font-size: 0.82rem; }
.crv { font-weight: 700; color: #fff; font-size: 0.95rem; }
.crv.gold { color: var(--gold); font-size: 1.05rem; }

/* Info box */
.calc-info-box { height: 100%; }
.calc-info-list {
  list-style: none; padding: 0; margin: 0;
}
.calc-info-list li {
  color: var(--text-muted); font-size: 0.83rem; line-height: 1.7;
  padding: 0.35rem 0; padding-left: 1.2rem; position: relative;
}
.calc-info-list li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

/* Rate table */
.calc-rate-table { border-radius: 10px; overflow: hidden; }
.calc-rate-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0.85rem; font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.calc-rate-row:last-child { border-bottom: none; }
.calc-rate-row.header {
  background: rgba(201,168,76,0.1);
  color: var(--gold); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.calc-rate-row:not(.header) {
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
}
.calc-rate-row:not(.header):hover { background: rgba(201,168,76,0.04); }

.hero-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; opacity: 0.15; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

/* ══════════════════════════════════
   PREMIUM 3D ENHANCEMENTS v3
══════════════════════════════════ */

/* Noise texture overlay for depth */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Cursor glow enhanced */
#cursor-glow {
  mix-blend-mode: screen;
}

/* Hero section ambient glow */
.hero-3d::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}

/* Section ambient orbs */
.section-3d { isolation: isolate; }
.section-3d::before {
  content: '';
  position: absolute; top: -100px; left: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,105,20,0.055) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Enhanced glass card 3D perspective on hover */
.glass-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Animated gold shimmer on glass card borders */
@keyframes shimmerBorder {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.glass-card:hover::before {
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.6) 50%, transparent 100%);
  background-size: 200% auto;
  animation: shimmerBorder 1.8s linear infinite;
}

/* Premium section titles with gradient */
.section-title-3d {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 50%, rgba(232,201,122,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Floating ambient light particles */
@keyframes ambientFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  33%       { transform: translate(30px, -25px) scale(1.1); opacity: 0.5; }
  66%       { transform: translate(-20px, 15px) scale(0.95); opacity: 0.25; }
}
@keyframes ambientFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  50%       { transform: translate(-35px, -40px) scale(1.15); opacity: 0.4; }
}

/* 3D tilt on service icons */
.service-card-3d:hover .service-icon-3d {
  transform: perspective(180px) translateZ(26px) rotateX(-8deg) rotateY(5deg);
}

/* Premium button glow pulse */
@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 12px 44px rgba(201,168,76,0.55), inset 0 1px 0 rgba(255,255,255,0.25), 0 0 60px rgba(201,168,76,0.2); }
}
.btn-3d-primary { animation: btnGlowPulse 3.5s ease-in-out infinite; }
.btn-3d-primary:hover { animation: none; }

/* Hero card enhanced 3D depth */
.hero-card-3d {
  transform-style: preserve-3d;
}
.hero-card-3d::before {
  content: '';
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
}

/* Team card depth shadow */
.team-card-3d {
  position: relative;
}
.team-card-3d::after {
  content: '';
  position: absolute; bottom: -15px; left: 15%; right: 15%; height: 30px;
  background: rgba(0,0,0,0.3);
  filter: blur(18px);
  border-radius: 50%; z-index: -1;
  transition: var(--transition);
}
.team-card-3d:hover::after {
  bottom: -20px; opacity: 0.7;
  filter: blur(25px);
}

/* Section divider enhanced */
.section-divider-3d::after {
  animation: dividerGlow 3s ease-in-out infinite;
}
@keyframes dividerGlow {
  0%, 100% { box-shadow: 0 0 14px var(--gold), 0 0 28px rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 22px var(--gold), 0 0 48px rgba(201,168,76,0.7), 0 0 80px rgba(201,168,76,0.3); }
}

/* Blog card enhanced image zoom */
.blog-card-3d:hover .blog-card-img {
  transform: scale(1.08) rotate(0.3deg);
}

/* WhyUs item left border accent on hover */
.whyus-item-3d {
  border-left: 3px solid transparent !important;
  transition: var(--transition), border-left-color 0.3s;
}
.whyus-item-3d:hover {
  border-left-color: var(--gold) !important;
  background: rgba(201,168,76,0.04) !important;
}

/* Testimonial card quote mark glow */
.testimonial-card-3d:hover .testimonial-quote {
  color: rgba(201,168,76,0.4);
  text-shadow: 0 0 30px rgba(201,168,76,0.25);
}

/* Contact form inputs - 3D inset */
.contact-form-3d .form-control {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
}
.contact-form-3d .form-control:focus {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1), 0 0 0 3px rgba(201,168,76,0.1);
}

/* FAQ accordion 3D open/close */
.faq-item.active-faq {
  border-color: rgba(201,168,76,0.18) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2), 0 0 0 1px rgba(201,168,76,0.06);
}

/* About image – subtle ken-burns on load */
@keyframes kenBurns {
  0%   { transform: perspective(700px) rotateY(0deg) scale(1); }
  50%  { transform: perspective(700px) rotateY(-3deg) scale(1.03); }
  100% { transform: perspective(700px) rotateY(0deg) scale(1); }
}
.about-img-wrap img { animation: kenBurns 10s ease-in-out infinite; }
.about-img-wrap:hover img { animation: none; transform: perspective(700px) rotateY(-6deg) rotateX(3deg); }

/* Footer social icon 3D pop */
.social-links a::before {
  content: ''; position: absolute; inset: 0; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), transparent);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.social-links a { position: relative; }
.social-links a:hover::before { opacity: 1; }

/* Scrollbar premium */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 3px; border: 1px solid rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Responsive cleanup */
@media (max-width: 768px) {
  .section-3d::before { display: none; }
  .hero-3d::after { height: 120px; }
  .about-img-wrap img { animation: none; }
}

/* Logo SVG in navbar — auto adapt */
.navbar-brand-3d img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }

/* ══════════════════════════════════
   GALERİ BÖLÜMİ
══════════════════════════════════ */
.gallery-filter-wrap {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-bottom: 1.5rem;
}
.gallery-filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  border-radius: 50px; padding: .4rem 1.1rem;
  font-size: .78rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item.hidden { display: none; }

.gallery-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--dark-3);
}
.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.gallery-img-wrap:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,12,20,0.82) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; align-items: flex-end;
}
.gallery-img-wrap:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
  padding: 1rem; width: 100%;
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.gallery-overlay-content p {
  color: rgba(255,255,255,0.88);
  font-size: .8rem; margin: 0; flex: 1;
  line-height: 1.4;
}
.gallery-cat-tag {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold); font-size: .68rem; font-weight: 700;
  padding: .15rem .55rem; border-radius: 20px;
  white-space: nowrap;
}
.gallery-zoom-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: var(--transition);
  flex-shrink: 0;
}
.gallery-zoom-btn:hover {
  background: var(--gold); border-color: var(--gold);
  transform: scale(1.1);
}

