/* ============================================
   SAN HUKUK Ã¢â‚¬â€ ANA STÃ„Â°L DOSYASI
   ============================================ */

/* =============== DEÃ„ÂÃ„Â°Ã…ÂKENLER =============== */
:root {
  --primary:      hsl(222, 47%, 11%);
  --primary-dk:   hsl(222, 47%, 7%);
  --gold:         hsl(41, 44%, 58%);
  --gold-lt:      hsl(41, 55%, 65%);
  --gold-dim:     hsla(41, 44%, 58%, 0.14);
  --text:         hsl(210, 11%, 15%);
  --muted:        hsl(215, 16%, 47%);
  --text-lt:      hsl(210, 40%, 98%);
  --bg:           hsl(210, 40%, 98%);
  --white:        #ffffff;
  --border:       hsla(214, 32%, 91%, 0.5);
  --glass-bg:     hsla(222, 47%, 11%, 0.7);
  --glass-bg-w:   hsla(0, 0%, 100%, 0.85);
  --sh-sm:        0 4px 14px hsla(0,0,0,.05);
  --sh-md:        0 10px 40px hsla(0,0,0,.08);
  --sh-lg:        0 20px 60px hsla(0,0,0,.15);
  --glow:         0 0 20px hsla(41, 44%, 58%, 0.4);
  --r:            12px;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;
  --ease:         .4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============== RESET =============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--sans); color: var(--white); background: var(--primary-dk); line-height: 1.65; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); line-height: 1.2; color: var(--white); }
a  { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--sans); cursor: pointer; }

/* =============== LAYOUT =============== */
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* =============== YARDIMCI =============== */
.gold   { color: var(--gold) !important; }
.center { text-align: center; }
.bg     { background: transparent; }

/* Section badge Ã¢â‚¬â€ sol ÃƒÂ§izgi her zaman solda */
.section-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-badge::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
/* Center hizalamasÃ„Â±nda badge'i ortala Ã¢â‚¬â€ ama ÃƒÂ§izgi yerinde kalsÃ„Â±n */
.section-header.center .section-badge {
  justify-content: center;
}

.section-header        { margin-bottom: 52px; }
.section-header h2     { font-size: clamp(24px, 3vw, 36px); color: var(--white); }
.section-header p.sub  { font-size: 15px; color: rgba(255, 255, 255, 0.7); margin-top: 10px; max-width: 560px; }
.section-header.center p.sub { margin-left: auto; margin-right: auto; }

/* =============== BUTONLAR =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 30px;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
  box-shadow: var(--sh-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-lg   { padding: 16px 34px; font-size: 14px; }
.btn-sm   { padding: 9px 18px;  font-size: 11px; }

.btn-gold         { background: var(--gold);    color: var(--white);   border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-lt); border-color: var(--gold-lt); box-shadow: var(--glow); }

.btn-white        { background: var(--white);   color: var(--primary); border-color: var(--white); }
.btn-white:hover  { background: transparent;    color: var(--white); }

.btn-ghost        { background: hsla(0,0%,100%,.05); color: var(--white); border-color: hsla(0,0%,100%,.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost:hover  { background: hsla(0,0%,100%,.15); border-color: var(--white); }

.btn-dark         { background: var(--primary); color: var(--white);   border-color: var(--primary); }
.btn-dark:hover   { background: var(--primary-dk); border-color: var(--primary-dk); box-shadow: var(--sh-md); }

.btn-outline      { background: transparent;    color: var(--white); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--primary-dk);  border-color: var(--gold); }

/* =============== TOP BAR =============== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  padding: 10px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.top-bar-left a, .top-bar-right a {
  color: hsla(0,0%,100%,.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--ease);
}
.top-bar-left a:hover, .top-bar-right a:hover {
  color: var(--gold);
}

/* =============== NAVBAR =============== */
  .site-header {
    position: absolute;
    width: 100%;
    top: 10vh;
    z-index: 200;
  }
  .header-band {
    background: #ffffff;
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 4px;
    width: 100%;
  }
  .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      height: 100%;
      position: relative;
  }
  .nav-logo-circle { 
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 180px;
      height: 180px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
      z-index: 10;
      border: 8px solid #ffffff;
  }
  .nav-logo-circle img { 
      width: 80%; 
      height: auto; 
      transition: 0.3s ease; 
      object-fit: contain;
  }
  .nav-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }
  .nav-cta img { height: 70px; width: auto; transition: 0.3s ease; }
  
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 220px;
    gap: 15px;
  }
  .nav-links a {
    color: #444444;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 15px;
    position: relative;
    transition: color var(--ease);
    text-decoration: none;
  }
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  text-shadow: none;
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: var(--primary);
  border: none;
  border-radius: var(--r);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--ease);
}

