/* ==========================================================================
   Site Header (free-tier — rendered by header.php, not Elementor Pro)
   ========================================================================== */
.de-site-header {
    background: var(--de-white);
    border-bottom: 1px solid var(--de-border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.de-site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.de-site-header__logo-text {
    font-family: var(--de-font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--de-ink-navy);
    text-decoration: none;
}

.de-site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.de-site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.de-site-header__whatsapp {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
}

.de-site-header__cta.de-btn-cta {
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

/* Header shadow-on-scroll (toggled by mega-menu.js) */
.de-header-scrolled.de-site-header {
    box-shadow: 0 2px 16px rgba(10, 22, 40, 0.08);
}

@media (max-width: 1024px) {
    .de-site-header__nav { order: 3; width: 100%; justify-content: flex-start; }
    .de-site-header__inner { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .de-site-header__cta { display: none; } /* keep header lean on very small screens */
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.de-site-footer {
    background: var(--de-ink-navy);
    color: var(--de-off-white);
    padding: 60px 24px 24px;
}

.de-site-footer__columns {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.de-site-footer__col h4 {
    color: var(--de-white);
    font-family: var(--de-font-heading);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.de-site-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.de-site-footer__col ul li { margin-bottom: 10px; }

.de-site-footer__col a {
    color: var(--de-off-white);
    text-decoration: none;
    opacity: 0.85;
}

.de-site-footer__col a:hover { opacity: 1; color: var(--de-teal); }

.de-site-footer__social { display: flex; gap: 10px; margin: 16px 0 8px; }
.de-site-footer__social a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600;
}

.de-site-footer__note { font-size: 12px; opacity: 0.6; }

.de-site-footer__bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    opacity: 0.75;
}

.de-site-footer__bottom a { color: inherit; margin-left: 8px; }

@media (max-width: 900px) {
    .de-site-footer__columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .de-site-footer__columns { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Floating WhatsApp button (free — no plugin)
   ========================================================================== */
.de-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 1000;
}

.de-icon-whatsapp {
    width: 24px;
    height: 24px;
    background: var(--de-white);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12c0 1.85.5 3.58 1.36 5.07L2 22l5.06-1.33A9.94 9.94 0 0 0 12 22c5.52 0 10-4.48 10-10S17.52 2 12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12c0 1.85.5 3.58 1.36 5.07L2 22l5.06-1.33A9.94 9.94 0 0 0 12 22c5.52 0 10-4.48 10-10S17.52 2 12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* If a chat widget (e.g. Tidio free plan) is added later, offset it so the
   two bubbles don't overlap: */
.de-whatsapp-float { bottom: 90px; } /* stacks above a bottom-right chat widget */
