:root {
  --dark: #10100f;
  --dark-2: #171716;
  --cream: #f7f4ef;
  --white: #fff;
  --muted: #77716a;
  --line: #e5dfd7;
  --gold: #b98a63;
  --gold-2: #d0a47a;
  --burgundy: #7a101b;
  --shadow: 0 24px 70px rgba(17, 15, 13, .12)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, sans-serif;
  background: #fff;
  color: #171513;
  line-height: 1.6
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 114px;
  display: flex;
  align-items: flex-start;
  padding-top: 15px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 82px, rgba(255, 255, 255, .92) 88px, rgba(255, 255, 255, .65) 96px, rgba(255, 255, 255, .25) 105px, rgba(255, 255, 255, 0) 114px);
  pointer-events: none
}

.navbar .container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1500px, calc(100% - 60px));
  max-width: none
}

.logo {
  display: flex;
  align-items: center
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain
}

.menu {
  display: flex;
  gap: 40px;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap
}

.menu a {
  position: relative;
  color: #1a1a1a;
  transition: color .35s ease;
  padding-bottom: 4px
}

.menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--gold);
  transform-origin: bottom right;
  transition: transform .35s cubic-bezier(.86, 0, .07, 1)
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left
}

.menu a:hover {
  color: var(--gold)
}

.btn-nav {
  font-family: Inter, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #111;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  background: #111;
  color: #fff;
  text-transform: uppercase;
  transition: all .3s ease;
  white-space: nowrap
}

.btn-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #111;
  cursor: pointer
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5
}


.hero {
  min-height: 78vh;
  padding-top: 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(5 4 4 / 50%) 0%, rgba(5, 4, 4, .60) 38%, rgba(5, 4, 4, .06) 64%, rgba(5, 4, 4, .28) 100%), url('../img/banner.png') center 25%/cover no-repeat
}

.hero::before {
  display: none
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 55%, rgba(208, 164, 122, .18), transparent 40%);
  pointer-events: none;
  z-index: 1
}

.hero-inner {
  z-index: 2;
  min-height: 65vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center
}

.hero-3d-model {
  position: absolute;
  right: 4%;
  bottom: 2%;
  width: 38%;
  height: 85%;
  z-index: 10
}

model-viewer {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  --poster-color: transparent;
  touch-action: pan-y;
  --touch-action: pan-y
}

.eyebrow {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .7);
  font-weight: 600
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.03em;
  margin-bottom: 26px
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 .gold {
  color: var(--gold-2)
}

.hero p {
  font-family: Inter, sans-serif;
  max-width: 480px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 34px;
  font-size: 14px;
  line-height: 1.7
}

.btn {
  font-family: Inter, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(185, 138, 99, .75);
  padding: 13px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  background: rgba(15, 12, 10, .18);
  color: #fff;
  text-transform: uppercase;
  transition: background .25s, border-color .25s
}

.btn:hover {
  background: rgba(185, 138, 99, .25);
  border-color: var(--gold-2)
}

.slider-no {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 44px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65)
}

.slider-no .line {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, .7)
}

section {
  padding: 70px 0
}







#services {
  padding: 0;
  height: auto;
  overflow: visible;
  background: #faf8f5;
  border-top: 1px solid var(--line)
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line)
}

.section-title {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #171513;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 0
}

.view-all {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s, color .3s
}

.view-all:hover {
  gap: 12px;
  color: var(--gold)
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.practice-card {
  height: auto;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 8px 14px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  overflow: visible;
  z-index: 1
}

.practice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #c09a6e, #a07850);
  transition: opacity .45s cubic-bezier(.4, 0, .2, 1);
  z-index: -1;
  opacity: 0
}

.practice-card:hover::before {
  opacity: 1
}

.practice-card::after {
  display: none
}

.icon-wrap {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: color .35s ease;
  position: relative;
  z-index: 1
}

.icon-wrap svg {
  width: 58px;
  height: 58px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none
}

.practice-card:hover .icon-wrap {
  color: #fff
}

.card-num {
  display: none
}

.practice-card h3 {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #4a4540;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  max-width: 100%;
  transition: color .35s ease;
  position: relative;
  z-index: 1
}

.practice-card:hover h3 {
  color: #fff
}


.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
  letter-spacing: -.02em
}

.sec-h2 em {
  font-style: italic;
  color: var(--gold)
}

.sec-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 560px;
  margin-top: 18px
}


.elite-about {
  padding: 30px 0 30px;
  background: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 2px
}

.about-subtitle {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
  margin-bottom: 24px
}

.about-content p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px
}

.about-list,
.about-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0
}

.about-list li,
.about-content ul li {
  position: relative;
  padding-left: 24px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
  font-weight: 500
}

.about-list li::before,
.about-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 32px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .3s;
  text-decoration: none
}

.btn-dark:hover {
  background: var(--gold)
}


.elite-stats {
  background: #111;
  padding: 32px 0
}

.e-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}

.e-stat-box {
  text-align: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  position: relative
}

.e-stat-box:last-child {
  border-right: none
}

.e-stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold)
}

.e-stat-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.3
}

