:root {
  --teal:        #06161a;
  --teal-deep:   #05151a;
  --gold:        #c7a86b;
  --coral:        #8e3038;
  --coral-dark:  #742730;
  --blue:        #2e4a78;
  --ink:         #1d2b30;
  --muted:       #5e6b70;
  --paper:       #ffffff;
  --paper-soft:  #f5f4f1;
  --line:        #e3e1da;

  --nav-h: 104px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .nav { top: 32px; }
h1,h2,h3,h4 { font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 14px;
}
.section { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); color: var(--teal); }
.section-head p { color: var(--muted); font-size: 1.06rem; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 40px;
  font-weight: 600; font-size: .95rem;
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--teal); transform: translateY(-2px); }
.btn-dark { background: var(--teal); color: #fff; }
.btn-dark:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-line { border: 1.5px solid rgba(6,22,26,.26); color: var(--teal); }
.btn-line:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s, height .35s;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between;
  max-width: 100%; padding-inline: 48px; }
.nav.scrolled {
  background: var(--teal);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 16px; color: #fff; }
.brand .mark { width: 56px; height: 56px; }
.brand b { font-size: 2rem; font-weight: 500; line-height: 1; letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: 48px; }
.nav-links a {
  color: #fff; font-size: 1.08rem; font-weight: 500; opacity: .9;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--coral); transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: 13px 28px; font-size: 1rem; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--coral); transform: none; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; }
.nav-toggle svg { width: 30px; height: 30px; }

.hero {
  height: 100vh; min-height: 620px;
  display: grid; grid-template-columns: 31% 69%;
}
.hero-panel {
  background: var(--teal);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 40px 40px;
  position: relative; z-index: 2;
}
.hero-logo { width: 100%; max-width: 460px; margin: 0 0 30px; }

.hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 500; color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem); line-height: 1.2;
  margin: 0 0 18px; max-width: 16ch;
}
.hero-sub {
  font-size: clamp(.98rem, 1.1vw, 1.08rem); font-weight: 300;
  color: rgba(255,255,255,.82); max-width: 42ch; margin: 0;
}

.hero-slider { position: relative; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.2s var(--ease), transform 6s linear;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,45,52,.45) 0%, rgba(14,45,52,0) 30%); }
.slider-dots {
  position: absolute; left: 40px; bottom: 34px; z-index: 3;
  display: flex; gap: 10px;
}
.slider-dots button {
  width: 34px; height: 4px; border: 0; border-radius: 4px;
  background: rgba(255,255,255,.4); cursor: pointer; transition: background .3s;
}
.slider-dots button.active { background: var(--coral); }

