/* ============================================================
   Av. Mehmet Akif Tamer Hukuk Bürosu — Premium Tasarım
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F4F0E8; --cream-2: #EAE3D2; --paper: #FBF8F2;
  --ink: #0B1F3A; --ink-2: #0E2546; --ink-soft: #1B3358;
  --gold: #B8985A; --gold-2: #D4B978; --gold-soft: #E8D7A7;
  --muted: #6B6557;
  --line: rgba(11, 31, 58, 0.12);
  --line-gold: rgba(184, 152, 90, 0.35);
  --shadow-sm: 0 4px 14px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 18px 40px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 30px 80px rgba(11, 31, 58, 0.18);
  --display: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); background: var(--cream); color: var(--ink);
  line-height: 1.6; overflow-x: hidden; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold); color: var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.container { width: min(1200px, 92%); margin: 0 auto; }
img { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11,31,58,0.04) 1px, transparent 0);
  background-size: 32px 32px; opacity: 0.6;
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(184,152,90,0.10), transparent 55%);
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--ink); color: var(--cream); font-size: 13px;
  padding: 9px 0; position: relative; z-index: 50;
  border-bottom: 1px solid rgba(184,152,90,0.3);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .left span { display: inline-flex; align-items: center; gap: 7px; opacity: 0.92; }
.topbar .left svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; }
.topbar .right { display: flex; gap: 14px; align-items: center; }
.topbar .right a { color: var(--gold-2); text-decoration: none; font-weight: 500; transition: color .2s; }
.topbar .right a:hover { color: var(--cream); }
@media (max-width: 720px) {
  .topbar { font-size: 12px; }
  .topbar .left span:nth-child(2), .topbar .left span:nth-child(3) { display: none; }
}

/* ============ NAVBAR ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.nav.scrolled { background: rgba(244, 240, 232, 0.98); box-shadow: var(--shadow-sm); }
.nav .inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand .mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  display: grid; place-items: center; position: relative; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(11,31,58,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.brand .mark::after { content: ''; position: absolute; inset: 3px; border-radius: 10px; border: 1px solid rgba(184,152,90,0.4); }
.brand .mark span { font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--gold-2); line-height: 1; transform: translateY(-1px); }
.brand .text { line-height: 1.1; }
.brand .text .name { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.2px; white-space: nowrap; }
.brand .text .sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 3px; font-weight: 600; }

.menu { display: flex; gap: 2px; align-items: center; }
.menu > a, .menu > .dropdown > a {
  text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 500;
  padding: 10px 14px; border-radius: 8px; position: relative;
  transition: color .2s var(--ease);
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
}
.menu > a::after, .menu > .dropdown > a::after {
  content: ''; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 1.5px; background: var(--gold);
  transform: translateX(-50%); transition: width .35s var(--ease);
}
.menu > a:hover::after, .menu > a.active::after,
.menu > .dropdown > a:hover::after, .menu > .dropdown.active > a::after { width: calc(100% - 28px); }

.dropdown { position: relative; }
.dropdown > a .caret { width: 10px; height: 10px; transition: transform .25s var(--ease); fill: none; stroke: currentColor; stroke-width: 2.5; }
.dropdown:hover > a .caret, .dropdown.open > a .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px; min-width: 340px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 200;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px;
  background: var(--cream); border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.dropdown-menu a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  text-decoration: none; color: var(--ink);
  transition: background .2s var(--ease);
}
.dropdown-menu a:hover { background: var(--paper); }
.dropdown-menu a .di {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); color: var(--gold-2);
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .25s var(--ease);
}
.dropdown-menu a .di svg { width: 17px; height: 17px; stroke-width: 1.7; fill: none; stroke: currentColor; }
.dropdown-menu a:hover .di { background: var(--gold); color: var(--ink); }
.dropdown-menu a .dt { font-weight: 600; font-size: 14px; line-height: 1.2; margin-bottom: 3px; }
.dropdown-menu a .dd { font-size: 11.5px; color: var(--muted); line-height: 1.4; }

.cta-btn {
  background: var(--ink); color: var(--cream);
  padding: 12px 22px; border-radius: 999px;
  text-decoration: none; font-size: 13.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s var(--ease);
  border: 1px solid var(--ink); letter-spacing: 0.3px; cursor: pointer;
}
.cta-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,152,90,0.35); }
.cta-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.cta-btn.ghost { background: transparent; color: var(--ink); }
.cta-btn.ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cta-btn.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cta-btn.gold:hover { background: var(--ink); color: var(--gold-2); border-color: var(--ink); }
.cta-btn.lg { padding: 16px 30px; font-size: 14.5px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; position: relative; padding: 0; }
.menu-toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); transition: all .3s var(--ease); }
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .menu {
    position: fixed; top: 0; right: -100%; width: min(360px, 88%); height: 100vh;
    background: var(--cream); flex-direction: column; align-items: stretch;
    padding: 90px 24px 32px; gap: 2px;
    box-shadow: -20px 0 60px rgba(11,31,58,0.18);
    transition: right .4s var(--ease); z-index: 90; overflow-y: auto;
  }
  .menu.open { right: 0; }
  .menu > a, .menu > .dropdown > a { padding: 14px 16px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; justify-content: space-between; }
  .menu > a::after, .menu > .dropdown > a::after { display: none; }
  .menu .cta-btn { margin-top: 16px; justify-content: center; }
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding: 4px 0 12px; min-width: auto;
    background: transparent; display: none; transition: none;
  }
  .dropdown-menu::before { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 10px 12px 10px 28px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu-overlay { position: fixed; inset: 0; background: rgba(11,31,58,0.4); z-index: 85; opacity: 0; visibility: hidden; transition: all .3s var(--ease); backdrop-filter: blur(4px); }
  .menu-overlay.open { opacity: 1; visibility: visible; }
}

/* ============ SECTIONS ============ */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-head { text-align: center; margin-bottom: clamp(50px, 7vw, 80px); max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head.left { text-align: left; margin-left: 0; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
.section-head.left .section-eyebrow::after { display: none; }

.section-title { font-family: var(--display); font-size: clamp(34px, 4.5vw, 56px); font-weight: 500; line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 22px; }
.section-title .italic { font-style: italic; color: var(--ink-soft); }
.section-title .gold { color: var(--gold); font-style: italic; }
.section-desc { font-size: 16.5px; color: var(--muted); line-height: 1.7; }

/* ============ HERO ============ */
.hero { position: relative; padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 10vw, 140px); overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s var(--ease) .1s forwards;
}
.hero-eyebrow::before { content: ''; width: 38px; height: 1.5px; background: var(--gold); display: inline-block; }

.hero h1 {
  font-family: var(--display); font-size: clamp(42px, 6.2vw, 84px);
  font-weight: 500; line-height: 1.02; letter-spacing: -1.2px;
  margin-bottom: 32px; color: var(--ink);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s var(--ease) .25s forwards;
}
.hero h1 .italic { font-style: italic; color: var(--ink-soft); font-weight: 400; }
.hero h1 .underline { display: inline-block; position: relative; color: var(--ink); }
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 14px; background: var(--gold-soft); z-index: -1; border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: scaleX 1s var(--ease) 1.2s forwards;
}
.hero p.lead {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--muted);
  max-width: 540px; margin-bottom: 40px; line-height: 1.7;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; opacity: 0; transform: translateY(20px); animation: fadeUp .9s var(--ease) .7s forwards; }