.e-stat-box strong {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  line-height: 1
}

.e-stat-box span {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .12em;
  text-transform: uppercase
}


.elite-lawyers {
  padding: 30px 0 100px;
  background-color: #fdfcfb;
  background-image: url('../img/hero.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.lawyer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.lawyer-head-left {
  display: flex;
  flex-direction: column;
}

.lawyer-full-divider {
  width: 100%;
  height: 1px;
  background: rgba(185, 138, 99, 0.3);
  margin-bottom: 50px;
}

.prem-lawyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.prem-lawyer-card {
  background: #fff;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.prem-lawyer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.prem-lawyer-img {
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.prem-lawyer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prem-lawyer-card:hover .prem-lawyer-img img {
  transform: scale(1.06);
}


.prem-lawyer-info {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.lawyer-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.lawyer-details p {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}


.lawyer-social {
  width: 38px;
  height: 38px;
  border: 1px solid #f0efed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s;
  background: #fff;
  flex-shrink: 0;
}

.lawyer-social:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

@media(max-width: 900px) {
  .prem-lawyer-grid {
    grid-template-columns: 1fr;
  }

  .lawyer-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}







.elite-why {
  padding: 70px 0;
  background: #f9f7f4
}

.why-header {
  text-align: center;
  margin-bottom: 60px
}

.why-header .sec-label {
  color: var(--gold);
  justify-content: center
}

.why-header .sec-label::before {
  background: var(--gold)
}

.why-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 500;
  color: #111;
  margin-top: 16px
}

.why-header p {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #666;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.8
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.why-card {
  padding: 48px 40px;
  background: #fff;
  border: 1px solid #ebe8e3;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .04);
  position: relative;
  transition: all .4s
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border-color: #ddd
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(185, 138, 99, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  transition: all .4s
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.why-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3
}

.why-card p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.8
}


.elite-testimonials {
  padding: 0;
  background: #faf8f5;
  overflow: hidden
}

.testi-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  min-height: 700px;
  max-width: 1280px;
  margin: 0 auto
}

.testi-left-panel {
  background: #faf8f5;
  position: relative;
  padding: 60px 40px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden
}

.testi-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-bottom: 32px
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 18px;
  width: fit-content;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04)
}

.testi-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke-width: 1.5
}

.testi-left-text {
  position: relative;
  z-index: 2
}

.testi-left-text .sec-label {
  color: var(--gold)
}

.testi-left-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #111;
  line-height: 1.2;
  margin-top: 12px;
  max-width: 380px
}

.testi-left-text h2 em {
  font-style: italic;
  color: var(--gold)
}

.testi-left-text .testi-lead {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 340px
}

.testi-count-bar {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  position: relative;
  z-index: 2;
  max-width: 380px
}

.testi-count strong {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px
}

.testi-count span {
  font-family: Inter, sans-serif;
  font-size: 9px;
  color: #888;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: block
}

.testi-center-model {
  background: #faf8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0
}

.testi-center-model model-viewer {
  width: 100%;
  height: 800px;
  min-height: 800px;
  touch-action: none;
  cursor: default
}

.testi-center-dual {
  flex-direction: column;
  gap: 0;
  position: relative
}

.testi-center-dual model-viewer:first-child {
  height: 300px;
  min-height: 300px;
  flex-shrink: 0
}

.testi-center-dual model-viewer:last-child {
  height: 500px;
  min-height: 500px;
  flex: 1
}


.testi-right-panel {
  padding: 60px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center
}

.testi-value-card {
  padding: 24px 28px;
  border: 1px solid var(--line);
  transition: all .3s
}

.testi-value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  transform: translateY(-2px)
}

.tv-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--gold);
  transition: all .3s
}

.testi-value-card:hover .tv-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.tv-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5
}

.testi-value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px
}

.testi-value-card p {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin: 0
}


.elite-insights {
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden
}

.insights-banner {
  position: relative;
  padding: 100px 0;
  background-color: #111;
  background-image: linear-gradient(135deg, rgba(17, 17, 17, .88) 0%, rgba(17, 17, 17, .75) 50%, rgba(17, 17, 17, .65) 100%), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1920&q=80');
  background-position: center, center;
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start
}

.blog-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px
}

.blog-left p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin-bottom: 32px
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  transition: all .3s;
  cursor: pointer
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff
}

.blog-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.blog-card {
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, border-color .3s, background .3s;
  display: flex;
  flex-direction: column
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 138, 99, .4);
  background: rgba(255, 255, 255, .12)
}

.blog-img {
  height: 200px;
  width: 100%;
  overflow: hidden
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  opacity: .9
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
  opacity: 1
}

.blog-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.blog-tag {
  display: inline-block;
  background: rgba(185, 138, 99, .15);
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  margin-bottom: 14px;
  align-self: flex-start;
  letter-spacing: .05em;
  backdrop-filter: blur(4px)
}

.blog-info h3 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5
}

.blog-date {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: auto
}


.elite-contact {
  padding: 100px 0;
  background: #faf8f5
}

.e-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden
}

.e-contact-left {
  background: #111;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.e-contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2
}

