/* ------------ CONTACT US START ------------ */
.contactus {
  width: 100%;
  overflow-x: hidden;
}

/* Heading */
.page_head {
  display: flex;
  justify-content: center;
}
.page_head_inner {
  width: 100%;
  max-width: 1000px;
}

.page_mark {
  width: 52px;
  height: 52px;
  position: relative;
  margin-top: 6px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}
.page_mark span {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid rgba(255, 255, 255, 0.14);
}
.page_mark span:nth-child(1) { left: 0;  top: 12px; border-bottom-color: rgba(0, 231, 214, 0.55); }
.page_mark span:nth-child(2) { left: 18px; top: 0;  border-bottom-color: rgba(47, 128, 255, 0.6); }
.page_mark span:nth-child(3) { left: 34px; top: 12px; border-bottom-color: rgb(50 165 255 / 48%); }

.page_title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: 0.5px;
}
.page_title span {
  background: linear-gradient(90deg, #00e7d6, #2f80ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page_sub {
  margin: 8px auto 0;
  max-width: 760px;
  line-height: 1.7;
  color: #4b5563;
}

/* Info Cards */
.contact-card {
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(11, 157, 202, 0.22) 0px 10px 24px;
}
.contact-ico i {
  color: #2f80ff;
  font-size: 30px;
  margin-bottom: 6px;
}
.contact-label {
  font-weight: 700;
  font-size: 20px;
  color: rgb(117, 32, 11);
  margin-bottom: 8px;
}
.contact-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #111827;
  word-break: break-word;
}

/* Map */
.map {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(4, 7, 163, 0.18) 0px 0px 0px 3px;
  min-height: 520px;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

/* Form */
.form-get {
  border-radius: 14px;
  padding: 26px 22px;
  background: linear-gradient(90deg, #00E7D6, #2F80FF);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
}

.contact-form-ui { width: 100%; }

.form-title {
  font-size: 28px;
  color: #ebf1f7;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

/* Bootstrap form-controls look + your style */
.contact-input,
.contact-textarea {
  border-radius: 10px !important;
  border: 1px solid #d1d9e6 !important;
  background: #f9fbfd !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  outline: none;
  transition: 0.25s ease;
}
.contact-textarea { resize: none; }

.contact-input:focus,
.contact-textarea:focus {
  border-color: #0b1d33 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18) !important;
}

.contact-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #16376b96;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

/* Responsive tweaks (Bootstrap already handles layout) */
@media (max-width: 991px) {
  .map { min-height: 380px; }
  .map iframe { min-height: 380px; }
}
@media (max-width: 767px) {
  .form-get { padding: 22px 16px; }
  .map { min-height: 300px; }
  .map iframe { min-height: 300px; }
  .form-title { font-size: 22px; }
}
@media (max-width: 360px) {
  .form-get { padding: 18px 12px; }
  .contact-input,
  .contact-textarea { padding: 12px 12px !important; font-size: 13px !important; }
}