/* Mobil aÃƒÂ§Ã„Â±k menÃƒÂ¼ */
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 74px; left: 0; right: 0;
  background: var(--primary-dk);
  padding: 12px 20px 20px;
  gap: 2px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.nav-mobile-open .nav-links a { padding: 11px 14px; }

/* =============== HERO =============== */
.hero-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  position: relative;
  overflow: hidden;
  padding: calc(10vh + 160px) 0 100px;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(41,44%,58%,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-badge-line { width: 30px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero-text h1 {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 15px;
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Foto tarafÃ„Â± */
.hero-photo { position: relative; }
.hero-img-wrap {
  position: relative;
  max-width: 100%;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--r);
  position: relative; z-index: 2;
  box-shadow: var(--sh-lg);
}
.hero-img-frame {
  position: absolute;
  top: -16px; right: -16px; bottom: 16px; left: 16px;
  border: 1.5px solid rgba(197,162,101,.3);
  border-radius: var(--r);
  z-index: 1;
  pointer-events: none;
}
.hero-lawyer-tag {
  position: absolute;
  bottom: -24px; left: 0;
  background: var(--primary-dk);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  box-shadow: var(--sh-md);
}
.lawyer-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  white-space: nowrap;
}
.lawyer-info strong { display: block; font-size: 14px; color: var(--white); font-weight: 500; }
.lawyer-info span   { font-size: 12px; color: rgba(255,255,255,.5); }

/* =============== SECTION ORTAK PADDING =============== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* =============== HAKKIMIZDA =============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  position: relative; z-index: 2;
}
.about-dots {
  position: absolute;
  top: -24px; left: -24px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px) 0 0 / 13px 13px;
  opacity: .22;
  z-index: 1;
}
.about-text h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 18px; }
.about-text .lead { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
}
.about-list li i { color: var(--gold); font-size: 13px; flex-shrink: 0; }

/* =============== HÃ„Â°ZMETLER =============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.svc-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary), var(--primary-dk));
  aspect-ratio: 1 / 1;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  cursor: default;
  border: 1px solid hsla(41, 44%, 58%, 0.15);
  box-shadow: var(--sh-md);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--gold);
}
.svc-card:hover .svc-illustration { opacity: .9; transform: scale(1.04); }
.svc-card:hover .svc-icon-wrap {
  background: linear-gradient(135deg, rgba(197,162,101,.45), rgba(197,162,101,.18));
}

/* SVG illÃƒÂ¼strasyon arka plan */
.svc-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .65;
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.svc-illustration svg {
  width: 65%;
  height: 65%;
  color: var(--gold);
  stroke-width: 3;
}

/* Alt gradient */
.svc-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(6,9,19,.98) 0%,
    rgba(6,9,19,.6)  45%,
    rgba(6,9,19,.05) 100%);
  pointer-events: none;
}

.svc-body {
  position: relative; z-index: 2;
  padding: 12px 14px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-icon-wrap {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(197,162,101,.28), rgba(197,162,101,.1));
  border: 1px solid rgba(197,162,101,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 13px;
  transition: background var(--ease);
}
.svc-card h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: .1px;
}

