.akol-contact {
  --akol-red: #DA1018;
  --akol-blue: #302C74;
  --akol-ink: #101722;
  --akol-soft: #f5f7fb;
  --akol-soft-accent: #fdf2f3;
  --akol-line: rgba(48, 44, 116, .14);
  background: #fff;
  color: var(--akol-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Final contact polish: calmer office states and static map preview. */
.akol-contact,
.akol-contact * {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.akol-contact__office:hover,
.akol-contact__office.is-active {
  border-color: rgba(48,44,116,.22) !important;
  background: #f7f8fb !important;
  color: #17202f !important;
}

.akol-contact__office.is-active {
  box-shadow: 0 14px 34px rgba(23,32,47,.08) !important;
}

.akol-contact__office:hover strong,
.akol-contact__office.is-active strong,
.akol-contact__office:hover .akol-contact__office-line,
.akol-contact__office.is-active .akol-contact__office-line {
  color: #17202f !important;
}

.akol-contact__map-panel iframe {
  pointer-events: none !important;
}

.akol-contact__map-caption {
  background: rgba(255,255,255,.96) !important;
}

.akol-contact * {
  box-sizing: border-box;
}

/* === Hero ============================================================ */

.akol-contact__hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(22px, 5vw, 76px) 72px;
  color: #fff;
  background: #071321;
}

.akol-contact__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, .88) 0%, rgba(9, 28, 45, .66) 46%, rgba(218, 16, 24, .10) 100%),
    linear-gradient(0deg, rgba(7, 19, 33, .64), rgba(7, 19, 33, .08) 56%),
    var(--contact-hero-image) center / cover no-repeat;
  transform: scale(1.02);
}

.akol-contact__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--akol-red) 0 34%, var(--akol-blue) 34% 68%, #fff 68%);
  opacity: .9;
}

.akol-contact__hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
}

.akol-contact__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.akol-contact__kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--akol-red);
}

.akol-contact__hero h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 124px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -0.01em;
}

.akol-contact__hero h1 span {
  color: var(--akol-red);
}

.akol-contact__hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.7;
}

.akol-contact__quick {
  display: grid;
  gap: 10px;
}

.akol-contact__quick a,
.akol-contact__quick div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: border-color .22s ease, background .22s ease;
}

.akol-contact__quick a:hover {
  border-color: rgba(218, 16, 24, .55);
  background: rgba(255, 255, 255, .18);
}

