    body { font-family: Arial, sans-serif; direction: <?= $rtl ? 'rtl' : 'ltr' ?>; text-align: <?= $rtl ? 'right' : 'left' ?>; }

    .hero {
      position: relative;
      height: 350px !important;
      background: url("<?= htmlspecialchars($hero_image) ?>") no-repeat center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(12, 38, 162, 0.6);
      z-index: 0;
    }

    .hero-content { position: relative; z-index: 1; max-width: 800px; padding: 20px; }
    .hero-content h1 { font-size: 40px; font-weight: 700; margin-bottom: 10px; }
    .hero-content p { font-size: 18px; font-weight: 300; }

    .locator-wrapper { max-width: 1300px; margin: -80px auto 40px; background: #fff; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); padding: 20px; position: relative; z-index: 99; }
    #map { height: 600px; width: 100%; border-radius: 6px; }
    .search-bar { display: flex; gap: 10px; margin-bottom: 10px; }
    .search-bar input { flex: 1; }
    .error-msg { color: #b94a48; background: #f2dede; padding: 6px 12px; border-radius: 4px; margin-bottom: 10px; display: none; }
    .store-list { max-height: 600px; overflow-y: auto; padding-right: 10px; }
    .store-card { padding: 12px; border-bottom: 1px solid #ddd; }
    .store-card b { font-size: 15px; display: block; }
    .store-card small { color: #555; display: block; margin-top: 2px; }
    .store-card a { display: inline-block; margin-top: 4px; margin-right: 6px; font-size: 14px; }

    .mobile-lang-switcher .lang-btn {
      display: inline-block;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }
.lang-switcher {
      position: fixed;
      top: 30px;
      right: 90px;
      z-index: 1500;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px;
    }
    [dir="rtl"] .lang-switcher {
    left: 103px;
    right: auto;
    }
    .lang-option {
      padding: 6px 12px;
      border-radius: 20px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: #333;
      transition: all .2s ease;
    }
    .lang-option.active { background: #0c26a2; color: #fff; }
    .lang-option:not(.active):hover { background: #f4f4f4; }
    .mobile-lang-switcher .lang-btn {
  display: inline-block;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.mobile-lang-switcher .lang-btn:hover {
  background: #000;
  color: #fff;
}
@media (min-width: 768px) {
  .mobile-lang-switcher { display: none !important; }
}
@media screen and (max-width: 575px) {
    header .swoosh {
        display: none;
    }
}
.contact-section {
        z-index: 99;
    position: relative;
}
section.hero:before
 {
    content: "";
    background-color: #efefef !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 15vw;
    height: 15vw;
}
#thankYouMessage, #errorMessage {
  transition: opacity 0.4s ease;
  opacity: 0;
}
#thankYouMessage:not(.d-none), #errorMessage:not(.d-none) {
  opacity: 1;
}
