
/* WRAPPER */
.contact-wrapper {
  position: relative;
}

/* IMAGE BLOCK */
.contact-image-block {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING CARD */
.contact-card {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  width: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 2;
}

/* TITLE */
.contact-title {
  color: var(--primary-blue);
  font-weight: 800;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px 0 25px;
}

/* TEXT */
.contact-info-box h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-top: 15px;
}

.contact-info-box p {
  color: #444;
  line-height: 1.7;
  font-size: 14px;
}

.contact-info-box h5 {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

/* LABEL */
.label {
  color: var(--accent-red);
  font-weight: 600;
}

/* LINKS */
.contact-info-box a {
  color: var(--primary-blue);
  text-decoration: none;
}

.contact-info-box a:hover {
  color: var(--accent-red);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .contact-card {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: -80px;
  }

  .contact-image-block {
    height: 300px;
  }
}