/* =========================================================
   ICS Website - Get in Touch Page CSS
   Use after main.css:
   <link rel="stylesheet" href="assets/css/getintouch.css">
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 430px;
  padding: 22px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(84, 176, 255, 0.22), transparent 24%),
    radial-gradient(circle at 8% 15%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #08278f 0%, #214cff 44%, #06145f 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 1px, transparent 1.8px);
  background-size: 72px 72px, 112px 112px;
  background-position: 0 0, 36px 42px;
  opacity: 0.36;
  animation: icsNodesDrift 22s linear infinite;
}

.page-title-wrap {
  position: relative;
  z-index: 4;
  max-width: 850px;
  padding-top: 76px;
}

.page-title-wrap h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 950;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.page-title-wrap p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 34px rgba(0, 15, 80, 0.12);
  animation: icsFadeUp 0.9s ease 0.06s both;
}

.contact-panel {
  margin-top: 0;
  padding: 38px 40px 0;
  border: 1px solid #dfe7f7;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, rgba(223, 234, 255, 0.72) 0%, rgba(236, 243, 255, 0.86) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.contact-copy {
  padding: 34px 0 42px 48px;
}

.client-title {
  display: inline-block;
  position: relative;
  margin: 0 0 20px;
  color: var(--text);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-copy > p {
  max-width: 670px;
  margin: 0 0 26px;
  color: #1f2a49;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.info-panel {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(15, 38, 95, 0.04);
}

.info-panel h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.info-panel h3 i {
  margin-right: 8px;
  color: var(--primary);
}

.info-panel p {
  margin: 0;
  color: #4c5675;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.hidden-note {
  margin-top: 24px;
  padding: 20px;
  color: #4c5675;
  background: #f6f8ff;
  border: 1px dashed #c6d3ff;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.form-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dfe7f7;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translateY(28px);
}

.form-card h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.input,
textarea {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #1a2443;
  background: #ffffff;
  border: 1px solid #dce4f2;
  border-radius: 10px;
  font: 600 14px/1 Inter, sans-serif;
  outline: none;
}

textarea {
  height: 120px;
  padding: 14px;
  resize: none;
  grid-column: 1 / -1;
}

.submit-btn {
  width: 100%;
  margin-top: 14px;
}

.padding-bottom {
  padding-bottom: 0;
}

.nav-actions .btn.primary.small {
  color: #ffffff;
}

footer a[href$=".html"] {
  color: #c4ccec;
}

@media (max-width: 980px) {
  .page-title-wrap h1,
  .client-title {
    font-size: 42px;
  }

  .contact-grid,
  .contact-info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-left: 0;
  }

  .contact-panel {
    padding: 28px 24px 0;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding-bottom: 70px;
  }

  .page-title-wrap {
    padding-top: 54px;
  }

  .page-title-wrap h1,
  .client-title {
    font-size: 36px;
  }

  .contact-copy > p {
    font-size: 17px;
  }

  .info-panel,
  .form-card {
    padding: 20px;
  }
}
