/* ================= QUICK ACTIONS ================= */
.quick-actions{
  background:var(--surface-2);
  padding:70px 60px 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  max-width:1300px;
  margin:0 auto;
}

.qa-card{
  border:1px solid var(--gold-line);
  padding:32px 22px;
  text-align:center;
  text-decoration:none;
  color:var(--cream);
  background:var(--surface-2);
  cursor:pointer;
  font-family:Cambria, Georgia, serif;
  transition:0.3s;
}

.qa-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.qa-card i, .qa-card svg{
  font-size:28px;
  width:28px;
  height:28px;
  margin-bottom:14px;
  display:inline-block;
}

.qa-card.wa i{ color:#25D366; }
.qa-card.callback svg{ stroke:var(--gold-3); }
.qa-card.call svg{ stroke:#2b6cb0; }
.qa-card.mail svg{ stroke:#c98a1e; }

.qa-card h4{
  font-size:15px;
  margin-bottom:6px;
  word-break:break-word;
}

.qa-card p{
  font-size:12.5px;
  color:var(--muted);
}

@media(max-width:1024px){
  .quick-actions{ grid-template-columns:1fr 1fr; padding:30px 30px 10px; margin-bottom:20px; }
}

@media(max-width:768px){
  .quick-actions{ grid-template-columns:1fr 1fr; padding:50px 16px 0; gap:14px; }
  .qa-card{ padding:22px 14px; }
  .qa-card h4{ font-size:13px; }
}

/* ================= MAP EMBED ================= */
.map-embed{
  margin-top:40px;
  border-radius:4px;
  overflow:hidden;
  filter:grayscale(15%);
}

.info-box h4 a{
  color:inherit;
  text-decoration:none;
}

.info-box h4 a:hover{
  color:var(--gold-3);
}

/* ================= FORM STATUS ================= */
.form-status{
  display:none;
  align-items:center;
  gap:8px;
  margin-top:16px;
  padding:14px 16px;
  background:var(--surface-2);
  color:var(--gold-4);
  font-size:13.5px;
  border-left:3px solid var(--gold-4);
}

.form-status svg{
  width:18px;
  height:18px;
  stroke:var(--gold-4);
  flex-shrink:0;
}

.form-note{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:16px;
  font-size:12px;
  color:var(--muted);
}

.form-note svg{
  width:14px;
  height:14px;
}

@media(max-width:768px){
  .map-embed iframe{ height:200px; }
}