@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* mixins.scss */
/* Media Queries */
/*_variables.scss */
/* Body Text Styles */
/*_typography.scss*/
body {
  color: #191919 !important;
  font-size: 12px !important;
  font-family: "Century Gothic", sans-serif;
  font-weight: 300 !important;
  line-height: 1.6;
}

strong {
  font-weight: 700;
}

.main-content h1.title, .main-content .field-name-field-display-title .field-item {
  font-size: 25px;
  border-bottom: 1px solid #777;
  margin-bottom: 10px;
}

@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: normal;
  src: url("../assets/fonts/century-gothic/GOTHIC.TTF") format("truetype");
}
@font-face {
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: bold;
  src: url("../assets/fonts/century-gothic/GOTHICB.TTF") format("truetype");
}
@font-face {
  font-family: "Century Gothic";
  font-style: italic;
  font-weight: bold;
  src: url("../assets/fonts/century-gothic/GOTHICBI.TTF") format("truetype");
}
@font-face {
  font-family: "Century Gothic";
  font-style: italic;
  font-weight: normal;
  src: url("../assets/fonts/century-gothic/GOTHICI.TTF") format("truetype");
}
/*_mobileLayout.scss */
@media screen and (max-width: 991px) {
  .single-product-display-panel .panel-col-first {
    width: 100%;
  }
  .single-product-display-panel .panel-col-last {
    width: 100%;
  }
  .mask {
    display: none;
    -webkit-transition: all 200ms linear 0s;
    -moz-transition: all 200ms linear 0s;
    -o-transition: all 200ms linear 0s;
    transition: all 200ms linear 0s;
    background: #fff none repeat scroll 0 0;
    cursor: pointer;
    opacity: 0.85;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    overflow: hidden;
    z-index: 400;
  }
  .fixIt {
    position: fixed !important;
    top: 60px;
  }
}
.group:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 992px) {
  .mask {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .mask.showMe {
    opacity: 0.85;
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .mask.hideMe {
    opacity: 0;
    display: none;
  }
}

.no-padding {
  padding: 0;
}

::selection {
  background: #000;
  color: #ffffff;
}

::-moz-selection {
  background: #000;
  color: #ffffff;
}

/* ====== BASE ====== */
:root {
  --km-bg-dark: #020617;
  --km-bg-light: #f3f4f6;
  --km-surface: #ffffff;
  --km-text-main: #0f172a;
  --km-muted: #6b7280;
  --km-border: #e5e7eb;
  --km-accent: #2563eb;
  --km-radius: 18px;
  --km-shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.12);
}

body {
  background: var(--km-bg-light);
}

body {
  font-family: "Roboto", Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-thumb {
  background-color: #000;
  border: 3px solid #fff;
  border-radius: 20px;
}

input,
textarea {
  outline: none !important;
}

.noScroll {
  overflow: hidden;
}

.myInfo {
  position: fixed;
  top: 100px;
  left: 100px;
  background: #999;
  color: #ffffff;
  z-index: 1000;
  display: none;
}

a,
a:active,
a:hover,
a:link,
a:visited {
  color: black;
  outline: none !important;
  text-decoration: none !important;
}

a:hover {
  color: #636363;
}

.hidden-element {
  display: none;
}

.smallDash {
  content: "";
  width: 100px;
  height: 3px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  z-index: 10;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid black;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid black;
}

.arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid black;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .site-header {
    left: 0;
    right: 0;
    width: 100%;
  }
}
.site-header .ast-primary-header-bar {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .site-header .custom-logo-link img {
    width: 70px;
  }
}
.site-header.header-transparent .site-header-primary-section-right button.menu-toggle svg.ast-mobile-svg {
  fill: #fff;
}
.site-header.header-solid .site-header-primary-section-right button.menu-toggle svg.ast-mobile-svg {
  fill: var(--km-text-main);
}

.ast-mobile-popup-inner .ast-mobile-popup-header button {
  border: none;
  border-style: none;
}
.ast-mobile-popup-inner .ast-mobile-popup-content .ast-builder-menu nav.site-navigation ul li a {
  color: var(--km-text-main);
}
body.admin-bar .site-header {
  top: 32px !important;
}

/* Σελίδες εκτός αρχικής → πάντα λευκό */
body:not(.home) .site-header {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ast-theme-transparent-header #masthead {
  position: fixed;
  top: 0;
  z-index: 999;
}
.ast-theme-transparent-header #masthead.header-transparent {
  background: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}
.ast-theme-transparent-header #masthead.header-solid {
  background: #ffffff;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ast-primary-header-bar .site-primary-header-wrap {
  max-width: 100%;
}

