.elementor-87 .elementor-element.elementor-element-bfc36d9{--display:flex;--margin-top:-58px;--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-95aaf56 */.xenex-footer {
  --xf-bg: #182a72;      /* μπλε */
  --xf-accent: #e3062c;  /* κόκκινο */
  --xf-text: #ffffff;
  --xf-muted: #d6dff7;

  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 55%),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 55%),
    var(--xf-bg);
  color: var(--xf-text);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

/* wave / διαχωριστικό επάνω αν το θες */
.xenex-footer::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to right, rgba(255,255,255,0.18), transparent);
  opacity: 0.12;
  pointer-events: none;
}

.xf-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: flex-start;
}

.xf-col {
  position: relative;
}

.xf-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.xf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.xf-list li {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  color: var(--xf-muted);
}

.xf-list a {
  color: var(--xf-text);
  text-decoration: none;
  position: relative;
}

.xf-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--xf-accent);
  transition: width 0.25s ease;
}

.xf-list a:hover::after {
  width: 100%;
}

/* Newsletter */
.xf-newsletter .xf-text {
  margin: 0 0 1rem;
  color: var(--xf-muted);
  font-size: 0.95rem;
}

.xf-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.xf-input-wrap {
  display: flex;
  align-items: stretch;
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.xf-input-wrap:focus-within {
  box-shadow: 0 0 0 1px var(--xf-accent), 0 10px 25px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

.xf-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--xf-text);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  outline: none;
}

.xf-input-wrap input::placeholder {
  color: rgba(255,255,255,0.6);
}

.xf-input-wrap button {
  border: none;
  border-radius: 999px;
  padding: 0 1.2rem;
  background: linear-gradient(135deg, var(--xf-accent), #ff3b4f);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.xf-input-wrap button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.xf-input-wrap button:active {
  transform: translateY(0);
  box-shadow: none;
}

.xf-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

/* Bottom bar */
.xf-bottom {
  background: var(--xf-accent);
  padding: 0.85rem 0;
}

.xf-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #fff;
}

.xf-copy {
  opacity: 0.9;
}

.xf-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.xf-social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.xf-social-link:hover {
  background: #fff;
  color: var(--xf-accent);
  border-color: #fff;
  transform: translateY(-1px) scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .xf-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .xf-newsletter {
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  .xf-inner {
    padding: 2.5rem 1.25rem 2rem;
  }

  .xf-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .xf-social {
    margin-top: 0.25rem;
  }
}/* End custom CSS */