:root {
  --ink: #182028;
  --muted: #66717a;
  --paper: #f7f5ef;
  --white: #ffffff;
  --navy: #25364a;
  --blue: #3e6f8f;
  --gold: #c9902c;
  --sage: #6f846d;
  --line: rgba(24, 32, 40, 0.13);
  --shadow: 0 24px 70px rgba(15, 23, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 10px 30px rgba(20, 26, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background:
    linear-gradient(110deg, rgba(22, 31, 43, 0.14), rgba(22, 31, 43, 0.3)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2200&q=82") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 25, 36, 0.88), rgba(17, 25, 36, 0.45) 58%, rgba(17, 25, 36, 0.72)),
    linear-gradient(0deg, rgba(17, 25, 36, 0.94), rgba(17, 25, 36, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(830px, 100%);
  padding-bottom: 80px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #151d24;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  padding: clamp(66px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  background: var(--white);
}

.intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(20, 26, 22, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p,
.region-list p,
.timeline p,
.contact p {
  margin: 10px 0 0;
  color: var(--muted);
}

.regions {
  color: var(--white);
  background: var(--navy);
}

.regions .section-heading {
  color: var(--white);
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(201, 144, 44, 0.72), transparent 16%),
    radial-gradient(circle at 55% 48%, rgba(62, 111, 143, 0.9), transparent 26%),
    radial-gradient(circle at 74% 36%, rgba(111, 132, 109, 0.86), transparent 20%),
    radial-gradient(circle at 33% 70%, rgba(174, 96, 67, 0.7), transparent 21%),
    linear-gradient(135deg, #31465d, #202b39);
  box-shadow: var(--shadow);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 16% 11%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 62% 38% 48% 52% / 45% 35% 65% 55%;
  transform: rotate(-11deg);
}

.zone {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 8px;
  color: #17202a;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.zone.chui {
  top: 23%;
  left: 36%;
}

.zone.issyk {
  top: 28%;
  right: 13%;
}

.zone.naryn {
  top: 52%;
  left: 49%;
}

.zone.osh {
  bottom: 21%;
  left: 31%;
}

.zone.batken {
  bottom: 28%;
  left: 12%;
}

.region-list {
  display: grid;
  gap: 14px;
}

.region-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.region-list p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  background: #e5edf0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(31, 39, 35, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(25, 34, 45, 0.94), rgba(25, 34, 45, 0.72)),
    url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #151d24;
}

.site-footer span {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(247, 245, 239, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 112px;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-panel,
  .intro,
  .region-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .map-card {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .zone {
    max-width: 126px;
    font-size: 12px;
  }

  .site-footer {
    flex-direction: column;
  }
}
