/* ── Contact Page ─────────────────────────────────────────── */

/* Page intro */
.contact-intro {
  padding: 140px 0 60px;
  background: #f4f7fc;
  text-align: center;
}
.contact-intro .intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 90, 189, .1);
  color: #1E5ABD;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.contact-intro h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 14px;
  line-height: 1.15;
}
.contact-intro p {
  color: #64748b;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Main section */
.contact-body {
  background: #f4f7fc;
  padding: 0 0 100px;
}

/* Left panel — info */
.contact-panel {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 40px rgba(0,0,0,.07);
  height: 100%;
}
.contact-panel .panel-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf0f5;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #edf0f5;
}
.contact-item:last-of-type {
  border-bottom: none;
}
.contact-item .ci-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1E5ABD, #4A90E2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.contact-item .ci-body {}
.contact-item .ci-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 4px;
}
.contact-item .ci-value {
  font-size: 15px;
  font-weight: 600;
  color: #0b1f3a;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.contact-item .ci-value:hover { color: #1E5ABD; }
.contact-item .ci-sub {
  font-size: 12.5px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Social row */
.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #edf0f5;
}
.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f1f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E5ABD;
  font-size: 15px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.contact-socials a:hover {
  background: #1E5ABD;
  color: #fff;
}

/* Right panel — map */
.map-panel {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,.07);
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.map-panel iframe {
  flex: 1;
  width: 100%;
  border: none;
  min-height: 340px;
}
.map-label {
  padding: 20px 26px;
  border-top: 1px solid #edf0f5;
}
.map-label h6 {
  font-size: .9rem;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 4px;
}
.map-label p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

@media (max-width: 991px) {
  .contact-intro { padding: 110px 0 48px; }
  .contact-panel { margin-bottom: 24px; }
  .map-panel { min-height: 380px; }
}