/* Default - αρχικές σελίδες transparent */
body.home .site-header.header-transparent .main-header-menu > li > a,
body.home .site-header.header-transparent .main-header-bar .ast-header-button,
body.home .site-header.header-transparent .site-title,
body.home .site-header.header-transparent .ast-header-custom-item {
  color: #ffffff !important;
  fill: #ffffff !important;
  /* Αν το logo είναι SVG */
}
body.home .site-header.header-transparent .main-header-menu > li > a img,
body.home .site-header.header-transparent .main-header-bar .ast-header-button img,
body.home .site-header.header-transparent .site-title img,
body.home .site-header.header-transparent .ast-header-custom-item img {
  filter: brightness(1000%) invert(1);
}

/* Με scroll → header λευκό = dark palette */
body.home .site-header.header-solid {
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  /* λογότυπο φυσικό, χωρίς invert */
}
body.home .site-header.header-solid .main-header-menu > li > a,
body.home .site-header.header-solid .site-title,
body.home .site-header.header-solid .ast-header-custom-item,
body.home .site-header.header-solid .ast-header-button {
  color: var(--km-text-main) !important;
}
body.home .site-header.header-solid img {
  filter: none !important;
  display: block;
}

/* ΜΗ ΑΡΧΙΚΕΣ ΣΕΛΙΔΕΣ = ΠΑΝΤΑ ΣΚΟΥΡΟ ΜΕΝΟΥ */
body:not(.home) .site-header {
  background: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
body:not(.home) .site-header .main-header-menu > li > a,
body:not(.home) .site-header .ast-header-button,
body:not(.home) .site-header .site-title {
  color: var(--km-text-main) !important;
}
body:not(.home) .site-header img, body:not(.home) .site-header svg {
  filter: none !important;
}

/* HERO buttons */
.km-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  color: #dbdbdb;
  overflow: hidden;
  margin-bottom: 32px;
  background: radial-gradient(900px 450px at 50% 0, rgba(37, 99, 235, 0.4), transparent), linear-gradient(145deg, #020617 0%, #020617 45%, #111827 100%);
}
.km-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.km-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.km-hero__inner {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0 auto;
}
.km-hero__content {
  max-width: 520px;
  text-align: left;
}
.km-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.km-hero__title {
  color: #fff;
  margin: 0 0 18px;
  font-weight: 400;
  line-height: 1;
}
.km-hero__title span {
  display: inline-block;
  color: #ffffff;
}
.km-hero__sub {
  line-height: 1.6;
}
.km-hero__bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .km-hero__bottom-left {
    right: 0px;
    left: 0px;
    max-width: none;
    width: 100%;
    text-align: center;
    padding: 0 10px;
    font-size: 0px;
    height: 20px;
  }
  .km-hero__bottom-left:after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../assets/images/arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.km-hero__bottom-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  max-width: 360px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .km-hero__bottom-right {
    right: 0px;
    left: 0px;
    bottom: 50px;
    max-width: none;
    width: 100%;
    text-align: center;
    padding: 0 10px;
  }
}
.km-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.km-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.km-hero__btn--primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.6);
}
.km-hero__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.65);
}
.km-hero__btn--ghost {
  background: transparent;
  color: #dbdbdb;
  border-color: rgba(248, 250, 252, 0.7);
}
.km-hero__btn--ghost:hover {
  background: rgba(15, 23, 42, 0.3);
}
.km-hero__scroll {
  position: absolute;
  left: 32px;
  bottom: 24px;
  z-index: 1;
  font-size: 12px;
  color: rgba(241, 245, 249, 0.8);
}
.km-hero__scroll::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.8);
  position: relative;
}
.km-hero__scroll::before::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 4px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  transform: translateX(-50%);
  animation: km-scroll-dot 1.4s infinite;
}
@keyframes km-scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, 6px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}
@media (max-width: 768px) {
  .km-hero__inner {
    justify-content: flex-start;
    padding: 80px 20px 40px;
  }
  .km-hero__content {
    max-width: 100%;
  }
  .km-hero__title {
    font-size: clamp(28px, 8vw, 38px);
  }
  .km-hero__scroll {
    left: 20px;
    bottom: 16px;
    font-size: 11px;
  }
}

.widget_km_title_text_widget {
  padding: 200px 0;
  min-height: 100vh;
}
.widget_km_title_text_widget .km-title-text-widget {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .widget_km_title_text_widget .km-title-text-widget {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    padding: 0px 20px;
  }
}
.widget_km_title_text_widget .km-title-text-widget h2 {
  text-transform: uppercase;
  font-size: 15px;
  color: #999;
  margin-bottom: 10px;
}
.widget_km_title_text_widget .km-title-text-widget p {
  font-weight: 400;
}

