:root {
  --shell-green: #00796b;
  --shell-green-dark: #004d40;
  --shell-green-light: #e0f2f1;
  --shell-green-mid: #26a69a;
  --shell-text: #212529;
  --shell-muted: #6c757d;
  --shell-border: #e9ecef;
}

.site-shell-container {
  width: min(100% - 32px, 1140px);
  margin-inline: auto;
}

.site-shell-topbar {
  background: var(--shell-green-dark);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 0;
}

.site-shell-topbar-inner,
.site-shell-topbar-group {
  display: flex;
  align-items: center;
}

.site-shell-topbar-inner {
  justify-content: space-between;
  gap: 20px;
}

.site-shell-topbar-group {
  gap: 12px;
}

.site-shell-topbar a {
  color: inherit;
  text-decoration: none;
}

.site-shell-topbar a:hover {
  color: #fff;
}

.site-shell-topbar-separator {
  color: rgba(255, 255, 255, 0.28);
}

.site-shell-emergency {
  color: #ffd54f !important;
  font-weight: 700;
  white-space: nowrap;
}

header.site-shell-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  border: 0 !important;
  border-bottom: 1px solid var(--shell-border) !important;
  box-shadow: none !important;
  font-family: Poppins, Arial, sans-serif;
  transition: box-shadow 0.25s ease;
}

header.site-shell-header.is-scrolled,
header.site-shell-header.scrolled,
header.site-shell-header #mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

.site-shell-nav {
  min-height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-shell-brand {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: inherit !important;
  text-decoration: none !important;
  flex-shrink: 0;
}

.site-shell-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
}

.site-shell-brand-copy {
  line-height: 1.2;
  text-align: left;
}

.site-shell-brand-name,
.site-shell-brand-tagline {
  display: block;
}

.site-shell-brand-name {
  color: var(--shell-green);
  font-size: 18px;
  font-weight: 700;
}

.site-shell-brand-tagline {
  margin-top: 2px;
  color: var(--shell-muted);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.site-shell-menu-button,
.site-shell-close-button {
  appearance: none;
  border: 1.5px solid var(--shell-border);
  background: #fff;
  color: var(--shell-text);
  cursor: pointer;
}

.site-shell-menu-button {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 8px;
  font-size: 20px;
}

.site-shell-panel-header {
  display: none;
}

.site-shell-nav-list {
  display: flex !important;
  align-items: center;
  gap: 4px;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.site-shell-nav-list li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.site-shell-nav-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 14px !important;
  margin: 0 2px !important;
  border-radius: 8px;
  color: var(--shell-text) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-shell-nav-link:hover,
.site-shell-nav-link.is-active {
  color: var(--shell-green) !important;
  background: var(--shell-green-light) !important;
}

.site-shell-call {
  margin-left: 8px !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  background: var(--shell-green) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

.site-shell-call:hover {
  background: var(--shell-green-dark) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0, 121, 107, 0.3);
  transform: translateY(-1px);
}

.site-shell-backdrop {
  display: none;
}

.site-shell-ticker {
  overflow: hidden;
  width: 100%;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 121, 107, 0.12);
  background: var(--shell-green-light);
  font-family: "Open Sans", Arial, sans-serif;
}

.site-shell-ticker-track {
  display: flex;
  width: max-content;
  animation: siteShellTicker 35s linear infinite;
}

.site-shell-ticker-track.ticker-dir-right {
  animation-name: siteShellTickerRight;
}

.site-shell-ticker-track.ticker-dir-left {
  animation-name: siteShellTicker;
}

.site-shell-ticker-track:hover {
  animation-play-state: paused;
}

.site-shell-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  color: var(--shell-green-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.site-shell-ticker-item i {
  color: var(--shell-green);
  font-size: 11px;
}

@keyframes siteShellTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes siteShellTickerRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

footer.site-shell-footer {
  width: 100%;
  padding: 60px 0 24px !important;
  margin: 0 !important;
  border: 0 !important;
  background: #1a2e2b !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: "Open Sans", Arial, sans-serif;
  text-align: left !important;
}

.site-shell-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
}

.site-shell-footer .site-shell-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  text-decoration: none;
}

.site-shell-footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
}

