/* ============================================================ HEADER ============================================================ */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #000000;
  background-color: #fff;
}

/* ==========================================================================
   Global Utilities
   ========================================================================== */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px !important;
    width: 100%;
    box-sizing: border-box;
}

/* ───────────────────────────────────────────── 1. Info bar ───────────────────────────────────────────── */


.hdr-infobar {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
.hdr-infobar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 80px;
}
.hdr-infobar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hdr-infobar__logo img {
  display: block;
  height: 60px;
  width: auto;
}

/* Center contacts */
.hdr-infobar__contacts {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hdr-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  color: #13a0b2;
  font-weight: 600;
  animation: callGlow 1.6s ease-in-out infinite;
}
.hdr-contact-icon {
  width: 20px;
  height: 20px;
  color: #13a0b2;
  flex-shrink: 0;
}
.hdr-contact-item a {
  color: #13a0b2;
  font-weight: 600;
  transition: color 0.2s ease;
  font-size: 30px;
}
.hdr-contact-item a:hover {
  color: #0d7a87;
}

/* GET 20% OFF CTA Button */
.hdr-infobar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #007fa0 0%, #00a5c1 60%, #12c2e9 100%);
  box-shadow: 0 6px 18px rgba(0, 149, 174, 0.35);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 30px;
  /* box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35); */
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.hdr-infobar__cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.hdr-infobar__cta:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45); */
  filter: brightness(1.05);
}

/* ───────────────────────────────────────────── 2. Nav bar ───────────────────────────────────────────── */
.hdr-nav {
  background-color: #13a0b2;
  position: relative;
  z-index: 1000;
  width: 100%;
}
.hdr-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  animation: hdrSlideDown 0.25s ease;
}
@keyframes hdrSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.hdr-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: visible;
  padding: 0px 10px;
}

/* ── Hamburger — hidden on desktop ── */
.hdr-nav__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-height: 52px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.hdr-nav__hamburger:hover {
  background: rgba(0, 0, 0, 0.1);
}
.hdr-nav__hamburger svg {
  fill: #ffffff;
}

/* ── Sub-menu toggle icon (≡) — shown only on mobile ── */
.hdr-sub-toggle {
  display: none;
  margin-left: 8px;
  flex-shrink: 0;
  line-height: 0;
}
.hdr-sub-toggle svg {
  fill: #ffffff;
  display: block;
}

/* ── Nav list ── */
.hdr-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: visible;
}
.hdr-nav__menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.hdr-nav__menu > li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.hdr-nav__menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  white-space: nowrap;
  min-height: 52px;
  width: 100%;
  transition: background 0.2s ease;
  cursor: pointer;
}
.hdr-nav__menu > li > a:hover,
.hdr-nav__menu > li.active > a {
  background-color: rgba(0, 0, 0, 0.12);
}
.hdr-nav__menu > li:hover,
.hdr-nav__menu > li:focus-within,
.hdr-nav__menu > li.sub-open {
  z-index: 9999;
}

/* ── Sub-menus ── */
.hdr-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #13a0b2;
  display: none;
  z-index: 10000;
}
/* Desktop: hover reveals sub */
@media (min-width: 992px) {
  .hdr-nav__menu > li.has-sub:hover > .hdr-sub,
  .hdr-nav__menu > li.has-sub.sub-open > .hdr-sub {
    display: block;
  }
}
.hdr-sub li a {
  display: block;
  /* width: 100%; */
  padding: 0.5rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.hdr-sub li:last-child a {
  border-bottom: none;
}
.hdr-sub li a:hover {
  color: #1e2125;
  background-color: #e9ecef;
  padding-left: 26px;
}

/* ── Social icons (right side of nav) ── */
.hdr-nav__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.hdr-nav__socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 3px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.hdr-nav__socials li a svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  display: block;
}
.hdr-nav__socials li a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* ───────────────────────────────────────────── 3. Header responsive ───────────────────────────────────────────── */