.hero-stats { display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); opacity: 0; transform: translateY(20px); animation: fadeUp .9s var(--ease) .9s forwards; }
.hero-stat .num { font-family: var(--display); font-size: clamp(32px, 3.5vw, 44px); font-weight: 500; color: var(--ink); line-height: 1; display: flex; align-items: baseline; gap: 3px; }
.hero-stat .num .plus { color: var(--gold); font-size: 0.7em; }
.hero-stat .label { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-top: 8px; font-weight: 600; }

.hero-visual { position: relative; opacity: 0; transform: translateY(40px) scale(0.96); animation: fadeUpScale 1.2s var(--ease) .4s forwards; }
.portrait-wrap { position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 1; }
.portrait-deco-ring { position: absolute; inset: -22px; border: 1.5px solid var(--gold); border-radius: 50%; opacity: 0.55; animation: spin 60s linear infinite; }
.portrait-deco-ring::before { content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; transform: translateX(-50%); }
.portrait-deco-ring-2 { position: absolute; inset: -50px; border: 1px dashed rgba(11,31,58,0.18); border-radius: 50%; }
.portrait-bg-blob { position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(184,152,90,0.25), transparent 60%); filter: blur(40px); z-index: 0; }
.portrait { position: relative; z-index: 1; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); box-shadow: 0 30px 80px rgba(11,31,58,0.28), 0 0 0 8px var(--cream), 0 0 0 9px var(--gold); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.04) saturate(1.05); }