.akol-contact__quick small {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.akol-contact__quick strong {
  font-size: 16px;
  line-height: 1.3;
}

/* === Main / Office Panel ============================================= */

.akol-contact__main {
  padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, #fff 0%, #fff 56%, var(--akol-soft) 100%);
}

.akol-contact__shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.akol-contact__panel {
  background: #fff;
  border: 1px solid var(--akol-line);
  box-shadow: 0 24px 70px rgba(17, 24, 39, .08);
}

.akol-contact__office-panel {
  padding: 24px;
}

.akol-contact__section-head {
  margin-bottom: 18px;
}

.akol-contact__section-head p {
  margin: 0 0 6px;
  color: var(--akol-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.akol-contact__section-head h2 {
  margin: 0;
  color: var(--akol-ink);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
  font-weight: 800;
}

.akol-contact__filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 16px;
}

.akol-contact__filters select {
  min-width: 0;
  height: 44px;
  border: 1px solid var(--akol-line);
  padding: 0 12px;
  background: #fff;
  color: var(--akol-blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  outline: 0;
}

.akol-contact__filters select:focus {
  border-color: var(--akol-red);
  box-shadow: 0 0 0 3px rgba(218, 16, 24, .10);
}

.akol-contact__filters select.has-value {
  border-color: rgba(48, 44, 116, .22);
  color: var(--akol-blue);
  background:
    linear-gradient(90deg, rgba(48, 44, 116, .06), transparent 70%),
    #fff;
}

.akol-contact__selected {
  display: grid;
  gap: 5px;
  margin: 0 0 16px;
  padding: 13px 14px;
  border-left: 3px solid var(--akol-blue);
  background: linear-gradient(90deg, rgba(48, 44, 116, .06), rgba(48, 44, 116, .015));
}

.akol-contact__selected span {
  color: #6b7280;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.akol-contact__selected > span:not(.akol-contact__selected-label) {
  display: none;
}

.akol-contact__selected strong {
  color: var(--akol-ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.akol-contact__selected em {
  color: var(--akol-blue);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 800;
}

.akol-contact__office-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: 470px;
  overflow: auto;
  padding-right: 4px;
}

.akol-contact__office {
  border: 1px solid var(--akol-line);
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.akol-contact__office:hover,
.akol-contact__office.is-active {
  transform: translateY(-2px);
  border-color: rgba(48, 44, 116, .28);
  box-shadow: 0 16px 34px rgba(17, 24, 39, .08);
}

.akol-contact__office.is-active {
  background: linear-gradient(90deg, rgba(48, 44, 116, .06), #fff 62%);
}

.akol-contact__office[hidden] {
  display: none !important;
}

.akol-contact__office-button {
  width: 100%;
  display: grid;
  gap: 9px;
  padding: 15px;
  border: 0;
  background: transparent;
  color: var(--akol-blue);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.akol-contact__office strong {
  color: var(--akol-ink);
  font-size: 14px;
  line-height: 1.32;
  font-weight: 800;
}

.akol-contact__office-meta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border: 1px solid rgba(48, 44, 116, .12);
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.akol-contact__office.is-active .akol-contact__office-meta {
  border-color: rgba(48, 44, 116, .18);
  color: var(--akol-blue);
  background: rgba(48, 44, 116, .06);
}

.akol-contact__office-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #596273;
  font-size: 12.5px;
  line-height: 1.45;
}

.akol-contact__office-line svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--akol-red);
  margin-top: 1px;
}

.akol-contact__office-contact {
  flex-wrap: wrap;
  gap: 8px 14px;
}

.akol-contact__office-contact span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.akol-contact__map-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #eef2f7;
}

.akol-contact__map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: saturate(.95) contrast(1.04);
  pointer-events: none;
}

.akol-contact__map-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 14px 16px;
  background: rgba(16, 23, 34, .92);
  color: #fff;
  pointer-events: auto;
}

.akol-contact__map-caption strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.akol-contact__map-caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 11.5px;
  line-height: 1.45;
}

.akol-contact__map-caption b {
  color: #ff4048;
  font-weight: 800;
}

.akol-contact__map-caption span.is-office-place {
  color: #ff4048;
  font-weight: 800;
}

.akol-contact__map-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}

.akol-contact__map-action:hover,
.akol-contact__map-action:focus-visible {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.akol-contact__empty {
  padding: 36px 20px;
  text-align: center;
  color: #596273;
  font-size: 14px;
  border: 1px dashed var(--akol-line);
}

/* === Form Band ======================================================= */

.akol-contact__form-band {
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 70px);
  background: var(--akol-soft);
}

.akol-contact__form-band .akol-contact__shell {
  display: block;
}

.akol-contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: #0a1628;
  color: #fff;
  overflow: hidden;
}

.akol-contact__form-copy {
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(218, 16, 24, .26), rgba(48, 44, 116, .20)),
    #0a1628;
}

.akol-contact__form-copy p:first-child {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.akol-contact__form-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.08;
}

