/* ---- Fonts and Variables ---- */

:root {
  --brand-primary: #055391;
  --brand-secondary: #F78628;
  --bg-light: #f6f7f8;
  --bg-dark: #0a1d2e;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: #0f172a;
}

/* ---- Brand color classes ---- */

.text-brand-primary {
  color: var(--brand-primary) !important;
}

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}

.border-brand-primary {
  border-color: var(--brand-primary) !important;
}

.text-brand-secondary {
  color: var(--brand-secondary) !important;
}

.bg-brand-secondary {
  background-color: var(--brand-secondary) !important;
}

.text-brand-orange {
  color: #F78628 !important;
}

.text-brand-green {
  color: #4ade80 !important;
}

.btn-brand-secondary {
  background-color: var(--brand-secondary);
  color: white;
  font-weight: bold;
  border: none;
}

.btn-brand-secondary:hover {
  background-color: #e07015;
  color: white;
}

.btn-brand-primary {
  background-color: var(--brand-primary);
  color: white;
  font-weight: bold;
  border: none;
}

.btn-brand-primary:hover {
  background-color: #04406f;
  color: white;
}

/* ---- Utilities ---- */

.backdrop-blur {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.95);
}

.icon-box-primary {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(5, 83, 145, 0.1);
  color: var(--brand-primary);
}

.icon-box-secondary {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(247, 134, 40, 0.1);
  color: var(--brand-secondary);
}

.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-2px);
}

.hover-orange:hover {
  color: #F78628 !important;
  cursor: pointer;
}

.material-symbols-outlined {
  font-size: 24px;
}

.text-3xl {
  font-size: 30px;
}

.text-4xl {
  font-size: 36px;
}

/* ---- Active nav indicator (orange underline) ---- */

.navbar .nav-link {
  border-bottom: 3px solid transparent;
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar .nav-link.active, .navbar .nav-link[aria-current="page"] {
  color: var(--brand-secondary) !important;
  border-bottom-color: var(--brand-secondary);
}

/* ---- Hero ---- */

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 83, 145, 0.3), transparent);
}

/* ---- Announcement band ---- */

.announce-band {
  background: linear-gradient(135deg, #0a1d2e 0%, #055391 100%);
  color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}

.announce-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(247, 134, 40, 0.18);
  color: #ffd9b3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(247,134,40,0.35);
}

/* ---- FAQ accordion (brand) ---- */

.accordion-button:not(.collapsed) {
  color: var(--brand-primary);
  background-color: rgba(5, 83, 145, 0.06);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(5,83,145,0.2);
}

.accordion-button {
  font-weight: 600;
}

/* ---- Footer (deep blue) ---- */

.meest-footer-blue {
  background-color: #055391;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-family: 'Inter', sans-serif;
}

.meest-brand {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.meest-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.meest-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.meest-footer-blue ul li {
  margin-bottom: 0.75rem;
}

.meest-footer-blue a {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.meest-footer-blue a:hover {
  color: #F78628;
  padding-left: 5px;
}

.meest-bottom-bar {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.meest-bottom-bar a {
  color: rgba(255, 255, 255, 0.5);
}

.meest-bottom-bar a:hover {
  color: #F78628;
}

/* ---- Status badge (top bar) ---- */

#status-badge {
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.badge-open-style {
  background-color: #dcfce7 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0;
}

.badge-closed-style {
  background-color: var(--brand-secondary) !important;
  color: #ffffff !important;
  border: 1px solid #e07015;
}

/* ---- Hours card + weekly list ---- */

.hours-card-body {
  padding: 2rem;
}

.status-badge {
  display: inline-block;
  padding: 0.5em 1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.bg-status-open {
  background-color: #2e7d32;
}

.bg-status-closed {
  background-color: var(--brand-secondary);
}

.hours-main-header {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.hours-sub-header {
  font-size: 1.1rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hours-week-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  color: #334155;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day-name {
  font-weight: 600;
}

.hours-footer {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #475569;
}

.hours-phone-link {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  margin-top: 0.25rem;
}

.hours-phone-link:hover {
  color: var(--brand-secondary);
}

.hours-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
}

/* ---- Location map pin bounce (inner element only, keeps centering intact) ---- */

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.map-pin-bounce {
  animation: bounce 2s infinite;
  display: inline-block;
}

/* ============================================================   Floating WhatsApp bubble + mobile 3-button bar   (your provided styles)   ============================================================ */

.meest-contact * {
  box-sizing: border-box;
}

.meest-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meest-wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.meest-wa-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.meest-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  padding-bottom: env(safe-area-inset-bottom);
}

.meest-mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  text-decoration: none;
  color: #fff;
  font: 600 12px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.meest-mobile-bar a svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.meest-mb-whatsapp {
  background: #25D366;
}

.meest-mb-call {
  background: #1b4965;
}

.meest-mb-map {
  background: #C8102E;
}

@media (max-width: 767px) {
  .meest-wa-float {
    display: none;
  }
}

@media (max-width: 767px) {
  .meest-mobile-bar {
    display: flex;
  }
}

/* ============================================================   Help / chat bubble — pinned LEFT so it never collides with   the WhatsApp bubble on the right   ============================================================ */

#meest-chat-container {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9990;
}

#chat-toggle {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

#chat-window {
  display: none;
  width: 300px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  margin-bottom: 0.6rem;
}

#chat-window.open {
  display: block;
}

#chat-window .chat-header {
  background: var(--brand-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

#chat-window .chat-header .close-btn {
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

#chat-messages {
  padding: 1rem;
  max-height: 240px;
  overflow-y: auto;
}

#chat-messages .bot-msg {
  background: #f1f5f9;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #334155;
}

.chat-input-area {
  display: flex;
  border-top: 1px solid #e2e8f0;
}

.chat-input-area input {
  flex: 1;
  border: none;
  padding: 0.65rem 0.85rem;
  outline: none;
  font-size: 0.9rem;
}

.chat-input-area button {
  border: none;
  background: var(--brand-secondary);
  color: #fff;
  padding: 0 1rem;
  cursor: pointer;
}

/* lift the help bubble above the mobile contact bar */

@media (max-width: 767px) {
  #meest-chat-container {
    bottom: 84px;
    left: 16px;
  }
}