/* =============== EKÃ„Â°P =============== */
.team-card {
  background: var(--glass-bg-w);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-8px); }
.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-card:nth-child(1) .team-photo {
  object-position: center center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 720px;
  margin: 0 auto;
}

/* Ã„Â°Ã…Å¸birliÃ„Å¸i ofisleri */
.partner-wrap { margin-top: 56px; text-align: center; }
.partner-wrap h4 {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 20px 32px;
  min-width: 180px;
}
.partner-city   { font-family: var(--serif); font-size: 16px; color: var(--gold); margin-bottom: 5px; }
.partner-lawyer { font-size: 13px; color: var(--muted); }

/* =============== BAÃ…ÂARI HÃ„Â°KAYELERÃ„Â° =============== */
.success-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.story-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  transition: transform var(--ease), box-shadow var(--ease);
}
.story-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.story-icon {
  position: absolute; top: 22px; right: 22px;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
}
.story-card h3 { font-size: 19px; margin-bottom: 7px; }
.story-card p  { font-size: 13px; opacity: .78; margin-bottom: 14px; line-height: 1.5; }
.story-link {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
}
.story-link:hover { color: var(--gold-lt); }

/* =============== EMSAL KARARLAR =============== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.article-card {
  background: var(--glass-bg-w);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.article-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); }
.article-thumb { width: 100%; height: 195px; object-fit: cover; }
.article-body  { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-date  {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 9px;
}
.article-body h3 {
  font-size: 16px; line-height: 1.35;
  color: var(--primary); margin-bottom: 11px;
}
.article-summary {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  flex: 1; margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--primary);
  margin-top: auto;
  transition: color var(--ease);
}
.article-more:hover { color: var(--gold); }

/* =============== PREMIUM GLASS LAYOUT =============== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body {
  background: radial-gradient(circle at top right, #1e293b, #0f172a);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}

.glass-section {
  position: relative;
}

/* Base Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(197, 162, 101, 0.4); /* gold tint */
}

/* Services */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.svc-card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.4s ease;
}
.svc-card-glass:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.svc-card-glass .svc-icon-wrap {
  width: 70px; height: 70px;
  background: rgba(197, 162, 101, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 28px;
  transition: transform 0.4s ease;
}
.svc-card-glass:hover .svc-icon-wrap {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--primary-dk);
}
.svc-card-glass h3 { font-size: 18px; color: var(--white); font-weight: 600; }

/* Team */
.team-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.team-card-glass {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card-glass .team-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card-glass:hover .team-photo { transform: scale(1.05); }

/* Premium Team Overlay */
.team-overlay-premium {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, rgba(15, 23, 42, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.team-name-premium {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  margin: 0 0 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.team-title-premium {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}


.partner-wrap-premium {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r);
}
.partner-card-glass {
  padding: 20px;
  text-align: center;
}

/* Articles */
.articles-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.article-card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.article-card-glass:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 162, 101, 0.5);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.article-body-glass {
  padding: 30px;
  display: flex; flex-direction: column; flex: 1;
}
.article-body-glass h3 { font-size: 20px; color: var(--white); margin: 10px 0; }
.article-body-glass .article-summary { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.article-body-glass .article-more { margin-top: auto; color: var(--gold); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }

/* =============== FOOTER =============== */
.footer { background: var(--primary); color: rgba(255,255,255,.6); }

/* Ã„Â°letiÃ…Å¸im / form bloÃ„Å¸u Ã¢â‚¬â€ footer'Ã„Â±n baÃ…Å¸Ã„Â±nda ayrÃ„Â± section */
.footer-contact {
  background: var(--white);
}
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}
.fc-form {
  padding: 48px 44px;
  border-right: 1px solid var(--border);
}
.fc-form h3    { font-size: 21px; color: var(--primary); margin-bottom: 5px; }
.fc-form p.sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }

.contact-form { display: flex; flex-direction: column; gap: 11px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); background: var(--white); }
.contact-form textarea { resize: vertical; min-height: 96px; }

