/* ==========================================================================
   CloudMobile custom fix — top header contact icons (Call / WhatsApp /
   Email / Facebook). Forces a single horizontal row on every screen size,
   with round brand-coloured buttons instead of the stacked text list.
   Safe to load after the theme/Elementor CSS so it can override it.
   ========================================================================== */

.elementor-element-5896c72 .elementor-icon-list-items {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px;
  margin: 0 !important;
  padding: 6px 0 !important;
}

.elementor-element-5896c72 .elementor-icon-list-item {
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 auto;
}

.elementor-element-5896c72 .elementor-icon-list-item:after {
  content: none !important; /* remove the old vertical divider lines */
}

.elementor-element-5896c72 .elementor-icon-list-item a {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.elementor-element-5896c72 .elementor-icon-list-item a:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.elementor-element-5896c72 .elementor-icon-list-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.elementor-element-5896c72 .elementor-icon-list-icon i {
  font-size: 15px !important;
  width: auto !important;
  color: #ffffff !important;
  transition: color 0.25s ease;
}

/* Brand colours for each icon's circular background */
.elementor-element-5896c72 li:nth-child(1) .elementor-icon-list-icon { background: #3aa757; } /* Call */
.elementor-element-5896c72 li:nth-child(2) .elementor-icon-list-icon { background: #25d366; } /* WhatsApp */
.elementor-element-5896c72 li:nth-child(3) .elementor-icon-list-icon { background: #d18a35; } /* Email - matches header bg accent */
.elementor-element-5896c72 li:nth-child(4) .elementor-icon-list-icon { background: #1877f2; } /* Facebook */

.elementor-element-5896c72 .elementor-icon-list-text {
  color: #ffffff !important;
  font-size: 14px !important;
  padding-inline-start: 0 !important;
  transition: color 0.25s ease;
}

.elementor-element-5896c72 .elementor-icon-list-item a:hover .elementor-icon-list-text {
  color: #222222 !important;
}

/* On tablets/phones: keep everything on one row, shrink to icon-only
   buttons with a tooltip-style label so it never wraps or stacks. */
@media (max-width: 1024px) {
  .elementor-element-5896c72 .elementor-icon-list-items {
    justify-content: center !important;
    gap: 8px;
    flex-wrap: nowrap !important;
    overflow-x: auto;
  }

  .elementor-element-5896c72 .elementor-icon-list-item a {
    padding: 6px;
    gap: 0;
  }

  .elementor-element-5896c72 .elementor-icon-list-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .elementor-element-5896c72 .elementor-icon-list-icon {
    width: 32px;
    height: 32px;
  }

  .elementor-element-5896c72 .elementor-icon-list-icon i {
    font-size: 16px !important;
  }
}
