.elementor-17 .elementor-element.elementor-element-943181f{--display:flex;--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-63f504b */:root {
  --dp-dark: #0B1220;
  --dp-primary: #2563EB;
  --dp-accent: #38BDF8;
  --dp-light: #F8FAFC;
  --dp-text: #1E293B;
  --dp-muted: #64748B;
  --dp-white: #FFFFFF;
}

/* ================================
   HEADER RESET
================================ */

.dp-clean-header,
.dp-clean-header * {
  box-sizing: border-box;
}

.dp-clean-header a {
  text-decoration: none !important;
}

/* ================================
   HEADER WRAPPER
================================ */

.dp-clean-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  width: 100%;
  padding: 18px 0 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

body.admin-bar .dp-clean-header {
  top: 32px;
}

/* ================================
   FLOATING NAV CONTAINER
================================ */

.dp-clean-header-shell {
  width: min(1240px, calc(100% - 36px));
  min-height: 74px;
  margin: 0 auto;
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  position: relative;
  border-radius: 26px;
  pointer-events: auto;

  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.16), transparent 30%),
    radial-gradient(circle at 88% 100%, rgba(37, 99, 235, 0.20), transparent 36%),
    rgba(11, 18, 32, 0.72) !important;

  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ================================
   LOGO
================================ */

.dp-clean-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dp-clean-logo-box {
  width: 150px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);

  transition: 0.25s ease;
}

.dp-clean-logo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.dp-clean-logo:hover .dp-clean-logo-box {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.20),
    0 0 0 4px rgba(56, 189, 248, 0.08);
}

/* ================================
   NAVIGATION
================================ */

.dp-clean-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.dp-clean-nav > a,
.dp-clean-dropdown > summary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.84) !important;
  font-size: 0.91rem;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.24s ease;
}

.dp-clean-nav > a:hover,
.dp-clean-dropdown:hover > summary,
.dp-clean-dropdown[open] > summary {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.dp-clean-dropdown {
  position: relative;
}

.dp-clean-dropdown summary {
  list-style: none;
}

.dp-clean-dropdown summary::-webkit-details-marker {
  display: none;
}

.dp-clean-arrow {
  color: var(--dp-accent);
  font-size: 0.75rem;
  transform: translateY(1px);
  transition: 0.22s ease;
}

.dp-clean-dropdown[open] .dp-clean-arrow {
  transform: rotate(180deg) translateY(-1px);
}

/* ================================
   MEGA DROPDOWN
================================ */

.dp-clean-mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(980px, calc(100vw - 44px));
  transform: translateX(-50%) translateY(12px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 30px 95px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.24s ease;
}

.dp-clean-dropdown:hover .dp-clean-mega,
.dp-clean-dropdown[open] .dp-clean-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dp-clean-mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(11, 18, 32, 0.98);
  border-left: 1px solid rgba(148, 163, 184, 0.18);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.dp-clean-mega-intro {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 15%, rgba(56, 189, 248, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.dp-clean-mega-intro::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
}

.dp-clean-mega-intro span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #BAE6FD;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.dp-clean-mega-intro h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #FFFFFF;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.dp-clean-mega-intro p {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ================================
   COUNTY GRID
================================ */

.dp-clean-county-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-content: start;
}

.dp-clean-county-grid a {
  position: relative;
  min-height: 42px;
  display: flex !important;
  align-items: center;
  padding: 0 12px 0 34px;
  border-radius: 14px;
  color: rgba(226, 232, 240, 0.82) !important;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.065);
  font-size: 0.85rem;
  font-weight: 720;
  line-height: 1.2;
  transition: 0.22s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.dp-clean-county-grid a::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--dp-accent);
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.10);
}

.dp-clean-county-grid a:hover {
  color: #FFFFFF !important;
  background: rgba(37, 99, 235, 0.20);
  border-color: rgba(56, 189, 248, 0.30);
  transform: translateY(-2px);
}

/* Highlighted all areas item */

.dp-clean-county-grid a.dp-clean-all-areas {
  grid-column: 1 / -1 !important;
  min-height: 56px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  padding: 9px 48px 9px 42px;
  color: #FFFFFF !important;
  background:
    radial-gradient(circle at 12% 50%, rgba(56, 189, 248, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.44), rgba(56, 189, 248, 0.22));
  border-color: rgba(56, 189, 248, 0.40);
  box-shadow:
    0 14px 34px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.dp-clean-county-grid a.dp-clean-all-areas strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.1;
}

.dp-clean-county-grid a.dp-clean-all-areas small {
  display: block;
  color: rgba(226, 232, 240, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.dp-clean-county-grid a.dp-clean-all-areas::before {
  background: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.16);
}

.dp-clean-county-grid a.dp-clean-all-areas::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 900;
  transition: 0.22s ease;
}

.dp-clean-county-grid a.dp-clean-all-areas:hover {
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  border-color: rgba(255, 255, 255, 0.22);
}

.dp-clean-county-grid a.dp-clean-all-areas:hover::after {
  transform: translateY(-50%) translateX(3px);
}

/* ================================
   ACTIONS
================================ */

.dp-clean-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.dp-clean-phone,
.dp-clean-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  transition: 0.24s ease;
}

.dp-clean-phone {
  gap: 8px;
  padding: 0 16px;
  color: #E0F2FE !important;
  font-size: 0.92rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.dp-clean-phone span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(56, 189, 248, 0.13);
  color: var(--dp-accent);
}

.dp-clean-phone:hover {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.12);
}