.e-contact-left>p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-bottom: 44px
}

.e-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.e-cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.e-cd-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0
}

.e-cd-icon svg {
  width: 16px;
  height: 16px
}

.e-cd-item strong {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  display: block;
  margin-bottom: 4px
}

.e-cd-item p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  margin: 0
}

.e-contact-right {
  background: #fff;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.e-contact-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px
}

.e-contact-right>p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #999;
  margin-bottom: 36px
}

.e-form {
  display: flex;
  flex-direction: column;
  gap: 0
}

.e-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.e-field {
  position: relative;
  border-bottom: 1px solid #e8e4de
}

.e-field input,
.e-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 0;
  color: #111;
  font-family: Inter, sans-serif;
  font-size: 14px;
  outline: none;
  transition: color .3s
}

.e-field input::placeholder,
.e-field textarea::placeholder {
  color: #bbb;
  font-size: 13px
}

.e-field::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .4s
}

.e-field:focus-within::after {
  width: 100%
}

.e-field textarea {
  resize: none;
  min-height: 90px;
  padding-top: 18px
}

.btn-elite-solid {
  margin-top: 28px;
  align-self: flex-start;
  background: #111;
  color: #fff;
  border: 2px solid #111;
  padding: 15px 36px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s
}

.btn-elite-solid:hover {
  background: var(--gold);
  border-color: var(--gold)
}



.cf-section {
  padding: 100px 0;
  background: #f9f7f4;
  position: relative;
  overflow: hidden
}

.cf-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?auto=format&fit=crop&w=1920&q=40') center/cover no-repeat;
  opacity: .06;
  pointer-events: none
}

.cf-head {
  text-align: center;
  margin-bottom: 52px
}

.cf-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 16px
}

.cf-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px
}

.cf-heading {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 500;
  color: #111;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px
}

.cf-heading em {
  font-style: italic;
  color: var(--gold)
}

.cf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px
}

.cf-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold))
}

.cf-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--gold))
}

.cf-desc {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8
}

.cf-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 60px
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 0
}

.cf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0
}

.cf-ifield {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #e8e3dc;
  margin: -1px 0 0 -1px
}

.cf-ifield:focus-within {
  border-color: var(--gold);
  z-index: 1
}

.cf-iicon {
  width: 48px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5bfb7;
  flex-shrink: 0;
  border-right: 1px solid #e8e3dc;
  transition: color .3s
}

.cf-iicon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5
}

.cf-ifield:focus-within .cf-iicon {
  color: var(--gold);
  border-right-color: var(--gold)
}

.cf-ifield input,
.cf-ifield textarea,
.cf-ifield select {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 16px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #111;
  background: transparent;
  min-height: 56px
}

.cf-ifield input::placeholder,
.cf-ifield textarea::placeholder {
  color: #bbb6ae;
  font-size: 14px
}

.cf-ifield select {
  cursor: pointer;
  color: #c0bab3;
  appearance: none
}

.cf-ifield select.selected,
.cf-ifield select:not([value=""]) {
  color: #111
}

.cf-select-wrap {
  position: relative
}

.cf-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #c0bab3
}

.cf-select-arrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 2
}

.cf-textarea-field {
  align-items: flex-start;
  margin-top: -1px
}

.cf-iicon-top {
  height: 56px;
  align-self: flex-start
}

.cf-ifield textarea {
  min-height: 120px;
  resize: none;
  padding-top: 18px
}

.cf-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line)
}

.cf-kvkk input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer
}

.cf-kvkk label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  cursor: pointer
}

.cf-kvkk label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px
}

.cf-kvkk label a:hover {
  color: #111
}

.cf-submit {
  width: 100%;
  margin-top: 4px;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.cf-submit:hover {
  background: #111;
  letter-spacing: .2em
}

@media(max-width:900px) {
  .cf-grid-2 {
    grid-template-columns: 1fr
  }

  .cf-card {
    padding: 36px 24px
  }

  .cf-heading {
    font-size: 32px
  }
}






footer {
  background: #0d0d0d;
  color: #fff
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px
}

.footer-brand p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85
}

.f-col h4 {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px
}

.f-col a,
.f-col p {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 10px;
  transition: color .3s;
  cursor: pointer
}

.f-col a:hover {
  color: var(--gold)
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-bottom span {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .3)
}

.footer-bottom-links {
  display: flex;
  gap: 28px
}

.footer-bottom-links a {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  transition: color .3s
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .6)
}


.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  backdrop-filter: blur(4px)
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 320px;
  max-width: 88vw;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -12px 0 60px rgba(0, 0, 0, .14);
  overflow-y: auto
}

.mobile-menu-overlay.active {
  transform: translateX(0)
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 2px solid #f0ece6
}

.mobile-menu-header .mm-logo {
  height: 42px;
  width: auto;
  object-fit: contain
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .2s
}

.mobile-menu-close:hover {
  color: #111
}

.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  flex: 1
}

.mobile-menu-overlay a {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #888;
  text-transform: uppercase;
  padding: 17px 24px;
  border-bottom: 1px solid #f5f3f0;
  transition: all .25s;
  position: relative
}