.badge-float { position: absolute; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; z-index: 3; }
.badge-float .icon-wrap { width: 38px; height: 38px; border-radius: 10px; background: var(--ink); color: var(--gold-2); display: grid; place-items: center; }
.badge-float .icon-wrap svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.badge-float .info .t { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.badge-float .info .v { font-family: var(--display); font-size: 17px; color: var(--ink); font-weight: 600; line-height: 1.1; }
.badge-float.b1 { top: 8%; left: -20px; animation: floaty 5s ease-in-out infinite; }
.badge-float.b2 { bottom: 12%; right: -30px; animation: floaty 6s ease-in-out infinite 1.2s; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .portrait-wrap { max-width: 320px; }
  .badge-float.b1 { left: -10px; }
  .badge-float.b2 { right: -10px; }
  .hero-stats { justify-content: flex-start; }
}

.hero-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--display); font-size: clamp(180px, 28vw, 380px); font-weight: 400; font-style: italic; color: rgba(184,152,90,0.05); letter-spacing: -8px; white-space: nowrap; z-index: 0; pointer-events: none; user-select: none; }

/* ============ İÇ SAYFA HERO ============ */
.page-hero { position: relative; padding: clamp(60px, 7vw, 100px) 0 clamp(50px, 6vw, 80px); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--line-gold); }
.breadcrumb .now { color: var(--ink); font-weight: 600; }
.page-hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 72px); font-weight: 500; line-height: 1.05; letter-spacing: -0.8px; margin-bottom: 18px; max-width: 900px; }
.page-hero h1 .italic { font-style: italic; color: var(--ink-soft); }
.page-hero h1 .gold { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 720px; line-height: 1.7; }
.page-hero-bg { position: absolute; top: -20%; right: -10%; font-family: var(--display); font-size: clamp(200px, 30vw, 400px); font-style: italic; font-weight: 400; color: rgba(184,152,90,0.05); pointer-events: none; user-select: none; z-index: 0; }