.site-shell-footer .site-shell-footer-brand .site-shell-brand-name {
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 17px;
}

.site-shell-footer .site-shell-footer-brand .site-shell-brand-tagline {
  color: rgba(255, 255, 255, 0.65);
}

.site-shell-footer p {
  margin: 0 0 20px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px !important;
  font-weight: 300;
  line-height: 1.8 !important;
}

.site-shell-social {
  display: flex;
  gap: 8px;
}

.site-shell-social a {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-shell-social a:hover {
  border-color: var(--shell-green);
  background: var(--shell-green);
  color: #fff;
  transform: translateY(-2px);
}

.site-shell-footer-heading {
  margin: 0 0 16px !important;
  padding: 0 0 10px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  background: transparent !important;
  font-family: Poppins, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

.site-shell-footer .site-shell-footer-links {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.site-shell-footer .site-shell-footer-links li {
  padding: 0 !important;
  margin: 0 0 9px !important;
  list-style: none !important;
}

.site-shell-footer .site-shell-footer-links a {
  display: flex !important;
  align-items: center;
  gap: 7px;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  text-decoration: none !important;
}

.site-shell-footer .site-shell-footer-links a:hover {
  color: #fff !important;
}

.site-shell-footer .site-shell-footer-links i {
  color: var(--shell-green-mid);
  font-size: 9px;
}

.site-shell-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.site-shell-contact-item i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--shell-green-mid);
  font-size: 13px;
}

.site-shell-contact-item a {
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: none !important;
}

.site-shell-contact-item a:hover {
  color: #ffd54f !important;
}

.site-shell-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 300;
}

.site-shell-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-shell-footer-legal a {
  color: rgba(255, 255, 255, 0.58) !important;
  text-decoration: none !important;
}

.site-shell-footer-legal a:hover {
  color: #fff !important;
}

body.site-shell-menu-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .site-shell-topbar {
    display: none;
  }

  .site-shell-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-shell-panel {
    position: fixed;
    z-index: 1070;
    top: 0;
    right: 0;
    width: min(300px, 100vw);
    height: 100dvh;
    padding: 0 20px 24px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.16);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .site-shell-panel.is-open,
  .site-shell-panel.active {
    transform: translateX(0);
    visibility: visible;
  }

  .site-shell-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 -20px 18px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--shell-border);
  }

  .site-shell-panel-title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--shell-green);
    font-size: 17px;
    font-weight: 700;
  }

  .site-shell-panel-title img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
  }

  .site-shell-close-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
  }

  .site-shell-nav-list {
    display: grid !important;
    gap: 8px;
  }

  .site-shell-nav-link {
    display: flex !important;
    justify-content: flex-start;
    width: 100%;
    margin: 0 !important;
    padding: 12px 16px !important;
    background: #f8faf9 !important;
    font-size: 15px !important;
  }

  .site-shell-nav-link:hover,
  .site-shell-nav-link.is-active {
    padding-left: 20px !important;
  }

  .site-shell-call {
    justify-content: center;
    margin: 16px 0 0 !important;
    padding: 14px 20px !important;
  }

  .site-shell-backdrop {
    position: fixed;
    z-index: 1060;
    inset: 0;
    display: block;
    background: rgba(10, 30, 27, 0.46);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-shell-backdrop.is-open,
  .site-shell-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .site-shell-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-shell-footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-shell-container {
    width: min(100% - 24px, 1140px);
  }

  .site-shell-nav {
    min-height: 68px;
  }

  .site-shell-brand img {
    width: 44px;
    height: 44px;
  }

  .site-shell-brand-name {
    font-size: 16px;
  }

  .site-shell-brand-tagline {
    font-size: 10px;
  }

  .site-shell-ticker-item {
    padding: 0 26px;
    font-size: 12px;
  }

  footer.site-shell-footer {
    padding-top: 44px !important;
  }

  .site-shell-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-shell-footer-about {
    grid-column: auto;
  }

  .site-shell-footer-bottom {
    flex-direction: column;
    justify-content: center;
    margin-top: 36px;
    text-align: center;
  }

  .site-shell-footer-legal {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-shell-ticker-track {
    animation: none;
  }

  .site-shell-panel,
  .site-shell-backdrop,
  header.site-shell-header {
    transition: none;
  }
}