.mobile-menu-overlay a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width .25s ease
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.active {
  color: #111;
  background: #faf8f5;
  padding-left: 32px
}

.mobile-menu-overlay a:hover::after,
.mobile-menu-overlay a.active::after {
  width: 3px
}

.mobile-menu-info {
  padding: 24px;
  border-top: 2px solid #f0ece6;
  background: #faf8f5
}

.mobile-menu-info p {
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 8px
}

.mobile-menu-info a.mm-tel {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 8px
}

.mobile-menu-info .mm-addr {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #aaa;
  letter-spacing: .04em
}

.m-break {
  display: none
}


@media(max-width:900px) {
  .m-break {
    display: block
  }

  .menu,
  .btn-nav {
    display: none !important
  }

  .mobile-menu-btn {
    display: block !important
  }

  .elite-grid,
  .e-stats-grid,
  .prem-lawyer-grid,
  .e-input-group,
  .footer-grid,
  .about-grid,
  .why-grid,
  .blog-grid-new,
  .blog-layout,
  .testi-split,
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .elite-lawyers {
    background-position: right top
  }

  .hero-3d-model {
    position: absolute;
    bottom: 18vh;
    left: auto;
    right: -15vw;
    margin: 0;
    width: 66vw;
    height: 38vh;
    transform: scale(1)
  }

  .testi-left-panel {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    align-items: center
  }

  .testi-right-panel {
    padding: 40px 20px
  }

  .testi-center-model {
    min-height: 400px;
    padding: 20px 0
  }

  .testi-center-model model-viewer {
    min-height: 400px
  }

  .testi-count-bar {
    justify-content: center;
    gap: 20px;
    width: 100%
  }

  .testi-count {
    text-align: center
  }

  .e-contact-split {
    grid-template-columns: 1fr
  }

  .e-contact-left,
  .e-contact-right {
    padding: 50px 30px
  }

  .sec-h2,
  .about-content h2,
  .blog-left h2 {
    font-size: 34px
  }

  .hero {
    min-height: 58vh;
    background: linear-gradient(180deg, rgba(5, 4, 4, .45) 0%, rgba(5, 4, 4, .25) 40%, rgba(5, 4, 4, .55) 100%), url('../img/banner.png') 80% 100%/cover no-repeat
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 20px;
    min-height: 59vh
  }

  h1 {
    font-size: 38px;
    margin-bottom: 8px;
    line-height: 1.1
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-inner p {
    max-width: 60%;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px
  }

  .slider-no {
    margin-top: 24px
  }

  #services {
    padding: 0 !important
  }

  .practice-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
  }

  .practice-card {
    height: auto !important;
    min-height: 115px !important;
    padding: 14px 6px 12px !important;
    gap: 6px !important;
    border-right: 1px solid var(--line) !important;
    border-bottom: 1px solid var(--line) !important;
    overflow: visible !important
  }

  .practice-card .icon-wrap {
    width: 44px;
    height: 44px;
    margin: 0 auto 4px
  }

  .practice-card .icon-wrap svg {
    width: 44px;
    height: 44px;
    stroke-width: 1
  }

  .practice-card h3 {
    font-size: 10px !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    overflow: visible !important;
    text-overflow: unset !important
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }

  .why-card {
    padding: 32px 24px
  }

  .lawyer-head h2,
  .testi-left-text h2,
  .blog-left h2 {
    font-size: 32px
  }

  .e-contact-left h2 {
    font-size: 30px
  }
}




.inner-hero {
  position: relative;
  padding-top: 114px;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(90deg, rgba(5, 4, 4, .92) 0%, rgba(5, 4, 4, .70) 50%, rgba(5, 4, 4, .50) 100%), url('../img/banner.png') center 20%/cover no-repeat;
  overflow: hidden
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(185, 138, 99, .12), transparent 55%);
  pointer-events: none
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 70px
}

.inner-hero-content .page-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px
}

.inner-hero-content .page-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold)
}

.inner-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px
}

.inner-hero-content .page-desc {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  max-width: 650px;
  line-height: 1.8
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .05em
}

.breadcrumb a {
  color: rgba(255, 255, 255, .45);
  transition: color .3s
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb span {
  color: rgba(255, 255, 255, .25)
}

.breadcrumb .current {
  color: var(--gold-2)
}


.menu a.active,
.menu a.active::after {
  color: var(--gold);
  transform: scaleX(1);
  transform-origin: bottom left
}


.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 70px 0
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all .4s;
  cursor: pointer
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-2), var(--gold));
  transition: height .45s cubic-bezier(.4, 0, .2, 1)
}

.service-detail-card:hover::before {
  height: 100%
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  border-color: rgba(185, 138, 99, .2)
}

.sdc-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(185, 138, 99, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  transition: all .4s
}

.service-detail-card:hover .sdc-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.sdc-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5
}

.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3
}

.service-detail-card p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 28px
}

.service-link {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s
}

.service-link:hover {
  gap: 14px
}


.process-section {
  padding: 80px 0;
  background: #faf8f5
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(185, 138, 99, .3), var(--gold));
  z-index: 0
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.process-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px
}

