@charset "utf-8";
/* CSS Document — Contact page */

/*********************************
1. Map fullwidth section
*********************************/

.map-fullwrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-fullwrap-map {
  width: 100%;
  height: 550px;
}

@media (max-width: 768px) {
  .map-fullwrap-map {
    height: 400px;
  }
}

/* Contact overlay on map (top-left) */
.map-contact-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
  max-width: 360px;
}

.map-contact-box {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.map-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f5;
}

.map-contact-item:last-of-type {
  border-bottom: none;
}

.map-contact-item i {
  font-size: 18px;
  color: #ffa37b;
  margin-top: 3px;
  min-width: 22px;
  text-align: center;
}

.map-contact-item span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.map-contact-item strong {
  display: block;
  font-size: 15px;
  color: #1a1a2e;
  margin-bottom: 2px;
}

/* Social icons inside overlay */
.map-contact-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f5;
}

.map-contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f0f0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a2e;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.map-contact-social a:hover {
  background: #ffa37b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,163,123,0.3);
}

@media (max-width: 768px) {
  .map-contact-overlay {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    padding: 20px;
  }

  .map-contact-box {
    box-shadow: none;
    border: 1px solid #eef0f5;
  }

  .map-fullwrap-map {
    height: 300px;
  }
}
