.contact-section {
  padding: 74px 36px 18px;
  background: var(--white);
  overflow: hidden;
}

.contact-container {
  width: min(1560px, 100%);
  margin: 0 auto;
}

.contact-header {
  max-width: 980px;
  margin-bottom: 28px;
}

.contact-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px 8px;
  margin-bottom: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-header h2 {
  color: var(--black);
  font-size: clamp(52px, 5.7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 900;
  margin-bottom: 16px;
}

.contact-header p {
  max-width: 880px;
  color: var(--text);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-card {
  min-height: 390px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.055);
}

.contact-card h3 {
  color: var(--black);
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  margin-bottom: 24px;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 46%);
  gap: 28px;
  align-items: center;
}

.contact-info-list {
  display: grid;
  gap: 24px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(255, 61, 0, 0.2);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
}

.contact-info-item strong {
  display: block;
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--black);
  font-size: 17px;
  line-height: 1.45;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: var(--orange);
}

.contact-map {
  min-height: 270px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f6f6;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 270px;
  display: block;
  border: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 61, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 61, 0, 0.08);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--black) 50%),
    linear-gradient(135deg, var(--black) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  margin: 4px 0 2px;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.contact-submit {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 61, 0, 0.2);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.contact-submit span {
  font-size: 24px;
  line-height: 1;
}

.contact-hidden {
  display: none;
}

.company-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  padding: 22px 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
}

.company-item {
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 61, 0, 0.18);
}

.company-item:last-child {
  border-right: 0;
}

.company-item strong {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.company-item span {
  color: #51413d;
  font-size: 17px;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .contact-section {
    padding: 70px 28px 18px;
  }

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

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

@media (max-width: 760px) {
  .contact-section {
    padding: 58px 18px 14px;
  }

  .contact-badge {
    padding: 8px 18px 7px;
    font-size: 13px;
  }

  .contact-header h2 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.065em;
  }

  .contact-header p {
    font-size: 17px;
  }

  .contact-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .contact-card h3 {
    font-size: 30px;
  }

  .contact-location-grid,
  .contact-form-row,
  .company-strip {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 230px;
  }

  .company-strip {
    padding: 0;
    overflow: hidden;
  }

  .company-item {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 61, 0, 0.14);
  }

  .company-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .contact-info-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 760px) {
  .contact-map iframe {
    min-height: 230px;
  }
}