/* ============ HAKKIMDA ============ */
.about { background: var(--paper); position: relative; }
.about::before, .about::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold), transparent); }
.about::before { top: 0; }
.about::after { bottom: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-visual { position: relative; }
.about-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px; position: relative; box-shadow: var(--shadow-md); }
.about-card .signature { font-family: var(--display); font-style: italic; font-size: 38px; color: var(--ink); font-weight: 500; letter-spacing: -0.5px; margin-bottom: 6px; }
.about-card .role { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.about-card .divider { height: 1px; background: var(--line); margin: 24px 0; }
.about-card .meta-row { display: flex; gap: 20px; padding: 10px 0; align-items: flex-start; }
.about-card .meta-row svg { flex-shrink: 0; width: 18px; height: 18px; stroke: var(--gold); margin-top: 3px; fill: none; stroke-width: 2; }
.about-card .meta-row .k { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.about-card .meta-row .v { font-size: 15px; color: var(--ink); font-weight: 500; }
.about-quote { margin-top: 24px; position: relative; padding: 22px 28px; background: var(--ink); color: var(--cream); border-radius: 14px; font-family: var(--display); font-style: italic; font-size: 18px; line-height: 1.55; }
.about-quote::before { content: '"'; position: absolute; top: -18px; left: 20px; font-family: var(--display); font-size: 88px; color: var(--gold); line-height: 1; }
.about-text h3 { font-family: var(--display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 500; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.3px; }
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.about-feature { padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); transition: all .35s var(--ease); }
.about-feature:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.about-feature .ic { width: 36px; height: 36px; border-radius: 9px; background: var(--ink); color: var(--gold-2); display: grid; place-items: center; margin-bottom: 12px; }
.about-feature .ic svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.about-feature h4 { font-family: var(--display); font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.about-feature p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-features { grid-template-columns: 1fr; } }

/* ============ HİZMETLER ============ */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.service-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 36px 30px 30px; overflow: hidden; transition: all .45s var(--ease); text-decoration: none; color: inherit; display: block; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); opacity: 0; transition: opacity .45s var(--ease); z-index: 0; }
.service-card::after { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle at 100% 0%, rgba(184,152,90,0.15), transparent 70%); z-index: 0; transition: all .5s var(--ease); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .s-num { color: var(--gold-2); }
.service-card:hover .s-title { color: var(--cream); }
.service-card:hover .s-desc { color: rgba(244,240,232,0.75); }
.service-card:hover .s-list li { color: rgba(244,240,232,0.85); }
.service-card:hover .s-list li::before { background: var(--gold); }
.service-card:hover .s-link { color: var(--gold-2); }
.service-card:hover .s-icon-wrap { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.service-card:hover::after { transform: scale(2); opacity: 0.5; }
.s-icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--cream); color: var(--ink); border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 22px; transition: all .4s var(--ease); }
.s-icon-wrap svg { width: 26px; height: 26px; stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.s-num { position: absolute; top: 22px; right: 26px; font-family: var(--display); font-size: 17px; color: var(--gold); font-weight: 500; transition: color .4s var(--ease); letter-spacing: 1px; }
.s-title { font-family: var(--display); font-size: 26px; font-weight: 600; margin-bottom: 12px; line-height: 1.15; transition: color .35s var(--ease); }
.s-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; transition: color .35s var(--ease); }
.s-list { list-style: none; margin-bottom: 24px; }
.s-list li { font-size: 13.5px; color: var(--ink-soft); padding: 6px 0 6px 18px; position: relative; transition: color .35s var(--ease); }
.s-list li::before { content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 1.5px; background: var(--ink); transition: background .35s var(--ease); }
.s-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); text-decoration: none; transition: all .35s var(--ease); }
.s-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); fill: none; stroke: currentColor; stroke-width: 2; }
.service-card:hover .s-link svg { transform: translateX(4px); }

/* ============ SÜREÇ ============ */
.process { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(184,152,90,0.06) 1px, transparent 0); background-size: 28px 28px; }
.process .section-title { color: var(--cream); }
.process .section-title .italic { color: var(--gold-2); }
.process .section-desc { color: rgba(244,240,232,0.7); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 4px; position: relative; }
.process-step { padding: 36px 28px; position: relative; border-right: 1px solid rgba(244,240,232,0.1); transition: background .35s var(--ease); }
.process-step:hover { background: rgba(184,152,90,0.06); }
.process-step:last-child { border-right: none; }
@media (max-width: 900px) { .process-step { border-right: none; border-bottom: 1px solid rgba(244,240,232,0.1); } }
.p-num { font-family: var(--display); font-size: 64px; font-weight: 400; color: var(--gold); line-height: 1; display: flex; align-items: baseline; margin-bottom: 18px; }
.p-num small { font-size: 16px; color: rgba(244,240,232,0.4); margin-left: 8px; }
.p-title { font-family: var(--display); font-size: 24px; font-weight: 600; margin-bottom: 10px; color: var(--cream); }
.p-desc { font-size: 14px; color: rgba(244,240,232,0.65); line-height: 1.65; }

