.elementor-12 .elementor-element.elementor-element-e71e9ff{--display:flex;}.elementor-12 .elementor-element.elementor-element-f9abd62{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-8e21bad *//* ========== PAGE LOADER ========== */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #022653;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 30px;
  animation: logoPulse 1.8s ease-in-out infinite;
}

.loader-logo img {
  height: 80px;
  width: auto;
  /* No filter — logo keeps its original colors */
}

/* Spinner */
.loader-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: #e5940e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
  inset: 8px;
  border-top-color: #ffffff;
  animation-duration: 1.4s;
  animation-direction: reverse;
}

.loader-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-06eac9d *//* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: #f5f5f5;
}

body.menu-open {
  overflow: hidden;
}

/* ========== HEADER - FULL WIDTH EDGE TO EDGE ========== */
.site-header {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  left: 0;
  right: 0;
}

/* ========== TOP BAR ========== */
.top-bar {
  width: 100%;
  background: #ffffff;
  padding: 12px clamp(16px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #4a5c78;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: #e9851d;
  font-size: 15px;
}

.contact-item a {
  color: #4a5c78;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #e9851d;
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #03244f;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ========== NAVIGATION ========== */
.nav-bar {
  width: 100%;
  background: #03244f;
  padding: 0 clamp(16px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #e99b1f;
}

.nav-links li a .fa-chevron-down {
  font-size: 10px;
}

/* GET A QUOTE button */
.btn-quote {
  background: #e99b1f;
  color: #03244f;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-quote:hover {
  background: #d48a12;
  transform: translateY(-1px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .contact-info {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: #03244f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-bar.open {
    max-height: 600px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-links li a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .btn-quote {
    margin: 16px 20px 24px;
    text-align: center;
    display: block;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 42px;
  }

  .top-bar {
    padding: 10px 16px;
  }
}/* End custom CSS */