/* Ray Technologies — static-site overrides (post-WordPress migration).
   Linked on every page. Page-specific rules are scoped by Elementor element
   ID, so they only take effect on the page where those elements exist. */

/* ============================ GLOBAL (all pages) ============================ */

/* Remove the header search icon + its modal. Site search has no backend on a
   static host, so the magnifying glass is hidden everywhere. */
.elementor-element-bd211cb {
  display: none !important;
}

/* ============================ CONTACT PAGE ============================ */

/* GAP FIX: hide empty leftover sections that left a big blank space under the
   contact box —
   - 2cfb91cb: placeholder offices (Jakarta/Bandung/Surabaya), hidden on all devices
   - 243e02e2: Google Map widget whose iframe had no source (rendered empty) */
.elementor-element-2cfb91cb,
.elementor-element-243e02e2 {
  display: none !important;
}

/* BALANCE FIX: keep the full-width coral panel, hold the contact details to the
   left, and inset the office-location map on the right. */
.elementor-element-23423f > .elementor-element-populated {
  position: relative !important;
  padding-right: 40% !important;
}
.raytl-map {
  position: absolute;
  top: 40px;
  right: 44px;
  bottom: 40px;
  width: 33%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.raytl-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1024px) {
  .elementor-element-23423f > .elementor-element-populated {
    padding-right: 7% !important;
  }
  .raytl-map {
    position: static;
    width: 100%;
    height: 260px;
    margin: 20px 0 4px;
  }
  .raytl-map iframe { height: 260px; }
}
