/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* ===== Dream Team Cleaning Promo Modal ===== */
:root {
  --dtc-teal: #24c7c7;
  --dtc-teal-dark: #14a6a6;
  --dtc-black: #0c0f12;
  --dtc-white: #ffffff;
  --dtc-muted: rgba(255, 255, 255, 0.75);
  --dtc-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --dtc-radius: 18px;
}

.dtc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* toggled by JS */
}

.dtc-modal.is-open { display: block; }

.dtc-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(12,15,18,0.75);
  backdrop-filter: blur(3px);
}

.dtc-modal__dialog {
  position: relative;
  max-width: 640px;
  margin: 8vh auto;
  background: var(--dtc-black);
  color: var(--dtc-white);
  border-radius: var(--dtc-radius);
  box-shadow: var(--dtc-shadow);
  padding: clamp(20px, 3.5vw, 40px);
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
}

.dtc-modal__close {
  position: absolute; top: 10px; right: 12px;
  font-size: 28px; line-height: 1;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent; color: var(--dtc-white);
  cursor: pointer;
}

.dtc-modal__close:hover { background: rgba(255,255,255,0.06); }

.dtc-modal__badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dtc-muted);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.dtc-modal__title {
  margin: 0 0 10px 0;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  /* The site uses elegant serif for big headings; fall back here */
  font-family: "Playfair Display", Georgia, serif;
}

.dtc-modal__offer {
  margin: 0 0 20px 0;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--dtc-muted);
}

.dtc-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
}

.dtc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 2px solid transparent;
}

.dtc-btn:active { transform: translateY(1px); }

.dtc-btn--primary {
  background: var(--dtc-teal);
  color: black;
  box-shadow: 0 10px 24px rgba(36,199,199,0.28);
}
.dtc-btn--primary:hover { background: var(--dtc-teal-dark); }

.dtc-btn--ghost {
  background: transparent;
  color: var(--dtc-white);
  border-color: rgba(255,255,255,0.25);
}
.dtc-btn--ghost:hover { border-color: var(--dtc-white); }

/* Mobile tweaks */
@media (max-width: 480px) {
  .dtc-modal__dialog { margin: 12vh 14px; }
  .dtc-modal__actions { flex-direction: column; }
}