.akol-contact__form-copy p:not(:first-child) {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.akol-contact__form {
  padding: clamp(24px, 3vw, 38px);
  background: #fff;
  color: var(--akol-ink);
}

.akol-contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.akol-contact__form label {
  display: grid;
  gap: 6px;
}

.akol-contact__form label span {
  color: var(--akol-ink);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.akol-contact__form input,
.akol-contact__form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(48, 44, 116, .18);
  padding: 12px 13px;
  background: #fff;
  color: var(--akol-ink);
  font: inherit;
  font-size: 14px;
  outline: 0;
  border-radius: 0;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.akol-contact__form input:focus,
.akol-contact__form textarea:focus {
  border-color: var(--akol-red);
  box-shadow: 0 0 0 3px rgba(218, 16, 24, .10);
}

.akol-contact__form-full {
  margin-bottom: 14px;
}

.akol-contact__form button {
  margin-top: 6px;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  background: var(--akol-red);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s ease;
}

.akol-contact__form button:hover {
  background: var(--akol-blue);
}

.akol-contact__alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
}

.akol-contact__alert--success {
  background: rgba(34, 197, 94, .12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, .3);
}

.akol-contact__alert--error {
  background: rgba(218, 16, 24, .1);
  color: var(--akol-red);
  border: 1px solid rgba(218, 16, 24, .3);
}

/* === Responsive ====================================================== */

@media (min-width: 640px) {
  .akol-contact__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .akol-contact__office-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .akol-contact__office-list.is-filtered {
    grid-template-columns: 1fr;
  }

  .akol-contact__form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .akol-contact__main {
    padding: 28px 14px 0;
  }

  .akol-contact__shell {
    gap: 14px;
  }

  .akol-contact__office-panel {
    padding: 16px;
  }

  .akol-contact__section-head {
    margin-bottom: 12px;
  }

  .akol-contact__section-head p {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: .14em;
  }

  .akol-contact__section-head h2 {
    font-size: 24px;
    line-height: 1.08;
  }

  .akol-contact__filters {
    gap: 7px;
    margin-bottom: 12px;
  }

  .akol-contact__filters select {
    height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .akol-contact__selected {
    gap: 4px;
    margin-bottom: 12px;
    padding: 11px 12px;
  }

  .akol-contact__selected strong {
    font-size: 13px;
  }

  .akol-contact__selected em {
    font-size: 11.5px;
  }

  .akol-contact__office-list {
    gap: 8px;
    max-height: 320px;
    padding-right: 2px;
  }

  .akol-contact__office-button {
    gap: 6px;
    padding: 12px;
  }

  .akol-contact__office strong {
    font-size: 13px;
    line-height: 1.24;
  }

  .akol-contact__office-meta {
    padding: 3px 7px;
    font-size: 10px;
  }

  .akol-contact__office-line {
    display: none;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .akol-contact__office.is-active .akol-contact__office-line {
    display: flex;
  }

  .akol-contact__office-contact {
    gap: 6px 10px;
  }

  .akol-contact__office-contact span {
    font-size: 11px;
  }

  .akol-contact__map-panel {
    min-height: 240px;
  }

  .akol-contact__map-panel iframe {
    min-height: 240px;
  }

  .akol-contact__map-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 10px 12px;
  }

  .akol-contact__map-caption strong {
    font-size: 12px;
  }

  .akol-contact__map-caption span {
    margin-top: 3px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .akol-contact__map-action {
    margin-top: 8px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }
}

/* Final requested contact polish. */
.akol-contact, .akol-contact * { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; }
.akol-contact__office:hover, .akol-contact__office.is-active {
  border-color: rgba(48,44,116,.22) !important;
  background: #f7f8fb !important;
  color: #17202f !important;
  box-shadow: 0 14px 34px rgba(23,32,47,.08) !important;
}
.akol-contact__office:hover strong, .akol-contact__office.is-active strong,
.akol-contact__office:hover .akol-contact__office-line, .akol-contact__office.is-active .akol-contact__office-line {
  color: #17202f !important;
}
.akol-contact__map-panel iframe { pointer-events: none !important; }
.akol-contact__map-caption { background: rgba(255,255,255,.96) !important; }

@media (min-width: 1024px) {
  .akol-contact__hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  }

  .akol-contact__shell {
    grid-template-columns: minmax(0, .95fr) minmax(420px, 540px);
  }

  .akol-contact__map-panel {
    position: sticky;
    top: 112px;
    min-height: 620px;
  }

  .akol-contact__map-panel iframe {
    min-height: 620px;
  }

  .akol-contact__form-grid {
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  }
}