/* ============ YORUMLAR ============ */
.testimonials { background: var(--paper); }
.t-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; }
.t-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; position: relative; transition: all .4s var(--ease); }
.t-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.t-card .quote-mark { font-family: var(--display); font-size: 64px; font-weight: 600; color: var(--gold); line-height: 1; height: 28px; margin-bottom: 14px; opacity: 0.9; }
.t-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.t-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.t-text { font-family: var(--display); font-size: 18.5px; font-weight: 400; line-height: 1.55; color: var(--ink); margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); display: grid; place-items: center; color: var(--ink); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.t-meta .n { font-weight: 600; font-size: 14.5px; }
.t-meta .r { font-size: 12px; color: var(--muted); letter-spacing: 0.4px; }

/* ============ BLOG ============ */
.blog { background: var(--cream); }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 50px; }
.blog-head .left { flex: 1; min-width: 280px; max-width: 620px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; }
.b-card { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: all .4s var(--ease); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.b-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.b-cover { height: 180px; position: relative; background: var(--ink); overflow: hidden; display: grid; place-items: center; }
.b-cover-art { position: absolute; inset: 0; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%); }
.b-cover-pattern { position: absolute; inset: 0; opacity: 0.6; width: 100%; height: 100%; }
.b-cover svg.icon { width: 56px; height: 56px; stroke: var(--gold-2); stroke-width: 1.3; position: relative; z-index: 2; transition: transform .5s var(--ease); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.b-card:hover .b-cover svg.icon { transform: scale(1.12) rotate(-5deg); }
.b-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--ink); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; padding: 5px 10px; border-radius: 6px; z-index: 3; }
.b-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.b-date { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.b-title { font-family: var(--display); font-size: 22px; font-weight: 600; line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.2px; }
.b-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.b-read { font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; margin-top: auto; }
.b-read::after { content: '→'; font-weight: 400; transition: transform .3s var(--ease); }
.b-card:hover .b-read::after { transform: translateX(5px); color: var(--gold); }

/* ============ SSS ============ */
.faq { background: var(--paper); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
@media (max-width: 900px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq-list { background: var(--cream); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); transition: color .25s var(--ease); }
.faq-q:hover { color: var(--gold); }
.faq-q .icon { width: 28px; height: 28px; flex-shrink: 0; position: relative; transition: transform .35s var(--ease); }
.faq-q .icon::before, .faq-q .icon::after { content: ''; position: absolute; left: 50%; top: 50%; background: var(--ink); transition: all .35s var(--ease); }
.faq-q .icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-q .icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q .icon::before { background: var(--gold); }
.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .35s var(--ease); padding: 0 28px; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 28px 26px; }
.faq-a p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }

/* ============ İLETİŞİM ============ */
.contact { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(184,152,90,0.12), transparent 50%); pointer-events: none; }
.contact .section-title { color: var(--cream); }
.contact .section-title .italic { color: var(--gold-2); }
.contact .section-desc { color: rgba(244,240,232,0.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; position: relative; z-index: 1; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.c-card { background: rgba(244,240,232,0.04); border: 1px solid rgba(244,240,232,0.1); border-radius: 14px; padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start; text-decoration: none; color: var(--cream); transition: all .35s var(--ease); }
.c-card:hover { background: rgba(184,152,90,0.12); border-color: var(--gold); transform: translateX(4px); }
.c-card .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--gold); color: var(--ink); display: grid; place-items: center; flex-shrink: 0; }
.c-card .ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.c-card .ic svg.wa { fill: currentColor; stroke: none; }
.c-card .info .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-2); font-weight: 700; margin-bottom: 4px; }
.c-card .info .val { font-size: 16px; font-weight: 500; line-height: 1.4; }
.c-card .info .sub { font-size: 13px; color: rgba(244,240,232,0.6); margin-top: 4px; }

