  /* ====== Block: contact__item ====== */
.contact__item { padding: 3rem 0;}
.contact__item-info { background: #fff; }

/* Heading */
.contact__heading {
  margin: 0 0 32px;
  font-size: 32px;
  line-height:42px;
  font-weight: 900;
  color: #2e3570; /* xanh đậm như ảnh */
}
.contact__item-form .contact__heading{
    margin-bottom:1rem;
}

/* Card (Element) */
.contact__card {
  background: transparent;
  border: 0;
  padding: 12px 16px 24px;
  margin: 12px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon square + image centered */
.contact__icon {
  width: 120px;
  height: 120px;
  background: #ff5e14;          /* cam KTQ */
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.contact__icon img {
  width: 90px; 
  height: 90px;    /* tuỳ file svg/png của bạn */
  display: block;
}

/* Titles & text */
.contact__title {
  font-size: 22px;
  line-height:32px;
  font-weight: 700;
  color: #2e3570;
  margin: 12px 0 6px;
}

.contact__text {
  margin: 6px auto;      
  font-weight:500;
  font-size:15px;
  max-width:360px;
}

/* Label bold trong phần địa chỉ */
.contact__label {
  font-weight: 900;
  display:block;
  text-align:center;
  margin-bottom:0.5rem;
  font-size:18px;
  line-height:28px;
}

/* Link màu xám đậm, hover xanh */
.contact__link {
  color: #252525;
  text-decoration: none;
}
.contact__link:hover { color: #2e3570; text-decoration: underline; }

/* ====== FORM SECTION ====== */
.contact__item-form {
  background: #4c98cf; /* nền xanh form */
}

.contact__sub {
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 26px;
}

.contact__form {
  max-width: 980px;
  margin: 0 auto;
  margin-top:3rem;
}
.contact__form .row{
    margin:0 -6px;
}
.contact__form .row > div{
    padding:0 6px;
}
.contact__field { margin-bottom: 2rem; }

.contact__label {
  position: absolute;
  left: -9999px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  display: block;
  padding: 14px 18px;
  background: #22455d;
  border: 2px solid rgba(255,255,255,0.75);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255,255,255,0.9);
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

.contact__textarea {
  min-height: 220px;
  resize: vertical;
}

.contact__actions { text-align: center; }

.contact__btn {
  display: inline-block;
  background: #fff;
  color: #4c98cf;
  font-weight: 900;
  letter-spacing: .5px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .2s ease, opacity .2s ease;
  padding:0 5rem;
  min-width:220px;
}
.contact__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.contact__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.contact__btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.contact__item-map{
    height:100vh;
}
.contact__item-map iframe{
    width:100%;
    height:100vh;
}

/* ====== Responsive ====== */
@media (min-width: 768px) {
  .contact__item { padding: 5rem 0; }
  .contact__heading { font-size: 36px; line-height:46px; margin-bottom: 3rem; }
  .contact__sub {font-size: 16px; }
}

@media (min-width: 992px) {
  .contact__heading { font-size: 48px; line-height:58px }

  .contact__sub { font-size: 18px; line-height: 28px; }
}
@media (max-width:991px){
    .bread-crumb{
                align-items: center !important;
    }
}
@media (max-width:767px){
    .contact__card{
    padding:0;
}
}
@media (max-width: 575.98px) {
  .contact__heading {
    font-size: 24px;
    line-height: 1.3;
  }
  .contact__item {
    padding: 2rem 0;
  }
  .contact__sub {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 1.25rem;
  }
  .contact__textarea { min-height: 180px; }
}