.values { background: #f7f7f7; }
.values .section-head { max-width: 880px; margin: 0 auto 72px; text-align: center; }
.values .section-head h2 { margin-bottom: 26px; font-weight: 500; }
.values-divider { width: 64px; height: 2px; background: var(--coral); border: 0; margin: 0 auto 30px; }
.values .section-head p { font-size: 1.1rem; line-height: 1.85; color: #4a565b; }

.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.value-item { text-align: left; padding: 4px 28px; }
.value-item + .value-item { border-left: 1px solid #dfdbd2; }
.value-num {
  display: block; font-size: .82rem; font-weight: 600; letter-spacing: .22em;
  color: var(--coral); margin-bottom: 20px;
}
.value-item h3 {
  color: var(--teal); font-size: 1.14rem; font-weight: 600; white-space: nowrap;
  line-height: 1.3; margin: 0 0 16px; letter-spacing: -.01em;
}
.value-item p { color: #5e6b70; margin: 0; font-size: 1rem; line-height: 1.75; }

@media (max-width: 980px) {
  .value-grid { gap: 48px 44px; }
  .value-item { padding: 0; }
  .value-item + .value-item { border-left: 0; }
}

.services-block { padding: 100px 0; }
.services-block.alt { background: #f7f7f7; }
.services-block .wrap { max-width: 1640px; }
.services-head { text-align: center; max-width: 100%; margin: 0 auto; }
.services-head h2 { font-size: clamp(1.9rem,3.4vw,2.9rem); color: var(--teal);
  font-weight: 500; margin-bottom: 24px; white-space: nowrap; }
.services-divider { width: 64px; height: 2px; background: var(--coral); border: 0; margin: 0 auto 28px; }
.services-head p { color: #4a565b; font-size: 1.06rem; line-height: 1.85; white-space: nowrap; }

.practice-title { font-size: clamp(1.5rem,2.6vw,2.05rem); color: var(--teal);
  font-weight: 500; margin: 56px 0 36px; text-align: center; }
.practice-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }

@media (max-width: 1120px) {
  .services-head h2, .services-head p { white-space: normal; }
  .practice-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
}

.service-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 360px; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px rgba(14,45,52,.22); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,45,52,.12) 0%, rgba(12,38,44,.55) 42%, rgba(7,26,31,.95) 100%); }
.service-card:hover img { transform: scale(1.07); }
.service-body { padding: 22px 20px 24px; }
.service-body h3 { font-size: 1.08rem; margin: 0 0 12px; font-weight: 600; line-height: 1.25; }
.service-body ul { list-style: none; margin: 0; padding: 0; }
.service-body li { position: relative; padding-left: 15px; margin-bottom: 7px;
  font-size: .84rem; color: rgba(255,255,255,.9); line-height: 1.45; }
.service-body li::before { content: ""; position: absolute; left: 0; top: .5em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }

.about { background: var(--teal); color: #fff; padding: 150px 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about h2 { color: #fff; font-size: clamp(2.1rem,3.8vw,3.2rem); font-weight: 500; margin-bottom: 22px; }
.about-divider { width: 90px; height: 2px; background: var(--coral); border: 0; margin: 0 0 30px; }
.about p { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.8; }
.about p:last-child { margin-bottom: 0; }
.about-media img { width: 100%; height: 720px; object-fit: cover; object-position: center 22%;
  filter: grayscale(100%); border-radius: 4px; }

.faq { background: var(--paper-soft); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 1.12rem; font-weight: 600; color: var(--teal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease);
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: ""; position: absolute; background: var(--coral); border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq-item summary .plus::before { width: 2px; height: 16px; }
.faq-item summary .plus::after  { width: 16px; height: 2px; }
.faq-item[open] summary .plus { transform: rotate(135deg); }
.faq-item .faq-answer { padding: 0 4px 24px; color: var(--muted); font-size: 1rem; max-width: 700px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { color: var(--coral); font-size: 2rem; letter-spacing: .04em; margin-bottom: 34px; }
.contact-info .country { color: var(--ink); font-size: 1.5rem; font-weight: 500; margin-bottom: 34px; }

.contact-office { margin-bottom: 24px; }
.contact-office h3 { color: var(--teal); font-size: 1.12rem; font-weight: 600; margin: 0 0 6px; }
.contact-office p { color: var(--muted); margin: 0; font-size: 1rem; }

.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; color: var(--ink); }
.contact-row svg { width: 22px; height: 22px; stroke: var(--muted); flex: 0 0 auto; margin-top: 3px; }
.contact-row strong { color: var(--teal); font-weight: 600; }
.contact-row a { color: var(--muted); }
.contact-row a:hover { color: var(--coral); }

.contact-hours { margin-top: 34px; max-width: 360px; }
.contact-hours h3 { color: var(--coral); font-size: 1.3rem; font-weight: 500; margin: 0 0 14px; }
.hours-row { display: flex; justify-content: space-between; gap: 20px;
  padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .98rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:first-child { color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.hours-row span:last-child { font-weight: 500; }

.contact-maps { display: grid; gap: 22px; }
.contact-map { border-radius: 14px; overflow: hidden; box-shadow: 0 18px 50px rgba(14,45,52,.14); }
.contact-map iframe { width: 100%; height: 300px; border: 0; display: block; }

.footer {
  background: var(--teal-deep); color: rgba(255,255,255,.78);
  min-height: 100vh; display: flex; align-items: center;
  text-align: center; padding: 60px 0;
}
.footer .wrap { width: 100%; }
.footer-logo { width: 240px; max-width: 60%; margin: 0 auto 26px; }

.footer-locations {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 90px; margin: 0 0 6px;
}
.footer-locations h4 { color: #fff; font-size: 1.18rem; margin: 0 0 6px; font-weight: 500; }
.footer-locations span { font-size: .82rem; letter-spacing: .12em;
  color: rgba(255,255,255,.7); text-transform: uppercase; }

.footer-section { max-width: 900px; margin: 0 auto; padding: 40px 0; }
.footer-section h3 { color: #fff; font-size: 1.7rem; font-weight: 500; margin: 0 0 20px; }
.footer-divider { width: 150px; height: 2px; background: rgba(255,255,255,.5); border: 0; margin: 0 auto 30px; }
.footer-section p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.8); margin: 0 auto 16px; }
.footer-section p:last-child { margin-bottom: 0; }
.footer-section-lead { max-width: 820px; }

.footer-fine { max-width: 920px; margin: 30px auto 0; }
.footer-fine .copy { font-size: .86rem; color: rgba(255,255,255,.55); margin: 0; }

@media (max-width: 980px) {
  body.admin-bar .nav { top: 46px; }
  .hero { grid-template-columns: 1fr; }
  .hero-panel { order: 2; padding: 40px 28px 56px; }
  .hero-slider { order: 1; min-height: 46vh; }
  .hero { height: auto; }
  .value-grid, .practice-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: calc(100% + 10px); left: 14px; right: 14px;
    background: linear-gradient(180deg, #103740 0%, var(--teal-deep) 100%);
    padding: 12px; border-radius: 18px;
    border: 1px solid rgba(199,168,107,.22);
    box-shadow: 0 24px 50px rgba(0,0,0,.45);
    transform-origin: top center;
    animation: navDrop .28s var(--ease) both;
  }
  .nav-links.open a {
    text-align: center; padding: 15px 12px; border-radius: 12px;
    font-size: 1.05rem; opacity: 1; width: 100%;
    transition: background .2s, color .2s;
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open a:not(.btn) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links.open a:not(.btn):last-of-type { border-bottom: 0; }
  .nav-links.open a:not(.btn):hover { background: rgba(255,255,255,.06); color: var(--gold); }
  .nav-links.open .btn { margin-top: 12px; justify-content: center; }
  @keyframes navDrop {
    from { opacity: 0; transform: translateY(-10px) scaleY(.96); }
    to   { opacity: 1; transform: translateY(0) scaleY(1); }
  }
  .nav-toggle .bar { transition: transform .3s var(--ease), opacity .2s; transform-origin: center; }
  .nav-toggle.active .top { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.active .mid { opacity: 0; }
  .nav-toggle.active .bot { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}

@media (max-width: 620px) {
  .value-grid, .practice-grid { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .nav .wrap { padding-inline: 18px; }
  .nav { height: 76px; }
  .nav.scrolled { height: 68px; }
  .brand { gap: 10px; }
  .brand .mark { width: 38px; height: 38px; }
  .brand b { font-size: 1.15rem; white-space: nowrap; }
}

/* ===========================================================
   404 ERROR PAGE
   =========================================================== */
body.aktepe-error-page {
  background: var(--teal);
  margin: 0;
  min-height: 100vh;
}

body.aktepe-error-page .aktepe-404 {
  background:
    linear-gradient(120deg, rgba(6,22,26,.94) 0%, rgba(6,22,26,.78) 48%, rgba(142,48,56,.12) 100%),
    var(--aktepe-404-bg) center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 100vh;
  padding: 44px 24px;
  width: 100%;
}

body.aktepe-error-page .aktepe-404-panel {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  max-width: 780px;
  overflow: hidden;
  padding: 46px;
  position: relative;
  width: min(100%, 780px);
}

body.aktepe-error-page .aktepe-404-panel::before {
  background: linear-gradient(90deg, var(--coral), var(--gold));
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

body.aktepe-error-page .aktepe-404-brand {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-size: 1.12rem;
  font-weight: 700;
  gap: 12px;
  margin-bottom: 54px;
}

body.aktepe-error-page .aktepe-404-brand img {
  height: 44px;
  object-fit: contain;
  width: 44px;
}

body.aktepe-error-page .aktepe-404-code {
  color: rgba(6,22,26,.08);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  line-height: .78;
  margin-bottom: 14px;
}

body.aktepe-error-page .aktepe-404 h1 {
  color: var(--teal);
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  letter-spacing: 0;
  max-width: 660px;
}

body.aktepe-error-page .aktepe-404-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
}

body.aktepe-error-page .aktepe-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 620px) {
  body.aktepe-error-page .aktepe-404 { align-items: flex-start; padding: 24px 16px; }
  body.aktepe-error-page .aktepe-404-panel { padding: 34px 24px; }
  body.aktepe-error-page .aktepe-404-brand { margin-bottom: 38px; }
  body.aktepe-error-page .aktepe-404-actions .btn { justify-content: center; width: 100%; }
}