.contact-form-wrap { background: var(--cream); color: var(--ink); border-radius: 18px; padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-lg); position: relative; }
.contact-form-wrap h3 { font-family: var(--display); font-size: 30px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.3px; }
.contact-form-wrap p.sub { color: var(--muted); margin-bottom: 26px; font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 16px; position: relative; }
.form-field label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 14px 16px; font-family: var(--body); font-size: 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; color: var(--ink); transition: all .25s var(--ease); font-weight: 500; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); background: var(--cream); box-shadow: 0 0 0 4px rgba(184,152,90,0.15); }
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--body); }
.form-field select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1F3A' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; cursor: pointer; }
.submit-btn { width: 100%; padding: 16px; background: var(--ink); color: var(--cream); border: none; border-radius: 10px; font-family: var(--body); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all .3s var(--ease); display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover { background: var(--gold); color: var(--ink); }
.submit-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.form-success { display: none; padding: 16px; background: rgba(184,152,90,0.15); border: 1px solid var(--gold); border-radius: 10px; color: var(--ink); font-size: 14.5px; margin-top: 16px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; fill: none; stroke-width: 2; }
.kvkk-note { font-size: 11.5px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.map-wrap { margin-top: 22px; border-radius: 14px; overflow: hidden; height: 240px; border: 1px solid rgba(244,240,232,0.1); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.25) contrast(1.05); }

/* ============ FOOTER ============ */
.footer { background: #07172E; color: var(--cream); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.f-col h5 { font-family: var(--display); font-size: 19px; font-weight: 600; margin-bottom: 18px; color: var(--gold-2); }
.f-col p, .f-col a { color: rgba(244,240,232,0.65); font-size: 14px; line-height: 1.7; }
.f-col a { text-decoration: none; display: block; padding: 4px 0; transition: color .25s var(--ease); }
.f-col a:hover { color: var(--gold); }
.f-brand-text { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.f-brand-role { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.f-socials { display: flex; gap: 10px; margin-top: 18px; }
.f-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(244,240,232,0.08); border: 1px solid rgba(244,240,232,0.12); display: grid; place-items: center; transition: all .3s var(--ease); padding: 0; }
.f-socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.f-socials a:hover svg { stroke: var(--ink); fill: var(--ink); }
.f-socials svg { width: 17px; height: 17px; stroke: var(--cream); fill: none; stroke-width: 1.8; }
.f-socials svg.wa { fill: var(--cream); stroke: none; }
.f-socials a:hover svg.wa { fill: var(--ink); }
.f-bottom { padding-top: 26px; border-top: 1px solid rgba(244,240,232,0.1); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: rgba(244,240,232,0.45); }
.f-bottom a { color: rgba(244,240,232,0.55); text-decoration: none; transition: color .25s; }
.f-bottom a:hover { color: var(--gold); }
.f-disclaimer { font-size: 11.5px; color: rgba(244,240,232,0.4); text-align: center; margin-top: 14px; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ============ FLOATING WHATSAPP ============ */
.fab-wa { position: fixed; bottom: 22px; right: 22px; z-index: 50; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; text-decoration: none; box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.7); transition: transform .3s var(--ease); animation: pulseWa 2.5s infinite; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 28px; height: 28px; fill: currentColor; }
.fab-wa .tip { position: absolute; right: 70px; background: var(--ink); color: var(--cream); padding: 8px 14px; border-radius: 8px; font-size: 12.5px; font-weight: 500; white-space: nowrap; opacity: 0; transform: translateX(5px); transition: all .3s var(--ease); pointer-events: none; }
.fab-wa:hover .tip { opacity: 1; transform: translateX(0); }
@keyframes pulseWa {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ HİZMET DETAY SAYFASI ============ */
.service-detail { background: var(--cream); padding: clamp(50px, 7vw, 100px) 0; }
.sd-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(40px, 5vw, 70px); align-items: start; }
@media (max-width: 980px) { .sd-grid { grid-template-columns: 1fr; } }
.sd-main { font-size: 16px; color: var(--ink-soft); line-height: 1.8; }
.sd-main > * { margin-bottom: 24px; }
.sd-main h2 { font-family: var(--display); font-size: clamp(28px, 3.2vw, 38px); font-weight: 600; color: var(--ink); line-height: 1.2; margin-top: 40px; letter-spacing: -0.3px; position: relative; padding-left: 22px; }
.sd-main h2::before { content: ''; position: absolute; left: 0; top: 14px; width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); }
.sd-main h3 { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--ink); margin-top: 28px; margin-bottom: 14px; line-height: 1.3; }
.sd-main p { color: var(--ink-soft); line-height: 1.85; }
.sd-main p strong { color: var(--ink); font-weight: 600; }
.sd-main ul { padding-left: 0; list-style: none; }
.sd-main ul li { position: relative; padding: 8px 0 8px 28px; line-height: 1.7; color: var(--ink-soft); }
.sd-main ul li::before { content: ''; position: absolute; left: 4px; top: 18px; width: 10px; height: 1.5px; background: var(--gold); }
.sd-main .callout { background: var(--paper); border-left: 3px solid var(--gold); padding: 22px 26px; border-radius: 8px; margin: 28px 0; font-style: italic; font-family: var(--display); font-size: 19px; color: var(--ink); line-height: 1.55; }
.sd-main .info-box { background: var(--ink); color: var(--cream); padding: 28px 30px; border-radius: 14px; margin: 32px 0; }
.sd-main .info-box h4 { font-family: var(--display); font-size: 22px; font-weight: 600; margin-bottom: 12px; color: var(--gold-2); }
.sd-main .info-box p { color: rgba(244,240,232,0.8); margin: 0; font-size: 15px; }

.sd-sidebar { position: sticky; top: 100px; }
.sd-sidebar > div { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; margin-bottom: 18px; }
.sd-sidebar h4 { font-family: var(--display); font-size: 20px; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
.sd-sidebar .sd-cta { background: var(--ink); color: var(--cream); border-color: var(--ink); padding: 30px 24px; text-align: center; }
.sd-sidebar .sd-cta h4 { color: var(--gold-2); font-size: 24px; }
.sd-sidebar .sd-cta p { font-size: 14px; color: rgba(244,240,232,0.75); margin-bottom: 18px; line-height: 1.6; }
.sd-sidebar .sd-cta .cta-btn { width: 100%; justify-content: center; background: var(--gold); color: var(--ink); border-color: var(--gold); margin-bottom: 8px; }
.sd-sidebar .sd-cta .cta-btn:hover { background: var(--cream); border-color: var(--cream); }
.sd-sidebar .sd-cta .cta-btn.ghost { background: transparent; color: var(--cream); border-color: rgba(244,240,232,0.3); }
.sd-sidebar .sd-cta .cta-btn.ghost:hover { background: rgba(244,240,232,0.1); border-color: var(--gold-2); }
.sd-list a { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--ink-soft); text-decoration: none; font-size: 14px; border-bottom: 1px solid var(--line); transition: color .2s var(--ease); }
.sd-list a:last-child { border-bottom: none; }
.sd-list a:hover { color: var(--gold); }
.sd-list a::before { content: '→'; color: var(--gold); }
.sd-list a.curr { color: var(--gold); font-weight: 600; }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--cream); padding: clamp(50px, 7vw, 90px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(184,152,90,0.18), transparent 50%); }
.cta-band .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .cta-band .container { grid-template-columns: 1fr; text-align: center; } }
.cta-band h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 48px); font-weight: 500; line-height: 1.1; letter-spacing: -0.4px; margin-bottom: 12px; }
.cta-band h2 .italic { font-style: italic; color: var(--gold-2); }
.cta-band p { color: rgba(244,240,232,0.7); font-size: 16px; line-height: 1.65; max-width: 540px; }
@media (max-width: 800px) { .cta-band p { margin: 0 auto; } }
.cta-band .ctas { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 800px) { .cta-band .ctas { justify-content: center; } }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUpScale { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes scaleX { to { transform: scaleX(1); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .portrait-deco-ring { animation: none; }
  .fab-wa { animation: none; }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
@media print { .nav, .topbar, .fab-wa, .contact-form-wrap, .hero-bg-text { display: none; } }

/* === MOBİL NAV DÜZELTME === */
@media (max-width: 1080px) {
  .nav .inner { padding: 14px 0; gap: 10px; }
  .brand { flex: 1; min-width: 0; }  /* taşmayı engelle */
  .brand .mark { width: 40px; height: 40px; flex-shrink: 0; }
  .brand .mark span { font-size: 24px; }
  .brand .text { display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
  .brand .text .name { font-size: 16px; line-height: 1.15; white-space: normal; }
  .brand .text .sub { font-size: 9.5px; letter-spacing: 1.4px; margin-top: 4px; line-height: 1; }
  .menu-toggle { flex-shrink: 0; }
}
@media (max-width: 560px) {
  .brand .text .name { font-size: 15px; }
  .brand .text .sub { font-size: 9px; letter-spacing: 1.2px; }
}
@media (max-width: 400px) {
  .brand .text .sub { display: none; }
  .brand .text .name { font-size: 14.5px; line-height: 1.2; }
  .brand { gap: 9px; }
  .brand .mark { width: 36px; height: 36px; }
  .brand .mark span { font-size: 21px; }
}

/* === Geliştirici İmzası === */
.dev-credit {
  display: block;
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(244,240,232,0.05);
  font-size: 10.5px;
  letter-spacing: 0.8px;
  color: rgba(244,240,232,0.28);
  font-weight: 400;
  transition: color .3s var(--ease);
}
.dev-credit a {
  color: rgba(244,240,232,0.35);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.dev-credit:hover, .dev-credit a:hover { color: var(--gold); }

/* === MOBİL HERO === */
@media (max-width: 960px) {
  .hero { min-height: auto !important; display: block !important; padding: 24px 0 50px !important; }
}


/* ====================================================== */
/* === MOBİL TAM FIX — TİTREŞİM SIFIR — KESİN ÇÖZÜM === */
/* ====================================================== */
@media (max-width: 960px) {
  /* TÜM badge animasyonlarını TAMAMEN durdur */
  .badge-float,
  .badge-float.b1,
  .badge-float.b2 {
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
    transform: none !important;
    will-change: auto !important;
  }
  /* Dönen halkaları da durdur */
  .portrait-deco-ring {
    animation: none !important;
    -webkit-animation: none !important;
  }
  .portrait-deco-ring::before {
    display: none !important;
  }
  /* Hero visual'ı düzgün yerleştir */
  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto 30px;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .portrait-wrap {
    max-width: 320px !important;
    margin: 0 auto !important;
    aspect-ratio: 1 !important;
  }
  /* Badge'leri portrait kenarına sabit konumla */
  .badge-float {
    box-shadow: 0 4px 12px rgba(11,31,58,0.10) !important;
  }
  .badge-float.b1 {
    top: 8% !important;
    left: -8px !important;
    bottom: auto !important;
    right: auto !important;
    padding: 10px 12px !important;
  }
  .badge-float.b2 {
    bottom: 10% !important;
    right: -8px !important;
    top: auto !important;
    left: auto !important;
    padding: 10px 12px !important;
  }
  /* Badge metinlerini küçült */
  .badge-float .icon-wrap {
    width: 32px !important;
    height: 32px !important;
  }
  .badge-float .icon-wrap svg {
    width: 15px !important;
    height: 15px !important;
  }
  .badge-float .info .t {
    font-size: 9.5px !important;
    letter-spacing: 0.8px !important;
  }
  .badge-float .info .v {
    font-size: 14px !important;
  }
}

/* Küçük telefonlarda (560px ve altı) badge'leri tamamen kaldır */
@media (max-width: 560px) {
  .badge-float.b1,
  .badge-float.b2 {
    display: none !important;
  }
  .portrait-wrap {
    max-width: 280px !important;
  }
  .portrait-deco-ring-2 {
    inset: -25px !important;
  }
  .portrait-deco-ring {
    inset: -12px !important;
  }
}

/* Reduce motion - kullanıcı tercihine de saygı */
@media (prefers-reduced-motion: reduce) {
  .badge-float, .portrait-deco-ring, .hero-visual, .hero-bg-text {
    animation: none !important;
    transition: none !important;
  }
}
