/* ============================================================
   VISIONARY ELITE MARRAKECH — contact.css
   ============================================================ */

.hero-mini-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ── AUDIT CARD ───────────────────────────────────────────── */
.audit-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
}

/* ── CONTACT CARDS ────────────────────────────────────────── */
.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.18);
}
@media (min-width: 768px) {
  .contact-card.featured {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(212,160,23,0.22);
  }
  .contact-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

/* ── WHATSAPP MESSAGE CARDS ───────────────────────────────── */
.wa-message-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: block;
  text-decoration: none;
}
.wa-message-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(212,160,23,0.22);
  border-color: rgba(212,160,23,0.55) !important;
}

/* ── MAPS IFRAME ──────────────────────────────────────────── */
.maps-embed-frame {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(5,13,31,0.14);
  display: block;
  width: 100%;
}

/* ── INFO ITEMS ───────────────────────────────────────────── */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212,160,23,0.12);
}
.info-item:last-child {
  border-bottom: none;
}
.info-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212,160,23,0.10);
  border: 1px solid rgba(212,160,23,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── REASSURANCE STRIP ────────────────────────────────────── */
.reassurance-item {
  text-align: center;
  padding: 0 1rem;
}
.reassurance-item + .reassurance-item {
  border-left: 1px solid rgba(212,160,23,0.20);
}
@media (max-width: 640px) {
  .reassurance-item + .reassurance-item {
    border-left: none;
    border-top: 1px solid rgba(212,160,23,0.20);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}