.fc-info {
  background: var(--primary-dk);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  border-right: 1px solid rgba(255,255,255,.05);
}
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci-ico { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.ci-txt strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--white); margin-bottom: 5px; }
.ci-txt p,
.ci-txt a { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.55; }
.ci-txt a:hover { color: var(--gold); }

.fc-map {
  position: relative;
  background: url('../images/bg-contactPage.jpg') center/cover no-repeat;
  min-height: 260px;
}
.fc-map-overlay {
  position: absolute; inset: 0;
  background: rgba(11,17,32,.72);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.fc-map:hover .fc-map-overlay { background: rgba(11,17,32,.55); }

/* Footer ana gÃƒÂ¶vde */
.footer-body { padding: 56px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  line-height: 1.8;
  margin: 18px 0 22px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  transition: border-color var(--ease), color var(--ease);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a  { font-size: 13px; color: rgba(255,255,255,.52); }
.footer-col ul a:hover { color: var(--gold); }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.52);
  line-height: 1.55; margin-bottom: 13px;
}
.footer-contact-list li i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,.52); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom { background: var(--primary-dk); padding: 16px 0; }
.footer-btm-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.38);
  gap: 16px; flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,.38); }
.footer-legal a:hover { color: var(--gold); }

/* =============== ALT SAYFA ORTAK =============== */
.page-hero {
  background: var(--primary);
  padding: 250px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  display: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.45);
  margin-bottom: 14px; flex-wrap: wrap;
}
.breadcrumb a           { color: rgba(255,255,255,.45); }
.breadcrumb a:hover     { color: var(--gold); }
.breadcrumb-sep         { color: rgba(255,255,255,.25); font-size: 9px; }
.page-hero h1           { font-size: clamp(26px, 4vw, 44px); color: var(--white); }
.page-hero .page-sub    { font-size: 15px; color: rgba(255,255,255,.62); margin-top: 12px; max-width: 580px; }

.page-content { padding: 72px 0 96px; }

/* =============== AVUKAT PROFÃ„Â°L =============== */
.lawyer-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.lawyer-photo {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--sh-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.lawyer-name   { font-size: clamp(24px, 3vw, 36px); margin-bottom: 5px; }
.lawyer-title  { font-size: 14px; color: var(--gold); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 22px; }
.lawyer-meta-list { margin-bottom: 22px; }
.lawyer-meta-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--muted);
  margin-bottom: 9px; line-height: 1.4;
}
.lawyer-meta-list li i { color: var(--gold); width: 15px; flex-shrink: 0; margin-top: 2px; }
.lawyer-area-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 12px;
}
.lawyer-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.lawyer-tag {
  background: var(--gold-dim);
  color: #7a5f2a;
  font-size: 12px; font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
}
.lawyer-divider {
  height: 1px; background: var(--border);
  margin-top: 28px; margin-bottom: 28px;
}

/* =============== KARAR DETAY =============== */
.article-detail { max-width: 800px; margin: 0 auto; }
.detail-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 26px; flex-wrap: wrap;
}
.detail-badge {
  background: var(--gold-dim); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 13px; border-radius: 20px;
}
.detail-cat { font-size: 12px; color: var(--muted); }
.article-detail h1  { font-size: clamp(20px, 3vw, 32px); line-height: 1.25; margin-bottom: 26px; }
.detail-img         { display: block; max-width: 100%; height: auto; margin: 0 auto 32px; border-radius: var(--r); }
.detail-summary {
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 48px;
  font-style: italic;
}
.detail-body { font-size: 18px; color: rgba(255, 255, 255, 0.78); line-height: 1.9; letter-spacing: 0.1px; }
.detail-body p { margin-bottom: 28px; }
.detail-body h2, .detail-body h3, .detail-body h4 { color: var(--white); font-family: var(--serif); line-height: 1.35; }
.detail-body h2 { font-size: 32px; font-weight: 700; margin: 56px 0 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 12px; }
.detail-body h3 { font-size: 24px; font-weight: 600; margin: 40px 0 18px; color: var(--gold); }
.detail-body h4 { font-size: 20px; font-weight: 600; margin: 30px 0 15px; }
.detail-body ul, .detail-body ol { margin-bottom: 30px; padding-left: 24px; }
.detail-body li { margin-bottom: 14px; line-height: 1.8; list-style-type: square; }
.detail-body li::marker { color: var(--gold); }
.detail-body strong, .detail-body b { color: var(--gold-lt); font-weight: 600; }