.dp-clean-cta {
  padding: 0 22px;
  color: #FFFFFF !important;
  font-size: 0.95rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
}

.dp-clean-cta:hover {
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.35);
}

/* ================================
   BURGER
================================ */

.dp-clean-menu-toggle {
  display: none;
}

.dp-clean-burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.dp-clean-burger span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #FFFFFF;
  transition: 0.24s ease;
}

.dp-clean-menu-toggle:checked ~ .dp-clean-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dp-clean-menu-toggle:checked ~ .dp-clean-burger span:nth-child(2) {
  opacity: 0;
}

.dp-clean-menu-toggle:checked ~ .dp-clean-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   ELEMENTOR EMPTY SPACE FIX
================================ */

.elementor-widget-html:has(.dp-clean-header),
.elementor-widget-html:has(.dp-clean-header) .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1220px) {
  .dp-clean-phone {
    display: none;
  }

  .dp-clean-nav > a,
  .dp-clean-dropdown > summary {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.86rem;
  }

  .dp-clean-logo-box {
    width: 112px;
    height: 50px;
    padding: 7px 10px;
  }
}

@media (max-width: 1020px) {
  .dp-clean-header {
    padding: 12px 0 0;
  }

  .dp-clean-header-shell {
    min-height: 68px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 22px;
  }

  .dp-clean-burger {
    display: flex;
    order: 3;
  }

  .dp-clean-actions {
    display: none;
  }

  .dp-clean-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.22), transparent 34%),
      rgba(11, 18, 32, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
  }

  .dp-clean-menu-toggle:checked ~ .dp-clean-nav {
    display: flex;
  }

  .dp-clean-nav > a,
  .dp-clean-dropdown > summary {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 16px;
    color: rgba(226, 232, 240, 0.90) !important;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.98rem;
  }

  .dp-clean-dropdown {
    width: 100%;
  }

  .dp-clean-mega {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
    padding: 14px;
    border-radius: 20px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.045);
  }

  .dp-clean-dropdown[open] .dp-clean-mega {
    display: grid;
    transform: none;
  }

  .dp-clean-mega::before {
    display: none;
  }

  .dp-clean-mega-intro {
    padding: 20px;
  }

  .dp-clean-county-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dp-clean-nav::after {
    content: "+06 20 593 8541";
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #E0F2FE;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 6px;
  }

  .dp-clean-nav::before {
    content: "Ajánlatkérés";
    order: 99;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #FFFFFF;
    font-weight: 900;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.34);
    margin-top: 4px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .dp-clean-header {
    top: 46px;
  }
}

@media (max-width: 620px) {
  .dp-clean-header-shell {
    width: min(100% - 22px, 1240px);
    padding: 8px;
  }

  .dp-clean-logo-box {
    width: 104px;
    height: 44px;
    border-radius: 15px;
    padding: 6px 9px;
  }

  .dp-clean-county-grid {
    grid-template-columns: 1fr;
  }

  .dp-clean-mega-intro h3 {
    font-size: 1.35rem;
  }
}
/* ================================
   CLICKABLE MEGA INTRO CARD
================================ */

.dp-clean-mega-intro--link {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.dp-clean-mega-intro--link:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow:
    0 18px 46px rgba(37, 99, 235, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dp-clean-mega-intro--link span,
.dp-clean-mega-intro--link h3,
.dp-clean-mega-intro--link p {
  text-decoration: none !important;
}

.dp-clean-mega-intro-button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 20px;
  padding: 0 15px;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #2563EB, #38BDF8);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.dp-clean-mega-intro--link:hover .dp-clean-mega-intro-button {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.34);
}
/* ================================
   SERVICES MINI DROPDOWN
================================ */

.dp-clean-services-dropdown {
  position: relative;
}

.dp-clean-services-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 280px;
  transform: translateX(-50%) translateY(10px);
  padding: 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(11, 18, 32, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.24s ease;
}

.dp-clean-services-dropdown:hover .dp-clean-services-menu,
.dp-clean-services-dropdown[open] .dp-clean-services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dp-clean-services-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(11, 18, 32, 0.98);
  border-left: 1px solid rgba(148, 163, 184, 0.18);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.dp-clean-services-menu a {
  position: relative;
  min-height: 44px;
  display: flex !important;
  align-items: center;
  padding: 0 14px 0 38px;
  border-radius: 14px;
  color: rgba(226, 232, 240, 0.86) !important;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none !important;
  transition: 0.22s ease;
}

.dp-clean-services-menu a + a {
  margin-top: 7px;
}

.dp-clean-services-menu a::before {
  content: "";
  position: absolute;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--dp-accent);
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.10);
}

.dp-clean-services-menu a:hover {
  color: #FFFFFF !important;
  background: rgba(37, 99, 235, 0.20);
  border-color: rgba(56, 189, 248, 0.30);
  transform: translateY(-2px);
}

/* ================================
   SERVICES DROPDOWN MOBILE
================================ */

@media (max-width: 1020px) {
  .dp-clean-services-menu {
    position: static;
    width: 100%;
    display: none;
    margin-top: 8px;
    padding: 10px;
    border-radius: 18px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.045);
  }

  .dp-clean-services-dropdown[open] .dp-clean-services-menu {
    display: block;
    transform: none;
  }

  .dp-clean-services-menu::before {
    display: none;
  }

  .dp-clean-services-menu a {
    min-height: 46px;
    font-size: 0.94rem;
  }
}/* End custom CSS */