/* Κεντρικό πλάτος για όλα τα sections */
main.wp-block-group {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

/* ====== SECTIONS ====== */
.km-section {
  padding: 80px 20px;
}
.km-section h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--km-text-main);
}

.km-section-alt {
  padding: 80px 20px;
  background-color: #070614;
}
.km-section-alt h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 32px;
  color: var(--km-text-main);
  color: #fff;
}

/* ====== HERO ====== */
/* ====== HIGHLIGHTS ====== */
.km-highlights {
  margin-top: 10px;
  margin-bottom: 18px;
}
.km-highlights .wp-block-columns {
  gap: 12px;
}
.km-highlights .km-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  color: #111827;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}
.km-highlights .km-chip span {
  font-weight: 700;
  color: var(--km-accent);
}

/* ====== SERVICES - CARDS ====== */
.km-cards {
  gap: 24px;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .km-cards {
    display: flex;
    flex-wrap: wrap !important;
    align-items: center;
    justify-content: center;
  }
}

.km-card {
  background: var(--km-bg-light);
  border: 1px solid var(--km-border);
  padding: 22px 22px 20px;
  position: relative;
  padding-top: 17%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .km-card {
    width: 45%;
    margin: 1%;
    flex-basis: auto !important;
  }
}
@media screen and (max-width: 991px) {
  .km-card {
    padding: 22px 22px 20px;
  }
}
.km-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .km-card h3 {
    position: static;
    margin-bottom: 20px;
  }
}
.km-card p {
  margin: 0;
  line-height: 1.3;
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .km-card p {
    position: static;
  }
}
/* DUAL COLUMN ON LARGE SCREENS */
@media (min-width: 1024px) {
  #services-business .km-cards > .wp-block-column,
  #services-individuals .km-cards > .wp-block-column {
    flex-basis: 50% !important;
  }
}
/* ====== ABOUT ====== */
#about .wp-block-columns {
  gap: 32px;
}

.km-list-checks {
  list-style: none;
  padding-left: 0;
  margin-top: 14px;
}
.km-list-checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 6px;
  color: var(--km-text-main);
}
.km-list-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--km-accent);
  font-weight: 700;
}

.km-about-box {
  border-radius: 18px;
  border: 1px solid var(--km-border);
  padding: 22px 22px 20px;
  background: #ffffff;
  box-shadow: var(--km-shadow-soft);
}

/* ====== CONTACT ====== */
#contact .wp-block-columns {
  gap: 32px;
}
#contact p {
  font-size: 14px;
  color: var(--km-text-main);
}
#contact .info-text {
  margin-bottom: 20px;
}
#contact .info-text p, #contact .info-text a {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--km-muted);
}
#contact .info-text p strong, #contact .info-text a strong {
  font-weight: 400;
}
#contact iframe {
  width: 100%;
}
#contact .wpcf7-form input.wpcf7-text {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--km-muted);
  font-size: 26px;
  padding: 0px;
}
#contact .wpcf7-form textarea.wpcf7-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--km-muted);
  font-size: 19px;
  padding: 0px;
  resize: none;
  height: 160px;
}
#contact .wpcf7-form .grippie {
  display: none;
}

.km-link-cta {
  font-weight: 600;
  text-decoration: none;
  color: var(--km-accent);
}
.km-link-cta:hover {
  text-decoration: underline;
}

footer.site-footer h2.widget-title {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #dbdbdb !important;
  font-weight: bold;
}
footer.site-footer a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .site-below-footer-wrap .site-footer-section-1 p {
    text-align: center !important;
  }
}
@media screen and (max-width: 767px) {
  .site-below-footer-wrap .site-footer-section-2 p {
    text-align: center !important;
  }
}

.site-primary-footer-wrap[data-section=section-primary-footer-builder] .ast-builder-grid-row,
.site-below-footer-wrap[data-section=section-below-footer-builder] .ast-builder-grid-row {
  max-width: 100%;
  padding: 0 20px;
}

.km-logo-text-widget__logo {
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .km-logo-text-widget__logo {
    text-align: center;
  }
}
.km-logo-text-widget__image {
  max-height: 55px;
  width: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .km-logo-text-widget__image {
    margin: 0 auto;
  }
}
.km-logo-text-widget__text_title {
  font-size: 1.3em;
  margin-top: 6px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .km-logo-text-widget__text_title {
    text-align: center;
  }
}
.km-logo-text-widget__text {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .km-logo-text-widget__text {
    text-align: center;
  }
}

.km-social-links-widget {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}
.km-social-links-widget__item {
  margin-bottom: 4px;
}
.km-social-links-widget__item a {
  font-size: 14px;
  text-decoration: none;
  color: #2563eb;
}
.km-social-links-widget__item a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