.process-step p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.7
}


.faq-section {
  padding: 80px 0;
  background: #fff
}

.faq-list {
  max-width: 780px;
  margin: 50px auto 0
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  transition: color .3s;
  gap: 20px
}

.faq-question:hover {
  color: var(--gold)
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .35s
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1), padding .3s
}

.faq-answer p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  padding-bottom: 24px
}


.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 138, 99, .12), transparent 70%);
  pointer-events: none
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-inner .sec-label {
  justify-content: center;
  color: var(--gold-2)
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  margin: 16px 0;
  line-height: 1.2
}

.cta-inner p {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8
}


.blog-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.filter-btn {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: #777;
  cursor: pointer;
  transition: all .3s
}

.filter-btn.active,
.filter-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111
}


.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.blog-page-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .4s
}

.blog-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border-color: rgba(185, 138, 99, .2)
}

.blog-page-card .blog-img {
  height: 220px
}

.blog-page-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.blog-page-card:hover .blog-img img {
  transform: scale(1.05)
}

.blog-page-info {
  padding: 28px
}

.blog-page-info .blog-tag {
  display: inline-block;
  background: rgba(185, 138, 99, .1);
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  margin-bottom: 14px;
  letter-spacing: .05em
}

.blog-page-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 12px
}

.blog-page-info .blog-excerpt {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px
}

.blog-page-info .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #aaa
}

.blog-page-info .read-more {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s
}

.blog-page-card:hover .read-more {
  gap: 10px
}


.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 60px;
  background: #fff;
  transition: all .4s
}

.featured-post:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .09)
}

.featured-post .fp-img {
  height: 460px;
  overflow: hidden
}

.featured-post .fp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.featured-post:hover .fp-img img {
  transform: scale(1.04)
}

.featured-post .fp-content {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.fp-content .blog-tag {
  display: inline-block;
  background: rgba(185, 138, 99, .1);
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  margin-bottom: 22px;
  letter-spacing: .05em;
  align-self: flex-start
}

.fp-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  margin-bottom: 18px
}

.fp-content p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 32px
}

.fp-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #aaa
}


.lawyers-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px
}

.lawyer-page-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .4s
}

.lawyer-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .09)
}

.lpc-img {
  height: 380px;
  overflow: hidden;
  position: relative
}

.lpc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.lawyer-page-card:hover .lpc-img img {
  transform: scale(1.04)
}

.lpc-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(17, 17, 17, .85);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border: 1px solid rgba(185, 138, 99, .3)
}

.lpc-badge span {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: var(--gold-2);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase
}

.lpc-info {
  padding: 28px 32px;
  border-top: 1px solid var(--line)
}

.lpc-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin-bottom: 6px
}

.lpc-info .lpc-role {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.lpc-info .lpc-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px
}

.lpc-expertise-tag {
  font-family: Inter, sans-serif;
  font-size: 10px;
  color: #777;
  border: 1px solid var(--line);
  padding: 4px 12px;
  letter-spacing: .02em
}

.lpc-info .lpc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line)
}

.lpc-actions a.in-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all .3s
}

.lpc-actions a.in-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.lpc-actions .mail-btn {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #777;
  font-weight: 500;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .3s
}

.lpc-actions .mail-btn:hover {
  color: var(--gold)
}


.career-cta {
  background: #faf8f5;
  border: 1px solid var(--line);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 80px
}

.career-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px
}

.career-cta p {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #777;
  line-height: 1.7
}


.values-section {
  padding: 80px 0;
  background: #faf8f5
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px
}

.value-card {
  background: #fff;
  padding: 44px 36px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .4s
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.value-card:hover::after {
  transform: scaleX(1)
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08)
}

.value-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(185, 138, 99, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  transition: all .4s
}

.value-card:hover .value-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: #111;
  margin-bottom: 12px
}

.value-card p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.8
}


.quote-section {
  padding: 80px 0;
  background: #fff
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px
}

.quote-box blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #111;
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative
}

.quote-box blockquote::before {
  content: '\201C';
  font-size: 120px;
  color: rgba(185, 138, 99, .15);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: 'Playfair Display', serif;
  line-height: 1
}

.quote-box cite {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-style: normal
}


.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(20%) contrast(1.05)
}

.contact-page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden
}


@media(max-width:900px) {
  .inner-hero-content h1 {
    font-size: 38px
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .process-grid::before {
    display: none
  }

  .faq-list {
    padding: 0 20px
  }

  .blog-page-grid {
    grid-template-columns: 1fr
  }

  .lawyers-page-grid {
    grid-template-columns: 1fr
  }

  .featured-post {
    grid-template-columns: 1fr
  }

  .featured-post .fp-img {
    height: 280px
  }

  .fp-content {
    padding: 36px 28px
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .career-cta {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .contact-page-split {
    grid-template-columns: 1fr
  }

  .quote-box {
    padding: 40px 20px
  }

  .quote-box blockquote {
    font-size: 20px
  }
}


@media(min-width:2400px) {
  .hero-3d-model {
    bottom: 3%
  }
}


.hizmet-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.hizmet-detail-img {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative
}

.hizmet-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.alt-hizmet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.alt-hizmet-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 28px;
  transition: all .4s;
  position: relative;
  overflow: hidden
}

.alt-hizmet-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.alt-hizmet-card:hover::before {
  transform: scaleX(1)
}

.alt-hizmet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08)
}

