.elementor-52 .elementor-element.elementor-element-7107d3d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right: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-f26f1c4 */.ess-hdr *,
.ess-hdr *::before,
.ess-hdr *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ess-hdr a,
.ess-hdr button {
  -webkit-tap-highlight-color: transparent;
}

/* ── Header shell ───────────────────────────────────────── */
.ess-hdr {
  background: #ffffff;
  width: 100%;
  border-bottom: 1px solid #f0eeea;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 9000;
}
.ess-hdr.ess-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

/* ── 1240px inner row ───────────────────────────────────── */
.ess-hdr-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ════════════════════════════════════════════════════════
   LOGO
   ════════════════════════════════════════════════════════ */
.ess-hdr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
  gap: 10px;
}
/* Image logo (shown when src is set) */
.ess-hdr-logo img {
  height: 46px;
  width: auto;
  display: block;
}
/* Text fallback logo */
.ess-hdr-logo-txt {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
.ess-hdr-logo-txt em {
  font-style: normal;
  color: #C1282E;
}

/* ════════════════════════════════════════════════════════
   DESKTOP NAVIGATION
   ════════════════════════════════════════════════════════ */
.ess-hdr-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ess-hdr-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ess-hdr-nav-list > li {
  position: relative;
}

/* Nav link base */
.ess-hdr-nav-list > li > a,
.ess-hdr-nav-list > li > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #2a2a2a;
  text-decoration: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px 13px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1.2;
}
.ess-hdr-nav-list > li > a:hover,
.ess-hdr-nav-list > li > button:hover {
  color: #C1282E;
  background: rgba(193,40,46,0.06);
}

/* Chevron icon */
.ess-hdr-chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.ess-hdr-drop-li:hover .ess-hdr-chev {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
.ess-hdr-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 40px rgba(0,0,0,0.11);
  border: 1px solid #f0eeea;
  padding: 6px;
  min-width: 248px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 9999;
}
/* Pointer arrow */
.ess-hdr-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-top: 1px solid #f0eeea;
  border-left: 1px solid #f0eeea;
}
.ess-hdr-drop-li:hover .ess-hdr-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.ess-hdr-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.ess-hdr-dropdown a:hover {
  background: rgba(193,40,46,0.05);
  color: #C1282E;
  padding-left: 18px;
}
.ess-drop-dot {
  width: 5px;
  height: 5px;
  background: #c9a656;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Divider inside dropdown */
.ess-drop-divider {
  height: 1px;
  background: #f4f2ee;
  margin: 4px 0;
}

/* ════════════════════════════════════════════════════════
   RIGHT ACTIONS (desktop)
   ════════════════════════════════════════════════════════ */
.ess-hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Phone link */
.ess-hdr-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111111;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s;
}
.ess-hdr-tel:hover { color: #C1282E; }

.ess-hdr-tel-ic {
  width: 32px;
  height: 32px;
  background: rgba(193,40,46,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ess-hdr-tel:hover .ess-hdr-tel-ic {
  background: rgba(193,40,46,0.14);
}

/* CTA button */
.ess-hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #C1282E;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(193,40,46,0.28);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.ess-hdr-cta:hover {
  background: #a31f24;
  transform: translateY(-1px);
  box-shadow: 0 7px 22px rgba(193,40,46,0.38);
}

/* ════════════════════════════════════════════════════════
   HAMBURGER BUTTON (mobile/tablet)
   ════════════════════════════════════════════════════════ */
.ess-hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1.5px solid #e8e8e8;
  border-radius: 9px;
  cursor: pointer;
  padding: 9px;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}
.ess-hdr-burger:hover {
  border-color: #C1282E;
  background: rgba(193,40,46,0.04);
}
.ess-hdr-burger span {
  display: block;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.25s ease;
}
.ess-hdr-burger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.ess-hdr-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.ess-hdr-burger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════
   MOBILE FULL-SCREEN MENU
   ════════════════════════════════════════════════════════ */
.ess-mob-menu {
  position: fixed;
  inset: 0;                        /* top/right/bottom/left: 0 */
  width: 100%;
  height: 100%;
  background: #C1282E;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.ess-mob-menu.is-open {
  transform: translateX(0);
}

/* Mobile top bar */
.ess-mob-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.ess-mob-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none !important;
  letter-spacing: -0.02em;
}
.ess-mob-logo em {
  font-style: normal;
  color: #c9a656;
}
.ess-mob-close {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ess-mob-close:hover { background: rgba(255,255,255,0.28); }

/* Mobile nav list */
.ess-mob-nav {
  flex: 1;
  padding: 6px 0 12px;
}

/* Each nav item row */
.ess-mob-item {
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

/* Plain link */
.ess-mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none !important;
  transition: background 0.15s;
}
.ess-mob-link:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}

/* Accordion trigger button */
.ess-mob-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.ess-mob-acc-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* Chevron in accordion */
.ess-mob-chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.ess-mob-item.is-acc-open .ess-mob-chev {
  transform: rotate(180deg);
}

/* Accordion sub-list */
.ess-mob-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  background: rgba(0,0,0,0.14);
}
.ess-mob-item.is-acc-open .ess-mob-submenu {
  max-height: 600px;
}
.ess-mob-submenu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px 13px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s, background 0.15s;
}
.ess-mob-submenu a:last-child { border-bottom: none; }
.ess-mob-submenu a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}
.ess-mob-sub-dot {
  width: 5px;
  height: 5px;
  background: #c9a656;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile bottom action buttons */
.ess-mob-footer {
  padding: 18px 22px 40px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.ess-mob-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #C1282E !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}
.ess-mob-call-btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.ess-mob-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
}
.ess-mob-wa-btn:hover {
  background: #1fba59;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════ */

/* Hide phone at medium width */
@media (max-width: 1100px) {
  .ess-hdr-tel { display: none; }
}

/* Switch to burger at tablet */
@media (max-width: 980px) {
  .ess-hdr-nav { display: none; }
  .ess-hdr-burger { display: flex; }
}

/* Hide CTA on small mobile — rely on mobile menu */
@media (max-width: 520px) {
  .ess-hdr-actions { display: none; }
  .ess-hdr-row { gap: 0; }
}/* End custom CSS */