
/* CARD */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADING */
.contact-card h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.contact-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  margin-top: 8px;
}

/* BLOCKS */
.contact-block {
  margin-bottom: 20px;
}

.contact-block h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.contact-block h5 {
  font-size: 14px;
  line-height: 1.6;
}

/* TEXT */
.contact-card p {
  color: var(--text-black);
  line-height: 1.6;
}

/* EMAIL */
.contact-card a {
  color: var(--accent-red);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--primary-blue);
}

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

/* IMAGE */
.contact-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    margin-top: 20px;
    padding: 20px;
  }

  .contact-block h5 {
    font-size: 13px;
  }
}


/* SECTION */
.about-cont-area2 {
  padding: 30px 0;
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
}

/* CARD */
.map-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.map-header h3 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.map-header h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  margin-top: 8px;
}

/* MAP WRAPPER */
.map-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

/* IFRAME */
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* HOVER EFFECT (optional subtle zoom) */
.map-wrapper iframe:hover {
  transform: scale(1.01);
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }
}