/* Dana Golds — shared components: mobile menu, contact popup, social icons */

/* mobile menu dropdown */
@media (max-width: 860px) {
  .menu.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    padding: 6px 0;
    box-shadow: 0 16px 34px rgba(1, 10, 79, 0.12);
    border-top: 1px solid rgba(1, 10, 79, 0.08);
  }
  .menu.open a {
    padding: 15px 26px;
    border-top: 1px solid rgba(1, 10, 79, 0.06);
    opacity: 1;
  }
}

/* social icons */
.socials { display: flex; gap: 12px; align-items: center; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff; color: #010A4F;
  box-shadow: 0 8px 22px rgba(1, 10, 79, 0.06);
  border: 1px solid rgba(1, 10, 79, 0.08);
  transition: transform .15s ease, color .15s ease, background .15s ease;
}
.socials a:hover { transform: translateY(-2px); color: #fff; background: #F5AFB9; }
.socials a svg { width: 20px; height: 20px; }
.dg-socials { justify-content: center; margin: 16px auto 4px; }
.dg-disclaimer { color: #6b6b78; font-size: .85rem; margin-top: 12px; opacity: .85; }

/* contact popup */
.dg-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(1, 10, 79, 0.5); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.dg-modal.show { display: flex; }
.dg-card {
  background: #fff; border-radius: 24px; max-width: 460px; width: 100%;
  padding: 36px 34px; position: relative; box-shadow: 0 30px 80px rgba(1, 10, 79, 0.35);
  max-height: 92vh; overflow: auto; font-family: "Varela Round", sans-serif;
  text-align: right;
}
.dg-close {
  position: absolute; top: 12px; left: 16px; background: none; border: none;
  font-size: 1.9rem; line-height: 1; color: #010A4F; cursor: pointer; opacity: .55;
}
.dg-close:hover { opacity: 1; }
.dg-card h3 { font-family: "Rubik", sans-serif; font-weight: 800; color: #010A4F; font-size: 1.6rem; margin-bottom: 10px; }
.dg-lead { color: #6b6b78; margin-bottom: 20px; line-height: 1.6; }
.dg-form input, .dg-form textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid rgba(1, 10, 79, 0.12);
  border-radius: 12px; font-family: "Varela Round", sans-serif; font-size: 1rem; margin-bottom: 10px; background: #fff;
}
.dg-form input:focus, .dg-form textarea:focus { outline: none; border-color: #010A4F; }
.dg-form textarea { min-height: 72px; resize: vertical; }
.dg-hp { position: absolute; left: -9999px; }
.dg-submit {
  width: 100%; background: #010A4F; color: #fff; border: none; border-radius: 44px;
  padding: 14px; font-family: "Rubik", sans-serif; font-weight: 700; font-size: 1.02rem; cursor: pointer; margin-top: 4px;
}
.dg-submit:hover { opacity: .92; }
.dg-or { text-align: center; color: #6b6b78; margin: 18px 0 10px; font-size: .92rem; }
.dg-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; border-radius: 44px; padding: 13px;
  font-family: "Rubik", sans-serif; font-weight: 700; text-decoration: none;
}
.dg-wa svg { width: 20px; height: 20px; fill: #fff; }
.dg-wa:hover { opacity: .92; }
.dg-thanks { text-align: center; padding: 10px 0; }
.dg-thanks h3 { justify-content: center; }
.dg-thanks p { color: #6b6b78; margin: 8px 0 18px; }
.dg-check {
  width: 64px; height: 64px; border-radius: 50%; background: #EAF2FE; color: #010A4F;
  font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
