/* ===== Contact Info Boxes ===== */
.contact-box {
  flex: 1 1 45%;
  background: #fff6f4;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-6px);
  background: #ffe9e3;
  box-shadow: 0 8px 18px rgba(225, 58, 20, 0.15);
}
.contact-box h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #e13a14;
}
.contact-box p {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.4;
}
.contact-box a {
  color: #e13a14;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-box a:hover { color: #ff6f3c; }

@media(max-width: 768px){
  .contact-box { flex: 1 1 100%; }
}

/* ===== Map ===== */
.map-container {
  width: 100%;
  margin: 40px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: block;
  flex: none;   /* ensures it is NOT treated as flex child */
}
@media(max-width: 768px){
  .map-container { margin: 20px 0; border-radius: 0; }
}
