/* ===== Contact hero ===== */
.contact-hero {
  justify-content: flex-start;
  align-items: center;
  min-height: 340px;
  padding: 2rem var(--padding-horizontal);
  background: radial-gradient(120% 150% at 88% 18%, rgba(237, 139, 51, 0.14), rgba(237, 139, 51, 0) 42%),
              linear-gradient(115deg, #0a1729 0%, #0e2039 52%, #0a1525 100%);
  color: #fff;
  overflow: hidden;
}

.contact-hero .hero-content {
  max-width: 640px;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-fira);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.contact-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #fff;
}

.contact-hero h1 {
  font-family: var(--font-fira);
  font-weight: 800;
  font-size: 3.25rem;
  line-height: 1.1;
  margin: 0;
}

.contact-hero__sub {
  max-width: 460px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-fira);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 260px;
    padding: 2rem 1.5rem;
  }

  .contact-hero h1 {
    font-size: 2.3rem;
  }
}

.contact-section {
  padding: 4rem var(--padding-horizontal);
  background: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

/* ===== Left-aligned section heading ===== */
.contact-head {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-head__title {
  font-family: var(--font-fira);
  font-size: var(--fs-40);
  font-weight: 700;
  color: #15233a;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.contact-head__rule {
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary-blue);
}

/* ===== Company Snapshot card ===== */
.snapshot-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.06);
  padding: 0.5rem 2rem;
}

.snapshot-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid #eef0f3;
}

.snapshot-row:last-child {
  border-bottom: none;
}

.snapshot-row__label {
  color: #8a95a3;
  font-family: var(--font-fira);
  font-size: 0.95rem;
}

.snapshot-row__value {
  color: #2a3645;
  font-family: var(--font-fira);
  font-size: 1.02rem;
  line-height: 1.55;
}

.snapshot-row__value a {
  color: var(--primary-blue);
  text-decoration: none;
}

.snapshot-row__value a:hover {
  text-decoration: underline;
}

.contact-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  color: var(--primary-blue);
  font-family: var(--font-fira);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.contact-linkedin i {
  font-size: 1.3rem;
}

.contact-linkedin:hover {
  text-decoration: underline;
}

/* ===== Reach Out: Call / Email chips ===== */
.contact-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #eef3fb;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 88, 150, 0.12);
}

.contact-chip__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--primary-blue);
  font-size: 1.05rem;
}

.contact-chip__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-chip__label {
  color: #6b7785;
  font-family: var(--font-fira);
  font-size: 0.85rem;
}

.contact-chip__value {
  color: #2a3645;
  font-family: var(--font-fira);
  font-weight: 600;
  font-size: 1rem;
}

/* ===== Form card ===== */
.contact-form {
  position: relative;
  background: #f8fafc;
  border: 1px solid #eef0f3;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 139, 51, 0.18), rgba(237, 139, 51, 0));
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-fira);
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3645;
  margin-bottom: 0.55rem;
}

.form-control {
  position: relative;
  display: flex;
  align-items: center;
}

.form-control i {
  position: absolute;
  left: 14px;
  color: #9aa6b4;
  font-size: 0.95rem;
  pointer-events: none;
}

.form-control input,
.form-control textarea {
  width: 100%;
  font-family: var(--font-fira);
  font-size: 0.98rem;
  color: #2a3645;
  background: #fff;
  border: 1px solid #e2e7ee;
  border-radius: 10px;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control--area {
  align-items: flex-start;
}

.form-control textarea {
  padding-left: 1rem;
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-control input::placeholder,
.form-control textarea::placeholder {
  color: #9aa6b4;
}

.form-control input:focus,
.form-control textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(15, 88, 150, 0.12);
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: var(--primary-blue);
  color: #fff;
  font-family: var(--font-fira);
  font-weight: 600;
  font-size: 1.02rem;
  cursor: var(--pointer, pointer);
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: #0c4a80;
  transform: translateY(-2px);
}

.contact-note {
  text-align: center;
  color: #8a95a3;
  font-family: var(--font-fira);
  font-size: 0.88rem;
  margin: 1.1rem 0 0;
}

/* ===== Map ===== */
.contact-map {
  margin-top: 4rem;
  line-height: 0;
}

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

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

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

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

  .snapshot-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-map iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .snapshot-card {
    padding: 0.5rem 1.25rem;
  }

  .contact-form {
    padding: 1.35rem;
  }
}