.ah-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(185, 138, 99, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all .4s
}

.alt-hizmet-card:hover .ah-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.ah-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5
}

.alt-hizmet-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px
}

.alt-hizmet-card p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.8
}

@media(max-width:900px) {
  .hizmet-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .hizmet-detail-img {
    height: 280px
  }

  .alt-hizmet-grid {
    grid-template-columns: 1fr
  }
}


.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

@media(max-width:900px) {
  .hizmet-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }
}

@media(max-width:600px) {
  .hizmet-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

.hizmet-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column
}

.hizmet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .12);
  border-color: rgba(185, 138, 99, .3)
}

.hizmet-card-img {
  height: 280px;
  overflow: hidden;
  position: relative
}

.hizmet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1)
}

.hizmet-card:hover .hizmet-card-img img {
  transform: scale(1.07)
}

.hizmet-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(17, 15, 13, .55) 100%)
}

.hizmet-card-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(185, 138, 99, .92);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  z-index: 2
}

.hizmet-card-badge span {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff
}

.hizmet-card-body {
  padding: 28px 32px 32px;
  border-top: 3px solid transparent;
  transition: border-color .35s;
  flex: 1;
  display: flex;
  flex-direction: column
}

.hizmet-card:hover .hizmet-card-body {
  border-top-color: var(--gold)
}

.hizmet-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 500;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3
}

.hizmet-card-body p {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1
}

.hizmet-card-link {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
  margin-top: auto
}

.hizmet-card:hover .hizmet-card-link {
  gap: 14px
}

.blog-filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid var(--line)
}

.blog-filter-bar::-webkit-scrollbar {
  display: none
}

.blog-filter-bar .filter-btn {
  white-space: nowrap;
  flex-shrink: 0;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: #777;
  cursor: pointer;
  border-radius: 2px;
  transition: all .25s
}

.blog-filter-bar .filter-btn.active,
.blog-filter-bar .filter-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111
}


.blog-cta-wrap {
  margin-top: 40px;
  text-align: center
}

.blog-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  background: #111;
  color: #fff;
  padding: 18px 32px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .3s;
  border: none;
  cursor: pointer
}

.blog-cta-btn:hover {
  background: var(--gold)
}


@media(max-width:768px) {
  .blog-page-grid {
    display: flex;
    flex-direction: column;
    gap: 0
  }

  .blog-page-card {
    display: flex;
    flex-direction: row;
    gap: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    background: transparent;
    overflow: visible;
    transition: none
  }

  .blog-page-card:hover {
    transform: none;
    box-shadow: none
  }

  .blog-page-card .blog-img {
    width: 130px;
    min-width: 130px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0
  }

  .blog-page-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  .blog-page-info {
    padding: 0 0 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex: 1
  }

  .blog-date {
    font-family: Inter, sans-serif;
    font-size: 11px;
    color: #aaa;
    font-weight: 400
  }

  .blog-page-info h3 {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin: 0
  }

  .blog-page-info .read-more {
    color: var(--gold);
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px
  }

  .blog-cta-btn {
    max-width: 100%
  }


  .testi-center-model model-viewer {
    pointer-events: none !important
  }


  .testi-split {
    grid-template-columns: 1fr;
    min-height: unset;
    gap: 0
  }

  .testi-center-model {
    padding: 0;
    margin: 0
  }

  .testi-center-dual model-viewer:first-child {
    height: 200px;
    min-height: 200px
  }

  .testi-center-dual model-viewer:last-child {
    height: 300px;
    min-height: 300px
  }

  .testi-left-panel {
    padding: 32px 24px 0
  }

  .testi-right-panel {
    padding: 0 24px 24px
  }

}


.quote-section {
  padding: 80px 0;
  background: #fff
}

.quote-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px
}

.quote-box blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #111;
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative
}

.quote-box blockquote::before {
  content: '\201C';
  font-size: 120px;
  color: rgba(185, 138, 99, .15);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: 'Playfair Display', serif;
  line-height: 1
}

.quote-box cite {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-style: normal
}

@media(max-width:900px) {
  .quote-box {
    padding: 40px 20px
  }

  .quote-box blockquote {
    font-size: 20px
  }
}


.prem-lawyer-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.prem-lawyer-card--link:hover .prem-lawyer-info {
  background: #faf8f5;
}

.lawyer-profil-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #f0efed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s;
  background: #fff;
  flex-shrink: 0;
  line-height: 1;
}

.prem-lawyer-card--link:hover .lawyer-profil-arrow {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateX(3px);
}



.avd-section {
  padding: 90px 0 110px;
  background: #fff;
}

.avd-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.avd-sidebar {
  position: sticky;
  top: 128px;
}

.avd-profil-kart {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .06);
}