.article-nav {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.article-nav-back { text-align: center; margin-top: 32px; }

/* =============== RESPONSÃ„Â°F =============== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-photo  { display: none; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img   { max-width: 400px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid-premium { grid-template-columns: repeat(2, 1fr); }
  .articles-grid-premium { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-contact-grid { grid-template-columns: 1fr 1fr; }
  .fc-map      { display: none; }
  .lawyer-profile { grid-template-columns: 220px 1fr; gap: 32px; }
  .page-hero { padding: 180px 0 40px; }
  
  /* Split layout fixes */
  .left-column, .right-column { gap: 40px; }
  .white-box { padding: 40px 20px; }
  .team-grid-split { grid-template-columns: repeat(2, 1fr); }
  .split-footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .hamburger   { display: flex; }
  .nav-links   { display: none; }
  .nav-cta     { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .stories-grid { grid-template-columns: 1fr; }
  .cards-grid  { grid-template-columns: 1fr; }
  .footer-contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .success-head { flex-direction: column; align-items: flex-start; }
  .lawyer-profile { grid-template-columns: 1fr; }
  .lawyer-photo { max-width: 240px; }
  .page-hero { padding: 140px 0 30px; }
  .article-nav  { flex-direction: column; }
  .about-list   { grid-template-columns: 1fr; }
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Split layout fixes */
  .services-grid-split { grid-template-columns: 1fr; }
  .articles-grid-split { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-premium { grid-template-columns: 1fr; }
  .articles-grid-premium { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .fc-form       { padding: 32px 24px; }
  .section       { padding: 64px 0; }
  
  /* Split layout fixes */
  .team-grid-split { grid-template-columns: 1fr; }
  .main-split-container { margin-top: 0px; padding: 0 10px; }
}

/* =============== ANIMASYONLAR =============== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   YÃƒÂ¼zen (Floating) Butonlar
   ========================================================================== */
.floating-btn {
  position: fixed;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  color: white;
}
.floating-whatsapp {
  right: 20px;
  background-color: #25D366;
}
.floating-phone {
  left: 20px;
  background-color: var(--gold, #d4af37);
  display: none; /* Sadece mobilde gÃƒÂ¶rÃƒÂ¼nmesi iÃƒÂ§in varsayÃ„Â±lan gizli */
}

/* Sadece Mobilde Telefon GÃƒÂ¶rÃƒÂ¼nsÃƒÂ¼n */
@media (max-width: 768px) {
  .floating-phone {
    display: flex;
  }
}




/* === Ozel Responsive Header Ayarlari === */
@media (max-width: 1200px) {
  .nav-links { gap: 10px; margin-left: 180px; }
  .nav-links a { font-size: 14px; padding: 6px 10px; }
  .nav-logo-circle { width: 150px; height: 150px; border-width: 6px; }
  .nav-logo-circle img { width: 75%; }
}

@media (max-width: 980px) {
  .nav-cta { display: none; }
  .nav-links { margin-left: 140px; gap: 8px; }
  .nav-links a { font-size: 13px; padding: 6px 8px; }
  .nav-logo-circle { width: 120px; height: 120px; border-width: 4px; }
  .header-band { height: 70px; }
  .site-header { top: 5vh; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav-logo-circle { width: 100px; height: 100px; border-width: 4px; }
  .header-band { height: 60px; }
  .site-header { top: 0; }
  .nav-mobile-open .nav-links {
    display: flex !important;
    top: 60px;
    margin-left: 0;
  }
}
