/***
====================================================================
            LADY IN WHITE — TOP STRIP
====================================================================
***/

.liw-top-strip {
  width: 100%;
  background: linear-gradient(90deg, #10329a 0%, #1239ac 50%, #10329a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.liw-top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;

  max-width: 1280px;
  min-height: 44px;

  margin: 0 auto;
  padding: 0 22px;
}

/* =====================================================
   ITEM
===================================================== */

.liw-top-strip__item {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.96);

  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;
}

a.liw-top-strip__item {
  transition: color 0.2s ease;
}

a.liw-top-strip__item:hover {
  color: #ffb400;
}

/* =====================================================
   ICON
===================================================== */

.liw-top-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  flex-shrink: 0;

  color: #ffb400;
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;

  font-size: 11px;
  line-height: 1;
}

/* =====================================================
   DIVIDER
===================================================== */

.liw-top-strip__divider {
  width: 1px;
  height: 20px;

  margin: 0 18px;

  background: rgba(255, 255, 255, 0.2);
}

/* =====================================================
   SERVICE
===================================================== */

.liw-top-strip__item--service {
  color: #ffffff;
  font-weight: 700;
}

/* =====================================================
   PHONE
===================================================== */

.liw-top-strip__item--phone {
  color: #ffffff;
  font-weight: 700;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .liw-top-strip__inner {
    padding: 0 14px;
  }

  .liw-top-strip__item {
    font-size: 13px;
  }

  .liw-top-strip__divider {
    margin: 0 12px;
  }

  .liw-top-strip__icon {
    width: 24px;
    height: 24px;

    font-size: 10px;
  }
}

/* =====================================================
   SMALL TABLET
===================================================== */

@media (max-width: 860px) {
  .liw-top-strip__item--hours,
  .liw-top-strip__item--hours + .liw-top-strip__divider {
    display: none;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {
  .liw-top-strip__inner {
    justify-content: space-between;

    min-height: 38px;

    padding: 0 12px;
  }

  .liw-top-strip__item {
    gap: 6px;

    font-size: 12px;
  }

  .liw-top-strip__item--email,
  .liw-top-strip__item--hours,
  .liw-top-strip__item--email + .liw-top-strip__divider,
  .liw-top-strip__item--hours + .liw-top-strip__divider,
  .liw-top-strip__divider {
    display: none;
  }

  .liw-top-strip__item--service {
    max-width: 64%;

    white-space: normal;

    line-height: 1.2;
  }

  .liw-top-strip__item--phone {
    flex-shrink: 0;

    font-size: 12px;
  }

  .liw-top-strip__icon {
    width: 22px;
    height: 22px;

    font-size: 9px;
  }
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 430px) {
  .liw-top-strip__inner {
    min-height: 36px;

    padding: 0 9px;
  }

  .liw-top-strip__item--service {
    max-width: 61%;

    font-size: 11px;
  }

  .liw-top-strip__item--phone {
    font-size: 11px;
  }

  .liw-top-strip__icon {
    width: 20px;
    height: 20px;

    font-size: 8px;
  }
}

/* =====================================================
   MOBILE FAST QUOTE HERE HERE
===================================================== */

.liw-mobile-fast-quote {
  display: none;
}

@media (max-width: 991px) {
  .main-menu-two__main-menu-box {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .liw-mobile-fast-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 36px;
    padding: 0 15px;

    background: #1239ac;
    color: #ffffff;

    border: 1px solid #1239ac;
    border-radius: 5px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;

    white-space: nowrap;
  }

  .liw-mobile-fast-quote:hover,
  .liw-mobile-fast-quote:focus {
    background: #ffb400;
    border-color: #ffb400;
    color: #1239ac;
  }

  .liw-menu-toggle {
    flex-shrink: 0;
    margin: 0;
  }
}

@media (max-width: 420px) {
  .main-menu-two__main-menu-box {
    gap: 9px;
  }

  .liw-mobile-fast-quote {
    height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }
}

/* =====================================================
   MOBILE — CLEAN CENTERED TOP STRIP
===================================================== */

@media (max-width: 700px) {
  .liw-top-strip {
    background: linear-gradient(135deg, #1239ac 0%, #1749c6 55%, #1239ac 100%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow: 0 3px 12px rgba(18, 57, 172, 0.12);
  }

  .liw-top-strip__inner {
    min-height: 82px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 10px 16px;

    text-align: center;
  }

  /* Hide email + hours on mobile */

  .liw-top-strip__item--email,
  .liw-top-strip__item--hours,
  .liw-top-strip__divider {
    display: none;
  }

  /* =====================================================
     SOUTH JERSEY LINE
  ===================================================== */

  .liw-top-strip__item--service {
    width: 100%;
    max-width: none;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;

    white-space: nowrap;
  }

  /* =====================================================
     PHONE LINE
  ===================================================== */

  .liw-top-strip__item--phone {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: 0.01em;
  }

  .liw-top-strip__item--phone:hover,
  .liw-top-strip__item--phone:focus {
    color: #ffb400;
  }

  /* =====================================================
     ICONS
  ===================================================== */

  .liw-top-strip__icon {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255, 180, 0, 0.28);
    border-radius: 50%;

    background: rgba(255, 180, 0, 0.1);
    color: #ffb400;

    font-size: 11px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {
  .liw-top-strip__inner {
    min-height: 78px;

    gap: 6px;

    padding: 9px 10px;
  }

  .liw-top-strip__item--service {
    font-size: 12.5px;
  }

  .liw-top-strip__item--phone {
    font-size: 14px;
  }

  .liw-top-strip__icon {
    width: 23px;
    height: 23px;

    font-size: 10px;
  }
}

/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {
  .liw-top-strip__item--service {
    font-size: 11.5px;
  }

  .liw-top-strip__item--phone {
    font-size: 13px;
  }
}
