/* Recovered from the two inline <style> blocks header.php carried.
   Without these the floating WhatsApp/Messenger buttons fall into normal flow
   at the top of the page and push the navbar down, and .desktop-image never
   hides on mobile. The Google Translate rules from the same blocks are not
   carried over — that widget is gone, replaced by the language switcher. */

body {
  top: 0px !important;
}

/* Floating WhatsApp button, pinned to the right edge. */
.fixed {
  position: fixed;
  right: 30px;
  bottom: 90px;
  z-index: 5555;
}

.fixed .call-us i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 5px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
}

.bx-tada {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}

/* Top contact strip is desktop-only. */
.desktop-image {
  display: block;
}

@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }
}

.accordion-item {
  margin-bottom: 10px;
}

/* The language switcher replaces the Google Translate widget. header.php styled
   .goog-te-combo with 15px radius / 10px padding, but Translate also wrapped
   that select in its own .goog-te-gadget div, which added height. This is a
   bare <select>, so the padding is raised to land on the same rendered size —
   roughly 50px tall — rather than copying the original declaration and coming
   out visibly shorter. */
.language-select {
  margin-top: 15px;
  padding: 10px;
  border: 0;
  border-radius: 15px;
  background: #fff;
  color: #243b35;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}

.language-select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