.avd-foto-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.avd-foto {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .7s cubic-bezier(.165, .84, .44, 1);
}

.avd-profil-kart:hover .avd-foto {
  transform: scale(1.04);
}

.avd-foto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(17, 15, 13, .75) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.avd-overlay-inner {
  padding: 20px 22px;
}

.avd-overlay-unvan {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.avd-profil-meta {
  padding: 24px 26px 28px;
  border-top: 3px solid var(--gold);
}

.avd-profil-isim {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0 0 5px;
  line-height: 1.2;
}

.avd-profil-unvan {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.avd-iletisim-grup {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 28px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.avd-iletisim-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: all .3s ease;
  border: 1.5px solid var(--gold);
  background: #fff;
  padding: 8px 20px 8px 8px;
  border-radius: 40px;
  word-break: break-word;
  width: 100%;
  box-shadow: 0 4px 15px rgba(185, 138, 99, 0.08);
}

.avd-iletisim-btn svg {
  background: var(--gold);
  color: #fff;
  width: 16px;
  height: 16px;
  padding: 10px;
  border-radius: 50%;
  box-sizing: content-box;
  flex-shrink: 0;
  transition: all .3s ease;
}

.avd-iletisim-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(185, 138, 99, 0.2);
}

.avd-iletisim-btn:hover svg {
  background: #fff;
  color: var(--gold);
}

.avd-linkedin-btn {
  border-color: #0a66c2;
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.08);
}

.avd-linkedin-btn svg {
  background: #0a66c2;
}

.avd-linkedin-btn:hover {
  background: #0a66c2;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.2);
}

.avd-linkedin-btn:hover svg {
  background: #fff;
  color: #0a66c2;
}

.avd-randevu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #111;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px;
  text-decoration: none;
  transition: background .3s;
  margin-top: 8px;
}

.avd-randevu-btn:hover {
  background: var(--gold);
}

.avd-icerik {
  min-width: 0;
}

.avd-bio-blok {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
}

.avd-bio-baslik {
  margin-bottom: 36px;
}

.avd-bio-isim {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #111;
  margin: 14px 0 8px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.avd-bio-unvan {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.avd-gold-cizgi {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-2));
  margin-top: 20px;
}

.avd-bio-icerik {
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  line-height: 2;
  color: #4a4545;
}

.avd-bio-icerik p {
  margin-bottom: 20px;
}

.avd-bio-icerik h2,
.avd-bio-icerik h3,
.avd-bio-icerik h4 {
  font-family: 'Playfair Display', serif;
  color: #111;
  margin: 36px 0 14px;
  font-weight: 500;
}

.avd-bio-icerik strong {
  color: #222;
  font-weight: 600;
}

.avd-bio-icerik ul,
.avd-bio-icerik ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.avd-bio-icerik li {
  margin-bottom: 9px;
}

.avd-bio-icerik blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: #faf8f5;
  margin: 28px 0;
  font-style: italic;
  color: #666;
}

.avd-bio-placeholder {
  padding: 60px 40px;
  background: #faf8f5;
  border: 1px solid var(--line);
  text-align: center;
  color: #aaa;
  font-family: Inter, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avd-diger-bolum {
  margin-bottom: 52px;
}

.avd-diger-baslik-wrap {
  margin-bottom: 28px;
}

.avd-diger-h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #111;
  margin: 10px 0 0;
}

.avd-diger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.avd-diger-kart {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #faf8f5;
  text-decoration: none;
  color: inherit;
  transition: all .28s;
  position: relative;
  overflow: hidden;
}

.avd-diger-kart::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.avd-diger-kart:hover::before {
  transform: scaleX(1);
}

.avd-diger-kart:hover {
  border-color: rgba(185, 138, 99, .3);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.avd-diger-foto img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
  display: block;
  flex-shrink: 0;
  transition: border-color .3s;
}

.avd-diger-kart:hover .avd-diger-foto img {
  border-color: var(--gold);
}

