.elementor-1048 .elementor-element.elementor-element-5fe959b2{--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;}.elementor-1048 .elementor-element.elementor-element-5fe959b2:not(.elementor-motion-effects-element-type-background), .elementor-1048 .elementor-element.elementor-element-5fe959b2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}.elementor-1048 .elementor-element.elementor-element-f3b485c{--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;}.elementor-1048 .elementor-element.elementor-element-c80ce2f{--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;}.elementor-1048 .elementor-element.elementor-element-c80ce2f:not(.elementor-motion-effects-element-type-background), .elementor-1048 .elementor-element.elementor-element-c80ce2f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0E1527;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-654405fc *//* ============================================
   EEZ Header - WordPress CSS
   Add to: Appearance > Customize > Additional CSS
   ============================================ */

/* ---------- Header Wrapper ---------- */
.eez-header {
  background-color: #0E1527;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* ---------- Inner Container ---------- */
.eez-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ---------- Logo ---------- */
.eez-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 10px;
  text-decoration: none;
}

.eez-header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Desktop Nav ---------- */
.eez-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.eez-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.eez-nav-list li {
  margin: 0;
  padding: 0;
}

/* ---------- Nav Links ---------- */
.eez-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.eez-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #e87c2e;
  border-radius: 2px;
  transition: width 0.25s ease;
}

.eez-nav-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.eez-nav-link:hover::after {
  width: 100%;
}

/* Active state */
.eez-nav-link.eez-nav-active {
  color: #ffffff;
  font-weight: 700;
}

.eez-nav-link.eez-nav-active::after {
  width: 100%;
}

/* ---------- CTA Button ---------- */
.eez-header-cta {
  display: inline-block;
  background: #e87c2e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.eez-header-cta:hover {
  background: #d46b1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 124, 46, 0.35);
  text-decoration: none;
  color: #ffffff;
}

/* ---------- Hamburger Button (Mobile) ---------- */
.eez-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.eez-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated X when open */
.eez-ham-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.eez-ham-active span:nth-child(2) {
  opacity: 0;
}
.eez-ham-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Menu Dropdown ---------- */
.eez-mobile-menu {
  display: none;
  background: #0E1527;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.eez-mobile-menu.eez-menu-open {
  display: block;
  max-height: 400px;
  padding: 16px 0 24px;
}

.eez-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eez-mobile-nav-list li {
  margin: 0;
  padding: 0;
}

.eez-mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}

.eez-mobile-nav-link:hover,
.eez-mobile-nav-link.eez-nav-active {
  color: #ffffff;
  text-decoration: none;
}

.eez-mobile-cta {
  display: inline-block;
  margin-top: 16px;
  background: #e87c2e;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  transition: background 0.25s ease;
}

.eez-mobile-cta:hover {
  background: #d46b1e;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .eez-nav {
    display: none;
  }

  .eez-header-cta {
    display: none;
  }

  .eez-hamburger {
    display: flex;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-08f6a8b *//* ============================================
   EEZ Contact Section - WordPress CSS
   Add to: Appearance > Customize > Additional CSS
   ============================================ */

/* ---------- Section ---------- */
.eez-contact-section {
  background-color: #0E1527;
  padding: 90px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
}

/* ---------- Container: Two columns ---------- */
.eez-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .eez-contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ==============================
   LEFT COLUMN
   ============================== */

.eez-contact-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e87c2e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eez-contact-title {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin: 0 0 24px 0;
  letter-spacing: -2px;
}

.eez-contact-orange {
  color: #e87c2e;
}

.eez-contact-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0 0 48px 0;
  max-width: 420px;
}

/* ---------- Info Items ---------- */
.eez-contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eez-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #161d2d;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.3s ease;
}

.eez-info-item:hover {
  border-color: rgba(232, 124, 46, 0.3);
}

.eez-info-icon {
  width: 48px;
  height: 48px;
  background: #0E1527;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.eez-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.eez-info-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.eez-info-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.eez-info-text a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.eez-info-text a:hover {
  color: #e87c2e;
}

/* ==============================
   RIGHT COLUMN — Form
   ============================== */

.eez-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- Two-column row ---------- */
.eez-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  .eez-form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Form Group ---------- */
.eez-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eez-form-group--full {
  width: 100%;
}

/* ---------- Label ---------- */
.eez-form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ---------- Input & Textarea ---------- */
.eez-form-input,
.eez-form-textarea {
  background: #161d2d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.eez-form-input::placeholder,
.eez-form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.eez-form-input:focus,
.eez-form-textarea:focus {
  border-color: rgba(232, 124, 46, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 124, 46, 0.1);
}

.eez-form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ---------- Submit Button ---------- */
.eez-form-btn {
  display: inline-block;
  background: linear-gradient(120deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  font-family: 'Segoe UI', sans-serif;
}

.eez-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
  opacity: 0.95;
}

@media (max-width: 560px) {
  .eez-form-btn {
    width: 100%;
    text-align: center;
  }
}

/* Location link */
.eez-info-text a {
  color: rgba(255,255,255,0.5);
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.eez-info-text a:hover {
  color: #e87c2e !important;
  text-decoration: none !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5938fbbd */.eez-footer {
  background-color: #0E1527;
  padding: 36px 20px;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eez-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .eez-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

/* Logo */
.eez-footer-logo-text {
  font-size: 28px;
  font-weight: 900;
  color: #e87c2e;
  letter-spacing: -1px;
  font-style: italic;
}

/* Copyright */
.eez-footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Nav */
.eez-footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.eez-footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.eez-footer-nav a:hover {
  color: #ffffff;
  text-decoration: none;
}/* End custom CSS */