:root {
  --ink: #0b1728;
  --ink-soft: #172943;
  --paper: #f5f7fa;
  --white: #ffffff;
  --muted: #64748b;
  --line: #dbe2ea;
  --orange: #f97316;
  --orange-dark: #d9550a;
  --green: #16a34a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(11, 23, 40, 0.08);
  --shadow: 0 22px 60px rgba(11, 23, 40, 0.14);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  color: #dbe7f6;
  background: #07111f;
  font-size: 13px;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-links,
.topbar-note {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 234, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(11, 23, 40, 0.08);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 205px;
}

.brand img {
  width: 146px;
  height: auto;
}

.brand-line {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.brand-copy {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button),
.nav-dropdown > a {
  position: relative;
  padding-block: 30px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.button)::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > a:hover,
.nav-dropdown > a[aria-current="page"] {
  color: var(--ink);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  width: 26px;
  height: 34px;
  margin-left: -4px;
  padding: 0;
  border: 0;
  color: #475569;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  margin: 0 auto 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.service-dropdown {
  position: absolute;
  top: calc(100% - 14px);
  left: 50%;
  z-index: 120;
  width: min(650px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.service-dropdown a {
  padding: 12px 14px;
  border-radius: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible {
  color: var(--ink);
  background: #fff3e9;
}

.nav-dropdown:hover .service-dropdown,
.nav-dropdown:focus-within .service-dropdown,
.nav-dropdown.is-open .service-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown.is-open .nav-dropdown-toggle::before {
  transform: rotate(225deg) translate(-2px, -2px);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 4px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.menu-open .menu-toggle-lines {
  background: transparent;
}

.menu-open .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-soft);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-arrow {
  font-size: 18px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.15s ease, transform 7s ease;
}

.hero-media .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 15, 28, 0.96) 0%, rgba(6, 15, 28, 0.82) 48%, rgba(6, 15, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 15, 28, 0.5), transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 96px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #dbe7f6;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 52px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe7f6;
  font-size: 13px;
  font-weight: 700;
}

.proof-check {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(249, 115, 22, 0.9);
}

.stat-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding-block: 104px;
}

.section-sm {
  padding-block: 74px;
}

.section-soft {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  max-width: 690px;
  margin-bottom: 46px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section h2,
.content-block h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-head p,
.content-block > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p,
.section-dark .content-block > p {
  color: #b9c7d8;
}

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

.service-card {
  position: relative;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: var(--shadow-sm);
}

.service-number {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-link {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.service-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.service-card:hover .service-link span {
  transform: translateX(5px);
}

.trade-section {
  background: #eef2f6;
}

.trade-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trade-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.trade-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.trade-card-media {
  display: block;
  overflow: hidden;
}

.trade-card-media img {
  transition: transform 0.35s ease;
}

.trade-card:hover .trade-card-media img {
  transform: scale(1.045);
}

.trade-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 32px;
}

.trade-card h3 {
  margin: 16px 0 11px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.trade-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.trade-card .service-link {
  margin-top: auto;
}

.trade-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
  align-items: center;
  gap: 22px 46px;
  margin-top: 24px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trade-detail h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.trade-detail p {
  margin: 13px 0 0;
  color: var(--muted);
}

.trade-detail .eyebrow {
  margin-bottom: 13px;
}

.trade-detail .button {
  width: max-content;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.split-media {
  position: relative;
}

.split-media > img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-detail-hero img {
  object-position: center 52%;
}

.service-detail-hero::after {
  background: linear-gradient(90deg, rgba(6, 15, 28, 0.95) 0%, rgba(6, 15, 28, 0.77) 52%, rgba(6, 15, 28, 0.3) 100%);
}

.service-detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-detail-grid .service-card {
  min-height: 280px;
}

.service-related-grid a {
  justify-content: space-between;
}

.split-media.contain > img {
  min-height: 0;
  object-fit: contain;
  background: #eef2f6;
}

.media-badge {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 178px;
  padding: 22px;
  color: var(--white);
  border: 7px solid var(--white);
  border-radius: 20px;
  background: var(--orange);
  box-shadow: var(--shadow-sm);
}

.media-badge strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.media-badge span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #334155;
  font-weight: 650;
}

.check-list .proof-check {
  width: 28px;
  height: 28px;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.region-hero img {
  object-position: center 58%;
}

.region-intro .split-media > img {
  min-height: 580px;
}

.region-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.region-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.region-feature img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.region-feature > div {
  padding: 27px 28px 30px;
}

.region-feature span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.region-feature h3 {
  margin: 12px 0 10px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.region-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.district-grid > a {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #e6edf7;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.district-grid > a span {
  margin-left: 5px;
  color: var(--orange);
}

.district-grid > a:hover {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(249, 115, 22, 0.1);
}

.district-note {
  max-width: 780px;
  margin: 28px auto 0;
  color: #9fb0c5;
  font-size: 14px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.district-hero img {
  filter: saturate(0.85);
}

.district-service-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.section-dark .district-service-band .capacity-chip {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6edf7;
  background: rgba(255, 255, 255, 0.07);
}

.related-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-region-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #334155;
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.related-region-grid a span {
  color: var(--orange);
}

.related-region-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.55);
}

.all-regions-link {
  margin-top: 26px;
}

.home-region-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 56px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(100deg, rgba(11, 23, 40, 0.98), rgba(11, 23, 40, 0.86)),
    url("../wp-content/uploads/2022/09/trafo-nedir.jpg") center / cover;
  overflow: hidden;
}

.home-region-panel h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.home-region-panel p {
  margin: 18px 0 0;
  color: #c8d4e3;
}

.home-region-panel .content-actions {
  margin-top: 28px;
}

.home-region-panel .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.home-districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.home-districts a {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  color: #edf3fa;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.home-districts a:hover {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(249, 115, 22, 0.14);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.process-step {
  min-height: 245px;
  padding: 30px;
  background: var(--ink);
}

.process-step strong {
  color: var(--orange);
  font-size: 42px;
  letter-spacing: -0.04em;
}

.process-step h3 {
  margin: 40px 0 10px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: #9fb0c5;
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--orange);
}

.cta::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -180px;
  border: 70px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 58px;
}

.cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.cta p {
  max-width: 640px;
  margin: 14px 0 0;
  color: #fff4eb;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 15, 28, 0.96), rgba(6, 15, 28, 0.5));
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 76px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 66px);
}

.page-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #dbe7f6;
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  color: #a9bbcf;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--white);
}

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

.value-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-card strong {
  display: block;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about-hero img {
  object-position: center 56%;
}

.about-facts-section {
  padding-block: 0 28px;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.about-fact {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.about-fact:last-child {
  border-right: 0;
}

.about-fact strong {
  display: block;
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.about-fact span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.section-dark .about-dark-list li {
  color: #dbe7f6;
}

.about-capacity {
  margin-top: 30px;
}

.about-reasons {
  grid-template-columns: repeat(2, 1fr);
}

.capacity-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capacity-chip {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail-index {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.service-detail h3 {
  margin: 0 0 9px;
  font-size: 22px;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.gallery-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #dfe5ec;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(8),
.gallery-item:nth-child(13) {
  grid-column: span 2;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(10) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item::after {
  content: "İncele  +";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  color: var(--white);
  border-radius: 10px;
  background: rgba(6, 15, 28, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(3, 9, 17, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 28px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

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

.contact-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 34px 0 6px;
  font-size: 22px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius-lg);
  background: var(--ink);
  overflow: hidden;
}

.contact-panel-copy {
  padding: 58px;
  color: var(--white);
}

.contact-panel-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.contact-panel-copy p {
  color: #b9c7d8;
}

.contact-panel-side {
  display: grid;
  place-items: center;
  padding: 50px;
  background:
    linear-gradient(rgba(249, 115, 22, 0.9), rgba(213, 85, 10, 0.95)),
    url("../wp-content/uploads/2022/09/Artboard-1-copyyus_trade.jpg") center / cover;
}

.contact-hours {
  width: 100%;
  max-width: 330px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-hours h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.hours-row strong {
  color: var(--ink);
}

.faq {
  max-width: 900px;
  margin-inline: auto;
}

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

.faq summary {
  padding: 22px 0;
  font-size: 18px;
  font-weight: 850;
  cursor: pointer;
}

.faq p {
  margin: -6px 0 24px;
  color: var(--muted);
}

.site-footer {
  color: #dbe7f6;
  background: #07111f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 70px;
  padding-block: 70px;
}

.footer-brand img {
  width: 172px;
  padding: 8px;
  border-radius: 9px;
  background: var(--white);
}

.footer-brand p {
  max-width: 470px;
  margin: 22px 0 0;
  color: #93a6bc;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  color: #aebed0;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 13px;
  color: #aebed0;
  font-size: 14px;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71859c;
  font-size: 12px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.floating-action {
  min-width: 120px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 16px;
  border-radius: 16px;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 900;
}

.floating-action.call {
  background: var(--orange);
}

.floating-action.whatsapp {
  background: #25d366;
}

.floating-action.whatsapp img {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.call-symbol {
  font-size: 18px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .topbar-note {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 84px 0 auto;
    max-height: calc(100vh - 124px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 20px 30px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 50px rgba(11, 23, 40, 0.16);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: 1fr 52px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease;
  }

  .nav-dropdown > a {
    padding: 16px 6px;
    border-bottom: 0;
    font-size: 16px;
  }

  .nav-dropdown > a::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 36px;
    height: 36px;
    margin: 0;
    justify-self: end;
    margin-right: 5px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 7px 18px rgba(249, 115, 22, 0.26);
    transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.2s ease;
  }

  .nav-dropdown-toggle::before {
    width: 8px;
    height: 8px;
    margin-bottom: 5px;
    border-width: 0 2px 2px 0;
  }

  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle:focus-visible {
    background: var(--orange-dark);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.34);
  }

  .nav-dropdown.is-open {
    background: #fff8f2;
  }

  .nav-dropdown.is-open .nav-dropdown-toggle {
    background: var(--orange-dark);
    transform: rotate(180deg);
  }

  .nav-dropdown.is-open .nav-dropdown-toggle::before {
    transform: rotate(45deg);
  }

  .service-dropdown {
    position: static;
    width: auto;
    max-height: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 0 8px;
    border: 0;
    border-top: 0 solid #fed7bd;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 0.38s ease, padding 0.38s ease, border-width 0.2s ease;
  }

  .nav-dropdown:hover .service-dropdown,
  .nav-dropdown:focus-within .service-dropdown {
    transform: none;
  }

  .nav-dropdown.is-open .service-dropdown {
    max-height: 620px;
    padding: 10px 8px 16px;
    border-top-width: 1px;
    pointer-events: auto;
    transform: none;
  }

  .service-dropdown a {
    padding: 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity 0.22s ease, transform 0.3s ease, color 0.2s ease, background 0.2s ease;
  }

  .nav-dropdown.is-open .service-dropdown a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-dropdown.is-open .service-dropdown a:hover {
    border-color: #fed7bd;
    background: #fff3e9;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button),
  .nav-dropdown > a {
    padding: 15px 6px;
    font-size: 16px;
  }

  .site-nav > a:not(.button)::after,
  .nav-dropdown > a::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(13) {
    grid-column: span 1;
  }
}

@media (max-width: 980px) {
  .trade-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-card {
    display: flex;
  }

  .trade-card img {
    height: 220px;
    min-height: 0;
  }

  .trade-detail {
    grid-template-columns: 1fr;
  }

  .region-feature-grid {
    grid-template-columns: 1fr;
  }

  .region-feature {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .region-feature img {
    height: 100%;
    min-height: 260px;
  }

  .district-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-region-panel {
    grid-template-columns: 1fr;
  }

  .district-service-band {
    grid-template-columns: 1fr;
  }

  .related-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  .brand-line,
  .brand-copy {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(6, 15, 28, 0.94), rgba(6, 15, 28, 0.56));
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-media {
    order: -1;
  }

  .service-detail-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-fact:nth-child(2) {
    border-right: 0;
  }

  .about-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-reasons {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8) {
    grid-column: span 2;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(10) {
    grid-row: span 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 44px 34px;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    justify-content: center;
  }

  .site-header {
    background: linear-gradient(180deg, #f4f7fa 0%, #e6edf4 100%);
    border-bottom-color: #d4dde7;
    backdrop-filter: none;
    box-shadow: 0 8px 22px rgba(11, 23, 40, 0.08);
  }

  .nav-wrap {
    position: relative;
    min-height: 92px;
    justify-content: flex-start;
  }

  .brand {
    position: relative;
    z-index: 1;
    min-width: 0;
    gap: 10px;
    margin: 0;
  }

  .brand img {
    width: 154px;
    border-radius: 10px;
    box-shadow: 0 7px 20px rgba(11, 23, 40, 0.09);
  }

  .brand-line {
    width: 1px;
    height: 40px;
    display: block;
    background: #c9d4df;
  }

  .brand-copy {
    display: block;
    color: #52647a;
    font-size: 9px;
    letter-spacing: 0.11em;
    line-height: 1.35;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .site-nav {
    inset: 92px 0 auto;
    max-height: calc(100vh - 132px);
  }

  .service-dropdown {
    grid-template-columns: 1fr;
  }

  .nav-dropdown.is-open .service-dropdown {
    max-height: 820px;
  }

  .hero-inner {
    padding-block: 76px 92px;
  }

  .hero-actions {
    display: none;
  }

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

  .hero-proof {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .stat {
    padding: 22px 20px;
  }

  .stat strong {
    font-size: 25px;
  }

  .section {
    padding-block: 78px;
  }

  .section-sm {
    padding-block: 58px;
  }

  .service-grid,
  .process-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 270px;
  }

  .trade-card {
    display: flex;
  }

  .trade-card img {
    height: 230px;
    min-height: 0;
  }

  .trade-showcase {
    grid-template-columns: 1fr;
  }

  .trade-detail {
    padding: 28px 24px;
  }

  .region-feature {
    display: block;
  }

  .region-feature img {
    min-height: 0;
    height: 230px;
  }

  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-region-grid {
    grid-template-columns: 1fr;
  }

  .home-region-panel {
    gap: 34px;
    padding: 38px 25px;
  }

  .media-badge {
    right: 12px;
    bottom: 12px;
  }

  .split-media > img {
    min-height: 390px;
  }

  .page-hero {
    min-height: 370px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(13) {
    grid-column: span 2;
  }

  .gallery-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
  }

  .contact-panel-copy,
  .contact-panel-side {
    padding: 34px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .floating-action {
    width: auto;
    min-width: 132px;
    height: 56px;
    padding-inline: 17px;
    border-radius: 18px;
    pointer-events: auto;
  }

  .floating-action.call {
    order: 1;
  }

  .floating-action.whatsapp {
    order: 2;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 7px;
  }

  .brand img {
    width: 126px;
  }

  .brand-line {
    height: 34px;
  }

  .brand-copy {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
}