.avd-diger-bilgi {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.avd-diger-bilgi strong {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s;
}

.avd-diger-kart:hover .avd-diger-bilgi strong {
  color: var(--gold);
}

.avd-diger-bilgi span {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.avd-diger-ok {
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .28s;
  flex-shrink: 0;
}

.avd-diger-kart:hover .avd-diger-ok {
  opacity: 1;
  transform: translateX(0);
}

.avd-alt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  gap: 20px;
}

.avd-iletisim-cta {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}

.avd-iletisim-cta:hover {
  gap: 14px;
}

@media(max-width:1100px) {
  .avd-layout {
    grid-template-columns: 290px 1fr;
    gap: 48px
  }

  .avd-diger-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:900px) {
  .avd-section {
    padding: 60px 0 80px
  }

  .avd-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .avd-sidebar {
    position: static
  }

  .avd-foto-wrap {
    height: auto
  }

  .avd-diger-grid {
    grid-template-columns: 1fr
  }

  .avd-alt-nav {
    flex-direction: column;
    align-items: flex-start
  }
}

@media(max-width:600px) {
  .avd-foto-wrap {
    height: auto
  }

  .avd-bio-blok {
    padding-bottom: 36px;
    margin-bottom: 36px
  }

  .avd-diger-bolum {
    margin-bottom: 36px
  }
}




.blog-icerik {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  line-height: 1.95;
  color: #2c2926;
  counter-reset: none;
}


.blog-icerik p {
  margin: 0 0 1.6em;
  font-family: Inter, sans-serif;
  font-size: 16.5px;
  line-height: 1.95;
  color: #3a3530;
}


.blog-icerik h1,
.blog-icerik h2,
.blog-icerik h3,
.blog-icerik h4,
.blog-icerik h5,
.blog-icerik h6 {
  font-family: 'Playfair Display', serif;
  color: #111;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 2.2em 0 .7em;
}

.blog-icerik h1 {
  font-size: 36px;
}

.blog-icerik h2 {
  font-size: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.blog-icerik h3 {
  font-size: 22px;
}

.blog-icerik h4 {
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}

.blog-icerik h5,
.blog-icerik h6 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  font-family: Inter, sans-serif;
  font-weight: 700;
}


.blog-icerik>h2:first-child,
.blog-icerik>h3:first-child {
  margin-top: 0;
}


.blog-icerik strong,
.blog-icerik b {
  font-weight: 700;
  color: #1a1714;
}


.blog-icerik em,
.blog-icerik i {
  font-style: italic;
  color: #4a4540;
}


.blog-icerik a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(185, 138, 99, .35);
  text-underline-offset: 3px;
  transition: color .25s, text-decoration-color .25s;
}

.blog-icerik a:hover {
  color: #111;
  text-decoration-color: #111;
}


.blog-icerik ul,
.blog-icerik ol {
  margin: 0 0 1.6em 1.2em;
  padding-left: 1.4em;
}

.blog-icerik ul {
  list-style: none;
  padding-left: 0;
}

.blog-icerik ul li {
  position: relative;
  padding-left: 1.5em;
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  color: #3a3530;
  margin-bottom: .6em;
  line-height: 1.8;
}

.blog-icerik ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-icerik ol {
  list-style: decimal;
}

.blog-icerik ol li {
  font-family: Inter, sans-serif;
  font-size: 15.5px;
  color: #3a3530;
  margin-bottom: .6em;
  line-height: 1.8;
  padding-left: .4em;
}

.blog-icerik ol li::marker {
  color: var(--gold);
  font-weight: 700;
}


.blog-icerik blockquote {
  margin: 2em 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: #faf8f5;
  position: relative;
}

.blog-icerik blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: rgba(185, 138, 99, .2);
  position: absolute;
  top: -8px;
  left: 18px;
  line-height: 1;
}

.blog-icerik blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}


.blog-icerik hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5em 0;
}


.blog-icerik code {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  background: #f5f2ee;
  color: #c0392b;
  padding: 2px 6px;
  border-radius: 3px;
}


.blog-icerik pre {
  background: #1e1e1e;
  color: #d4d4d4;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  padding: 24px 28px;
  overflow-x: auto;
  margin: 1.8em 0;
  line-height: 1.7;
  border-radius: 2px;
}

.blog-icerik pre code {
  background: none;
  color: inherit;
  padding: 0;
}


.blog-icerik img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 2px;
}


.blog-icerik table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-family: Inter, sans-serif;
  font-size: 14px;
}

.blog-icerik th {
  background: #111;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
}

.blog-icerik td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  color: #444;
}

.blog-icerik tr:nth-child(even) td {
  background: #faf8f5;
}

.blog-icerik tr:last-child td {
  border-bottom: none;
}


.blog-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #999;
}

.blog-meta-bar .bm-cat {
  background: rgba(185, 138, 99, .12);
  color: var(--gold);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-meta-bar .bm-sep {
  color: #ddd;
}

.blog-meta-bar .bm-author {
  font-weight: 600;
  color: #555;
}


.blog-hero-img {
  margin-bottom: 52px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}

.blog-hero-img img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}


.blog-bottom-nav {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}


@media(max-width:768px) {
  .blog-icerik {
    font-size: 16px;
  }

  .blog-icerik p {
    font-size: 15px;
    line-height: 1.85;
  }

  .blog-icerik h2 {
    font-size: 22px;
  }

  .blog-icerik h3 {
    font-size: 19px;
  }

  .blog-icerik blockquote {
    padding: 18px 20px;
  }

  .blog-icerik blockquote::before {
    font-size: 52px;
  }

  .blog-hero-img img {
    max-height: 260px;
  }
}

.contact-map-sec {
  width: 100%;
  height: 550px;
  padding: 0;
  line-height: 0;
  display: block;
  border-top: 1px solid var(--line);
}

@media(max-width:768px) {
  .contact-map-sec {
    height: 480px;
  }
}

/* Yüksek Çözünürlüklü Ekran Optimizasyonları */
@media(min-width: 900px) {
  .hero h1 {
    font-size: clamp(78px, 4.4vw, 110px);
    line-height: 1.05;
  }
  .hero p {
    font-size: clamp(14px, 0.8vw, 17px);
    max-width: clamp(480px, 28vw, 550px);
  }
}