/* ------------------- START: ERROR MESSAGES --------------------- */
.messages-wrap {
  margin: 0 0 18px 0;
}

.messages-wrap .alert {
  position: relative;
  padding: 14px 42px 14px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 14px;
  line-height: 1.45;
}

.messages-wrap .msg-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #065f46;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.messages-wrap .msg-close:hover {
  opacity: 0.7;
}
/* ------------------- END: ERROR MESSAGES --------------------- */


/* ================= RESET ================= */
* {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

*:focus {
  outline: 0;
}

body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #545e66;
  font-family: 'Inter', sans-serif;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

a,
a:link {
  text-decoration: none;
  outline: none;
}

p {
  padding: 2px 0;
  margin: 0;
}

.clear {
  clear: both;
}

a {
  text-decoration: none;
  color: #008eff;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

.modal {
  overflow-y: auto;
}

.modal .button {
  font-size: 14px;
  padding-left: 0;
  padding-right: 0;
  min-width: 80px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.modal h2 {
  font-weight: 700;
}

.modal p {
  font-size: 14px;
  font-weight: 500;
}

body.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

::placeholder {
  opacity: 1;
  color: var(--grey);
}
/* ================= END RESET ================= */


/* ================= COLOR VARIABLES ================= */
:root {
  --primary: #00a57f;
  --secondary: #212121;
  --grey: #787878;
  --light-grey: #e8e8e8;
  --lighter-grey: #f2f2f2;
  --white: #ffffff;
  --black: #000000;
  --error: #e93c3c;
}
/* ================= END COLOR VARIABLES ================= */


.container {
  max-width: 1420px !important;
}

h2 {
  color: #545e66;
  font-size: 30px;
  font-weight: 500;
}

.service-top h2 {
  font-weight: 600;
}

.logo,
.footer-logo {
  width: 140px;
  height: 24px;
}

.logo a,
.footer-logo a {
  display: inline-block;
}

.logo img,
.footer-logo img {
  max-width: 140px;
}

.button {
  border: none;
  background: #6bb0f4;
  color: #fff;
  border-radius: 999px;
  padding: 12px 50px;
  text-align: center;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.button.full {
  width: 100%;
}

.button:hover {
  background: #71b8ff;
}

.button.orange {
  background: #f09b36;
}

.button.teal {
  background: #cce3f1;
}

.button.bdr {
  background: none;
  border: 1px solid #3280e5;
  color: #3280e5;
}

.button.bdr-grey {
  background: none;
  color: #786e81;
  border: 1px solid #786e81;
}

.custom-tooltip {
  --bs-tooltip-bg: #1e88e5;
  --bs-tooltip-color: #ebf2f7;
  --bs-tooltip-max-width: 360px;
}

.tooltip {
  margin-bottom: 30px !important;
  z-index: 2000;
}

.tooltip-inner {
  --bs-tooltip-bg: rgba(30, 136, 229, 1);
  --bs-tooltip-color: #ffffff;
  padding: 30px;
}


.tooltip-inner h6 {
  padding-bottom: 5px;
  font-size: 15px;
}

.tooltip-inner h5 {
  font-size: 14px;
}

.tooltip-inner li {
  padding-top: 5px;
  font-weight: 600;
  font-size: 11.5px;
  border-bottom: 0.5px solid #4198d8;
  padding-bottom: 5px;
  opacity: 1;
}

.tooltip-inner p {
  padding-top: 10px;
  font-weight: 600;
  font-size: 11px;
  padding-bottom: 5px;
}

.tooltip-inner .tooltip-sml {
  padding-bottom: 5px;
}

.tooltip.show {
  opacity: 0.95;
}

/* ------------------- START: TICKER RUNNING STRING --------------------- */
.hero-message {
  position: relative;
}

.hero-message-main {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-ticker {
  width: 100%;
  padding: 0 13px;
  overflow: hidden;
  z-index: 5;
  align-items: center;
}

.hero-ticker-active {
  background: rgba(255, 70, 0, 0.8);
}

.ticker-track-active {
  display: inline-flex;
  gap: 80px; /* space between repeats */
  white-space: nowrap;
  will-change: transform;
  animation: ticker-move 70s linear infinite;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 1px;
  color: #fff;
  align-items: center;

  /* control inner spacing between WARNING and ALERT */
  --inner-gap: 80px;
}

/* keep slides inline-level to preserve baseline centering */
.ticker-track-active .slide {
  display: inline-block;
}

/* create the big gap between WARNING and ALERT within a slide */
.ticker-track-active .item {
  vertical-align: middle;
}

.ticker-track-active .item + .item {
  margin-left: var(--inner-gap); /* adjust this value if needed */
}

/* optional: smaller gap on narrow screens */
@media (max-width: 768px) {
  .ticker-track-active {
    --inner-gap: 80px;
  }
}

.hero-ticker-idling {
  background: rgba(193, 200, 202, 0.8);
}

.ticker-track-idling {
  display: inline-flex;
  gap: 80px; /* space between repeats */
  white-space: nowrap;
  will-change: transform;
  animation: ticker-move 80s linear infinite;
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.8px;
  color: #31424c;
}

.ticker-track span {
  display: inline-block;
}

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

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
/* ------------------- END: TICKER RUNNING STRING --------------------- */


/* ------------------- START: HOME NAVIGATION --------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #efefef;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.header-left {
  display: flex;
  align-items: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  margin-left: 120px;
}

.site-nav ul li {
  margin-left: 20px;
}

.site-nav ul li:first-child {
  margin-left: 0;
}

.site-nav ul li a {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 8px 20px;
  color: #444c52;
  font-weight: 500;
  font-size: 14px;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  border: 1px solid #f0f0f0;
}

.site-nav .site-nav-auth {
  display: none;
}

.header-right ul {
  display: flex;
  align-items: center;
}

.header-right ul li {
  margin-left: 15px;
}

.header-right ul li a {
  display: inline-block;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 3px;
  padding: 8px 20px;
  color: #444c52;
  font-weight: 600;
  font-size: 14px;
}

.header-right ul li a.join-btn {
  border: 1px solid #4383f7;
  color: #4383f7;
  width: 144px;
  border-radius: 999px;
}

.mobClick {
  margin-left: 10px;
  display: none;
  width: 24px;
  height: 16px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  left: 15px;
  top: 18px;
  z-index: 999;
}

.mobClick span {
  border-radius: 0 !important;
  margin-left: 0 !important;
  position: absolute;
  opacity: 1;
  left: 0;
  width: 24px;
  height: 3px;
  background: #786e81 !important;
  display: block;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.mobClick span:nth-child(2) {
  top: 7px;
}

.mobClick span:nth-child(3) {
  top: 14px;
}

.mobClick.open span:nth-child(1) {
  top: 7px;
  transform: rotate(135deg);
}

.mobClick.open span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.mobClick.open span:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}

.mobClick.open {
  position: fixed;
  left: inherit;
  right: 30px;
  top: 30px;
  z-index: 30;
}
/* ------------------- END: HOME NAVIGATION --------------------- */


/* ------------------- START: COOKIE MODAL --------------------- */
.cookie-modal-in {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-modal-in .button {
  font-size: 13px;
  padding-left: 20px;
  padding-right: 20px;
}

.cookie-modal-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  width: 180px;
}

.cookie-modal-left {
  width: calc(100% - 180px);
  padding: 0 76px 0 0;
}

.cookie-modal-left p {
  font-size: 13px;
  padding-top: 10px;
}

#cookieModal {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  padding: 40px 56px;
  background-color: #3f4457;
  width: 820px;
  color: #fff;
  z-index: 99;
}
/* ------------------- END: COOKIE MODAL --------------------- */


/* ------------------- START: FOOTER --------------------- */
.site-footer {
  background: #f4f4f4;
  padding: 120px 0;
  padding-bottom: 0;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-left {
  width: 420px;
}

.footer-left p {
  padding-top: 30px;
  font-size: 13px;
  font-weight: 500;
}

.footer-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 120px;
}

.footer-link h6 {
  font-weight: 700;
  color: #4d565d;
}

.footer-link ul {
  padding-top: 15px;
}

.footer-link ul li {
  margin-top: 5px;
}

.footer-link ul li a {
  color: #4d565d;
  font-size: 13px;
  font-weight: 500;
}

.footer-link ul li a:hover {
  color: #f09b36;
}

.footer-copy {
  border-top: 1px solid #7c7583;
  margin-top: 70px;
  padding-top: 30px;
  text-align: center;
  padding-bottom: 83px;
}

.footer-copy p {
  font-size: 14px;
  font-weight: 500;
}

.linlGroup {
  display: flex;
  gap: 40px;
}

ul.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.social li a {
  font-size: 30px;
  color: #4d565d;
}

ul.social li a:hover {
  color: #4d565d;
  opacity: 0.8;
}
/* ------------------- END: FOOTER --------------------- */


/* ------------------- START: MEDIA --------------------- */
@media (max-width: 1599px) {
  .container {
    max-width: 1140px !important;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 15px;
  }

  .container {
    max-width: 950px !important;
  }

  .site-nav ul {
    margin-left: 20px;
  }

  .service-top-left {
    padding-right: 50px;
  }

  h2 {
    font-size: 26px;
  }

  .footer-right {
    gap: 60px;
  }

  .footer-left {
    width: 350px;
  }

  .footer-link ul li a {
    font-size: 14px;
  }

  .footer-link ul.social li a {
    font-size: 30px;
  }
}

@media (max-width: 1023px) {
  .container {
    max-width: 920px !important;
  }
  .profile {
    max-width: 920px !important;
    padding-right: 50px;
    padding-left: 50px;
  }

  .site-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: -100%;
    top: 0;
    background: #fff;
    z-index: 20;
    transition: all 0.5s ease;
  }

  .site-nav.act {
    left: 0;
  }

  .site-nav ul {
    align-items: center;
    flex-direction: column;
    height: auto;
    margin: 0;
    flex: 0 0 auto;
  }

  .site-nav ul li {
    margin: 15px 0;
  }

  .site-nav ul li a {
    display: block;
    font-size: 20px;
  }

  .footer-main {
    flex-wrap: wrap;
  }

  .footer-left {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-right {
    width: 100%;
    padding-top: 50px;
  }

  .site-footer {
    padding-top: 50px;
  }

  .mobClick {
    display: block;
  }

  .logo {
    display: flex;
    align-items: center;
  }

  #cookieModal {
    width: calc(100% - 30px);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    left: -100%;
    top: 0;
    background: #fff;
    z-index: 20;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    gap: 24px;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: auto;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    gap: 24px;
  }

  .site-nav.act {
    left: 0;
  }

  .site-nav-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-nav-main li {
    margin: 0;
  }

  .site-nav-main li a {
    display: block;
    font-size: 20px;
  }

  .site-nav .site-nav-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .site-nav-auth li {
    margin: 0;
  }

  .site-nav-auth li a {
    display: block;
    width: 200px;
    text-align: center;
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 5px;
  }

  .site-nav-auth li a.join-btn {
    border: 1px solid #4383f7;
    color: #4383f7;
  }

.site-nav {
  height: 100dvh;
  max-height: 100dvh;
  box-sizing: border-box;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

}
.site-nav::after {
  content: "";
  flex: 0 0 calc(90px + env(safe-area-inset-bottom));
}

/* Keep spacing unchanged */
.site-nav {
  gap: 20px;
}

.site-nav ul {
  gap: 20px;
}

.site-nav .site-nav-main > li,
.site-nav .site-nav-auth > li {
  margin: 0 !important;
}

.site-nav .site-nav-auth {
  margin-top: 0;
}

}

@media (max-width: 767px) {
  .container {
    max-width: 920px !important;
  }
  .footer-right {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-copy {
    margin-top: 30px;
  }

  .footer-link ul.social {
    justify-content: center;
  }

  .footer-link ul li a {
    font-size: 13px;
  }

  .footer-copy {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  #cookieModal {
    padding: 15px;
    width: calc(100% - 10px);
    bottom: 5px;
  }

  .cookie-modal-in {
    flex-wrap: wrap;
  }

  .cookie-modal-left {
    width: 100%;
    padding: 0 0 15px 0;
  }

  .cookie-modal-in .button {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .cookie-modal-right {
    width: auto;
  }
}

@media (max-width: 530px) {
  .linlGroup {
    gap: 50px;
  }

  .footer-link:last-child {
    width: 100%;
    border-top: 1px solid #7c7583;
    padding-top: 30px;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .container {
    max-width: 920px !important;
  }

  .header-right {
    display: none;
  }

  .header-main {
    justify-content: space-between;
  }

  .header-left {
    flex: 1;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .mobClick {
    display: block;
    margin-left: auto;
  }
}

@media (max-width: 400px) {
  .linlGroup {
    gap: 40px;
  }
  .container {
    max-width: 920px !important;
  }
}
/* ------------------- END: MEDIA --------------------- */


/* -------------------START: HOME HAIL MAPS SECTION --------------------- */
.services {
  padding: 120px 0;
  background: #f4f4f4;
}

.service-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.service-top-right {
  width: 350px;
}

.service-top-left {
  width: calc(100% - 350px);
  padding-right: 64px;
}

.subtitle {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  font-weight: 500;
  color: #786e81;
  padding: 0 0 0 0;
  font-weight: 700;
  font-size: 18px;
}

.subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f5911e;
}

.list li:first-child {
  margin-top: 0;
}

.list li {
  position: relative;
  padding: 0 0 0 0px;
  margin-top: 6px;
  font-weight: 500;
  display: inline-block;
}

.list-icon {
  top: 1px;
  color: #a3bfd9;
  line-height: 20px;
}

.list-icon i {
  font-size: 15px;
}

.green {
    color: #23a606;
}
.yellow {
    color: #f2c158;
}
.gray {
  color: #9e9e9e;
}


/* Home page hail status icon colors */
.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  color: #786e81;
}

.status-list li {
  display: flex;             /* align icon + text nicely */
  align-items: center;
  display: inline-block;
  gap: 8px;
  margin: 6px 0 0 10px;
  line-height: 1.2;
  font-weight: 500;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 9px;             /* fixed size, no shrink */
  margin-right: 10px;
}

.dot.green  { background: #23a606; }
.dot.yellow { background: #f2c158; }
.dot.gray   { background: #9e9e9e; }
/* Home page hail status icon colors */


.bi::before,
[class*=" bi-"]::before,
[class^=bi-]::before {
  font-weight: 700 !important;
}

.service-single {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-top: 25px;
}

.service-image {
  height: 284px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.service-status {
  position: absolute;
  left: 15px;
  top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-status span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.service-status span.green {
    background-color: #23a606;
}
.service-status span.yellow {
    background-color: #f2c158;
}
.service-status span.gray {
  background-color: #9e9e9e;
}

.service-tag {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-tag span {
  background: rgba(30,136,229,.8);
  font-size: 13px;
  color: #FFF;
  padding: 5px 16px;
  cursor: pointer;
  border-radius: 2px;
}

.service-tag span:hover {
  opacity: 0.8;
}

.service-tag span.teal {
  background: rgba(0,174,239,.8);
}

.service-tag span.orange {
  background: rgba(240,155,54,.8);
}

.listed-company-single .company-txt h5 {
  font-size: 22px;
}

.service-list {
  margin-top: 40px;
}

.service-cont {
  padding: 0 30px;
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: rgba(240, 240, 240, 0.84);
  height: 86px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.service-cont h5 {
  color: #8f8f8f;
  font-weight: 600;
}

.service-cont h6 {
  color: #666666;
  font-weight: 400;
}

.service-single:hover .service-cont {
  bottom: 0;
}

.button-more {
  text-align: center;
  margin-top: 80px;
}

.services.alt {
  background: #FFF;
}
/* -------------------END: HOME HAIL MAPS SECTION --------------------- */


@media (max-width: 1023px) {
  .service-top-left {
    width: 100%;
    padding: 0 0 30px 0;
  }

  .service-top-right {
    width: 100%;
  }
  .services {
    padding: 80px 0px;
    text-align: center;
    align-items:center;
    justify-content: center;
  }
  .service-list {
    margin-top: 15px;
  }

}

@media (max-width: 767px) {
  .service-single {
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  .service-top-right { font-size:14px; }
  .dot {margin-right: 3px;}
}

@media (max-width: 400px) {
  .service-top-right { font-size:13px; }
  .dot {margin-right: 3px;}
}