/* ── Tablet & below (≤ 991px) ── */
@media (max-width: 991px) {
  /* Info bar: stack logo/contacts, hide CTA on very small */
  .hdr-infobar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    min-height: auto;
  }
  .hdr-infobar__contacts {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
  .hdr-contact-item {
    font-size: 15px;
  }
  .hdr-infobar__cta {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Nav inner: hamburger left, socials right, menu below full-width */
  .hdr-nav__inner {
    flex-wrap: wrap;
    max-width: 100%;
  }
  /* Show hamburger */
  .hdr-nav__hamburger {
    display: flex;
  }
  /* Hide socials in nav on mobile (can show in footer/menu instead) */
  .hdr-nav__socials {
    display: none;
  }

  /* Menu hidden until toggled */
  .hdr-nav__menu {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 10;
  }
  .hdr-nav__menu.menu-open {
    display: flex;
  }
  /* Each item: full-width teal block */
  .hdr-nav__menu > li {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    display: block;
  }
  .hdr-nav__menu > li:first-child {
    border-left: none;
  }
  .hdr-nav__menu > li > a {
    display: flex; /* keep flex for the link row itself */
    align-items: center;
    padding: 0px 16px;
    min-height: 50px;
    font-size: 14px;
    justify-content: space-between;
    width: 100%;
  }
  /* Show the ≡ toggle icon on dropdown items */
  .has-sub > a .hdr-sub-toggle {
    display: flex;
    align-items: center;
    margin-right: 65px;
  }
  /* Sub-menu open by JS .sub-open */
  .hdr-nav__menu > li.has-sub.sub-open > .hdr-sub {
    display: block;
  }
  /* Mobile sub-menu: static white block, indented */
  .hdr-sub {
    position: static; /* stays in document flow, below parent */
    border-top: none;
    border-left: none;
    box-shadow: none;
    background: #f0fafe;
    width: 100%;
    min-width: 100%;
    display: none; /* hidden by default */
  }
  .hdr-sub li a {
    padding: 12px 16px 12px 28px;
    font-size: 13px;
    color: #1a1a1a;
    background: transparent;
    border-bottom: 1px solid #e5e5e5; /* ← add subtle separator */
    white-space: normal;
  }
  .hdr-sub li:last-child a {
    border-bottom: none;
  }

  .hdr-sub li a::before {
    content: "›";
    margin-right: 8px;
    font-size: 16px;
    color: #13a0b2;
    font-weight: 700;
  }

  .hdr-sub li a:hover {
    background: #dbf6ff;
    color: #13a0b2;
    padding-left: 34px;
  }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  .hdr-infobar__logo img {
    height: 50px;
  }
  .hdr-infobar__contacts {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .hdr-contact-item {
    font-size: 14px;
  }
  .hdr-infobar__cta {
    display: none; /* Hide CTA on very small screens, or keep if desired */
  }
}

a {
  text-decoration: none !important;
}

.hdr-contact-item {
  position: relative;
  color: #0095ae;
  font-weight: 700;
}
.hdr-contact-item {
  animation: callGlow 1.6s ease-in-out infinite;
}
.hdr-contact-item .hdr-contact-icon {
  animation: callRing 1.2s ease-in-out infinite;
  display: inline-block;
}
@keyframes callGlow {
  0% {
    text-shadow: 0 0 0 rgba(0, 149, 174, 0);
  }
  50% {
    text-shadow:
      0 0 10px rgba(0, 149, 174, 0.85),
      0 0 18px rgba(0, 149, 174, 0.55);
  }
  100% {
    text-shadow: 0 0 0 rgba(0, 149, 174, 0);
  }
}
@keyframes callRing {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-12deg);
  }
  60% {
    transform: rotate(9deg);
  }
  80% {
    transform: rotate(-6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ============================================================ FOOTER STYLES ============================================================ */

.site-footer-wrapper {
  background-color: #333333;
}

.site-footer {
  background-color: #333333;
  color: #ffffff;
  padding-top: 60px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* ── Column headings ── */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-subheading {
  font-size: 14px;
  font-weight: 700;
  margin: 25px 0 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* ── About column ── */
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cccccc;
  padding-right: 10px;
}

.footer-phone-link {
  color: #fdc600;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-phone-link:hover {
  opacity: 0.8;
}

/* ── Social icons (yellow square buttons) ── */
.footer-social-icons {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #fdc600;
  border-radius: 4px;
  color: #333333;
  transition: all 0.2s ease;
}

.footer-social-icons a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-icons a:hover {
  background-color: #e0951a;
  transform: translateY(-2px);
}

/* ── Links column ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fdc600;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

/* ── Facebook widget column ── */
.fb-widget-container {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fb-widget-preview {
  display: block;
  color: #1a1a1a;
  text-decoration: none;
}

.fb-widget-header {
  position: relative;
  height: 100px;
  background: linear-gradient(135deg, #1877f2 0%, #42b72a 100%);
}

.fb-widget-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fdc600 0%, #e0951a 50%, #13a0b2 100%);
  opacity: 0.9;
}

.fb-widget-avatar {
  position: absolute;
  bottom: -25px;
  left: 15px;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.fb-widget-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 2px;
}

.fb-widget-body {
  padding: 35px 15px 15px;
}

.fb-widget-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a1a1a;
}

.fb-widget-followers {
  font-size: 12px;
  color: #65676b;
  margin: 0 0 10px;
}

.fb-widget-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #65676b;
  margin: 0 0 10px;
}

.fb-widget-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #65676b;
  margin-bottom: 12px;
}

.fb-widget-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 0;
  background-color: #1877f2;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.fb-widget-btn svg {
  fill: currentColor;
}

.fb-widget-btn:hover {
  background-color: #166fe5;
}

/* ── Footer bottom bar ── */
.footer-bottom {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 18px 0;
  font-size: 13px;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-left {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #aaaaaa;
}

.copyright-left a {
  color: #fdc600;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.copyright-left a:hover {
  opacity: 0.8;
}

.copyright-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.copyright-right a {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.copyright-right a:hover {
  color: #fdc600;
}

.footer-bottom-cta {
  background: linear-gradient(90deg, #fdc600 0%, #e0951a 100%);
  color: #1a1a1a !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.footer-bottom-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
  color: #1a1a1a !important;
}

/* ── Scroll to top ── */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #13a0b2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

.scroll-to-top:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
}

/* ── Footer responsive ── */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-desc {
    padding-right: 0;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .fb-widget-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-bottom__inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .copyright-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 40px;
  }

  .footer-grid {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .copyright-left {
    font-size: 11px;
  }

  .copyright-right {
    gap: 12px;
  }

  .copyright-right a {
    font-size: 12px;
  }

  .footer-bottom-cta {
    padding: 8px 16px;
    font-size: 11px;
  }
  .has-sub > a .hdr-sub-toggle{
    margin-right: 30px;
  }
}

.page-heading h1 {
  position: relative;
  top: 60px;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 56px;
  text-transform: uppercase;
  font-weight: 800;
  float: left;
}
.page-heading .heading-link {
  position: relative;
  top: 130px;
  float: right;
}
.page-heading .heading-link a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.page-heading .heading-link i {
  color: #fdc600;
  padding: 0 3px;
  font-weight: bold;
}

@media (max-width: 1050px) {
  /* .hdr-infobar__cta {
    display: none;
  } */

  .hdr-contact-item a,
  .hdr-contact-item {
    font-size: 15px !important;
  }
}

@media (max-width: 1400px) {
  /* .hdr-nav__socials{
  display: none;
} */
}
