 
  /* All selectors are prefixed with "eal-contact-popup" to avoid
     any conflict with existing site styles. */

  .eal-contact-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(10, 20, 30, 0.45);
    opacity: 0;
    transition: opacity 350ms ease;
    box-sizing: border-box;
  }

  .eal-contact-popup-overlay.eal-contact-popup-visible {
    display: flex;
    opacity: 1;
  }

  .eal-contact-popup {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 24, 61, 0.25), 0 4px 14px rgba(0, 24, 61, 0.1);
    padding: 32px 26px 26px;
    text-align: center;
    box-sizing: border-box;
    transform: scale(0.94) translateY(8px);
    opacity: 0;
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 380ms ease;
    font-family: inherit;
  }

  .eal-contact-popup-overlay.eal-contact-popup-visible .eal-contact-popup {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  .eal-contact-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f6fa;
    border: none;
    border-radius: 50%;
    color: #45566b;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
    padding: 0;
  }

  .eal-contact-popup-close:hover {
    background: #e6edf5;
    color: #0a1a2c;
  }

  .eal-contact-popup-close:focus-visible {
    outline: 2px solid #009fe3;
    outline-offset: 2px;
  }

  .eal-contact-popup-icon-wrap {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1fb855);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
  }

  .eal-contact-popup-heading {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    color: #0a1a2c;
    letter-spacing: -0.01em;
  }

  .eal-contact-popup-desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.5;
    color: #5a6b7d;
  }

  .eal-contact-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .eal-contact-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 18px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease,
      border-color 150ms ease, color 150ms ease;
    min-height: 48px;
  }

  .eal-contact-popup-btn:active {
    transform: scale(0.98);
  }

  .eal-contact-popup-btn:focus-visible {
    outline: 2px solid #009fe3;
    outline-offset: 2px;
  }

  .eal-contact-popup-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  }

  .eal-contact-popup-btn-whatsapp:hover {
    background: #21bd5b;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.38);
  }

  .eal-contact-popup-btn-call {
    background: #ffffff;
    color: #0091d6;
    border-color: #0091d6;
  }

  .eal-contact-popup-btn-call:hover {
    background: #f0f9ff;
  }

  .eal-contact-popup-btn-icon {
    flex-shrink: 0;
  }

  /* Mobile */
  @media (max-width: 480px) {
    .eal-contact-popup {
      max-width: 100%;
      padding: 28px 20px 22px;
      border-radius: 16px;
    }

    .eal-contact-popup-heading {
      font-size: 17px;
    }

    .eal-contact-popup-desc {
      font-size: 13.5px;
    }

    .eal-contact-popup-btn {
      font-size: 14.5px;
      padding: 14px 16px;
    }
  }

  /* Respect reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .eal-contact-popup-overlay,
    .eal-contact-popup {
      transition: none !important;
    }
  }
 